/****************************************************
Created By: Charley Ruggiero
Date Created: 04/08
Content Mgmt CSS File 
****************************************************/

/***************************************************/
/**************** GLOBAL STYLES ********************/
/***************************************************/
/* For messages where no results are found */
#noneFound {font-weight:bold;font-style:italic;font-size:16px; padding:10px;}
/* For messages where no results are found on an inline list */
.noneFoundInline {font-style:italic;font-size:14px; margin:10px;}
/* Wraps all full details pages */
#detailWrapper {}
/* Wraps all full list pages */
#listWrapper {}
/* Div, wraps a tag list */
.tagList {
	font-weight:bold;
	margin:3px;
}

/***************************************************/
/******************** CMS LISTS ********************/
/***************************************************/
/* DIV, Displays List Type */
#pageListHeader {
	font-size:24px;
	margin:10px;
	text-align:center;
}
/* DIV, If relevant, date range of the list */
#pageListDates {
	font-size:18px;
	margin:10px;
	text-align:center;	
}
/* UL, list of items */
#pageList {
	list-style:none;
}
/* LI, one item */
.pageListItem {
	padding:5px;
}
/* LI, one item, same as above except the two will alternate */
.pageListItemAlternate {
	padding:5px;
}
/* DIV, Title of item with link */
.pageListItemTitle {
	font-weight:bold;
}
/* DIV, Date of item */
.pageListItemDate {
	font-style:italic;	
}
/* DIV, text-only blurb of description */
.pageListItemDescription{
	font-size:12px;
}
/* DIV, houses calendar Container */
.pageListCalendarContainer{}

/***************************************************/
/*************** CMS LISTS INLINE ******************/
/***************************************************/
/* DIV, Displays List Type */
.pageListInlineHeader {
	font-size:16px;
	display:none;
}
/* UL, list of items */
.pageListInline {
	list-style:none;
	margin:0;
	padding:10px;	
}
/* LI, one item */
.pageListInlineItem {
	padding:3px 3px 10px 3px;
}
/* LI, one item, same as above except the two will alternate */
.pageListInlineItemAlternate {
	padding:3px 3px 10px 3px;
}
/* DIV, Title of item with link */
.pageListInlineItemTitle {
	font-size:11px;
}
.pageListInlineItemTitle a {
	font-weight:bold;
	color:#083d74;
	text-decoration:none;
}
.pageListInlineItemTitle a:hover, .pageListInlineItemTitle a:active, .pageListInlineItemTitle a:focus{
	color:#5783AF;
	text-decoration:underline;
}
/* DIV, Date of item */
.pageListInlineItemDate {
	font-style:italic;	
}
/* DIV, text-only blurb of description */
.pageListInlineItemDescription{
	font-size:11px;
}
/* DIV, view all link if you don't want link to show add display:none;*/
.pageListInLineViewAll {
	padding:3px;
	text-align:right;
}
/***************************************************/
/******************* CMS DETAILS *******************/
/***************************************************/
/* DIV, Displays Item Title */
#pageDetailsTitle {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	color:#083d74;
	margin:10px;
}
/* DIV, link to a printable version */
#pageDetailsPrintableLink {
	padding:5px;
	float:right;
}
/* DIV, If relevant, date or date range of the item */
#pageDetailsDate {
	font-size:14px;
	margin:10px;
}
/* DIV, houses calendar Container */
.pageDetailsCalendarContainer{
	
}
/* DIV, image */
#pageDetailsImage {
	margin:10px;
	float:left;	
}
/* DIV, HTML description */
#pageDetailsDescription {
	margin: 10px;	
}
/* UL, list of links */
#pageDetailsLinkList {
	margin:5px 5px 0 5px;
	padding:0 0 0 50px;
	clear:left;
}
/* UL, list of files */
#pageDetailsFileList {
	margin:0 5px 5px 5px;
	padding:0 0 0 50px;
}

/***************************************************/
/************* CMS EVENTS CALENDAR *****************/
/***************************************************/
.eventStar {
}
.CalendarContainer {
	margin:0 auto;
	width:230px;
}
.CalendarContainerLarge {
	margin:0 auto;
	width:500px;
	font-size:14px;
}
.CalendarSmall {
	line-height:13px;
	font-size:9px;
}
.CalendarLarge {
	line-height:30px;
}
.CalendarDayNorm { 
	background-color:#cccccc; 
	color:#000066; 
	width:16px;    
} 
.CalendarDay { 
	background-color:#cccccc; 
	color:#000066;
	border-color: #FFFFFF; 
	width:16px;  
} 
.CalendarDayHL {
	background-color:red; 
	color:white;
	width:16px;  
	border-color: #FF0000; 
	cursor:pointer;  
}
.CalendarDayHLToday {
	background-color:red; 
	color:white;
	width:16px;  
	border-width: 0px; 
	border-style: solid; 
	border-color: #000066; 
	cursor:pointer;
}
.CalendarThisWeek { 
	background-color:#cccccc; 
	color:#000066; 
	width:16px;    
}
.CalendarDayToday { 
	background-color:#FF0000; 
	color:#000066; 	
	border-width: 0px; 
	border-style: solid; 
	border-color: #000066; 
	width:16px;   
} 
.CalendarWithEvents { 
	background-color:#FF7174; 
	color:#000066; 	
	border-width: 0px; 
	border-style: solid; 
	border-color: #000066; 
	width:16px;   
} 
.CalendarOtherMonth { 
	background-color:#eeeeee; 
	color:#cccccc;  
	width:16px;  
} 
.CalendarMonthTitle {
	background-color:#555; 
	font-weight:bold;
	padding:3px; 
	color:#ccc;
	text-align:center;
	cursor:pointer;
}
.CalendarDayTitle { 
	background-color:#333; 
	color:#ccc;
	text-align:center;
}

/***************************************************/
/******************** FILE LISTS ********************/
/***************************************************/
/* DIV, Displays List Type */
#fileListHeader {
	font-size:24px;
	margin:10px;
	text-align:center;
}
/* UL, list of items */
#fileList {
	list-style:none;
}
/* LI, one item */
.fileListItem {
	padding:5px;
}
/* LI, one item, same as above except the two will alternate */
.fileListItemAlternate {
	padding:5px;
}

/***************************************************/
/*************** FILE LISTS INLINE *****************/
/***************************************************/
/* DIV, Displays List Type */
#fileListInlineHeader {
color:#0C3F76; font-family:Georgia, "Times New Roman", Times, serif; font-size:22px; font-weight:bold; padding-bottom:10px;}
/* UL, list of items */
#fileListInline {
	list-style:disc;
	margin:0;
	padding:0 0 0 5px;	
}
/* LI, one item */
.fileListInlineItem {
	list-style:none;
	width:220px;
	margin:0;
	padding:0 0 10px 0;
}
/* LI, one item, same as above except the two will alternate */
.fileListInlineItemAlternate {
	list-style:none;
	width:220px;
	margin:0;
	padding:0 0 10px 0;
}

/***************************************************/
/******************** HR GENERAL *******************/
/***************************************************/

/* TABLE, blurb of job features */
.hrTable {
	margin:0 10px 20px 10px; 
	border:1px solid #999999; 
	background:#CCCCCC
}
.hrTable th {
	text-align:left;
}
.hrTable td {
	border:dotted #999999; 
	border-width:0 1px 0 0;
}

/***************************************************/
/********************* HR LISTS ********************/
/***************************************************/
/* DIV, Displays List Type */
#hrListHeader {color:#0C3F76; font-family:Georgia, "Times New Roman", Times, serif; font-size:22px; font-weight:bold; padding-bottom:10px;}
/* UL, list of items */
#hrList {
	list-style:none;
}
/* LI, one item */
.hrListItem {
	padding:5px;
}
/* LI, one item, same as above except the two will alternate */
.hrListItemAlternate {
	padding:5px;
}
/* DIV, Title of item with link */
.hrListItemTitle a {color:#0C3F76; font-family:Georgia, "Times New Roman", Times, serif; font-size:13px; font-weight:bold; padding-bottom:10px;}

/* DIV, text-only blurb of description */
.hrListItemDescription{
	font-size:12px;
}

/***************************************************/
/********************* HR DETAILS *******************/
/***************************************************/
/* DIV, displays item title */
#hrDetailsTitle {color:#0C3F76; font-family:Georgia, "Times New Roman", Times, serif; font-size:22px; font-weight:bold; padding-bottom:10px;}

/* DIV, header of a section */
.hrDetailsSubTitle {color:#666; font-family:Arial, Helvetica, sans-serif; font-size:14px; font-weight:bold; padding:0 0 10px 5px;}
/* DIV, section content */
.hrDetailsContent {margin-left:10px;}
/* DIV, bottom links */
#hrDetailsLinks {
	font-size:18px;
	text-align:center;
}

/***************************************************/
/******************* HR APPLICATION ****************/
/***************************************************/
/* DIV, displays item title */
#hrAppTitle {
	font-size:24px;
	margin:10px;
	text-align:center;
}
/* TABLE, contains app form */
#hrAppTable {
	margin:0 auto;
}
/* DIV, contains submit button */
#hrAppSubmit {
	padding:5px;
	text-align:center;
}
/* TD, input label */
.hrAppLabel {
	font-weight:bold;
	text-align:right;
	width:200px;
}
/* TD, contains input */
.hrAppInput {
	width:400px;
	text-align:left;
}

/***************************************************/
/************ NEWSLETTER SMALL FORM ****************/
/***************************************************/
/* FORM, contains small signup */
#newsletterSmallForm {
	margin:0;
	padding:0;
}
/* INPUT, text input */
#newsletterSmallInput {}
/* SUBMIT, button */
#newsletterSmallSubmit {}

/***************************************************/
/************** NEWSLETTER LARGE FORM **************/
/***************************************************/
/* DIV, displays item title */
#newsletterLargeTitle {
	font-size:24px;
	margin:10px;
	text-align:center;
}
/* TABLE, contains form */
#newsletterLargeTable {
	margin:0 auto;
}
/* DIV, contains submit button */
#newsletterLargeSubmit {
	padding:5px;
	text-align:center;
}
/* TD, input label */
.newsletterLargeLabel {
	font-weight:bold;
	text-align:right;
	width:200px;
}
/* TD, contains input */
.newsletterLargeInput {
	width:400px;
	text-align:left;
}

/***************************************************/
/********************** TICKER  ********************/
/***************************************************/
/* DIV, wraps ticker */
#tickerWrapper {}
/* DIV, contains XML that can be referenced by javascript */
#tickerXML {
	visibility:hidden;
}
/* DIV, ticker title */
#tickerHeader {}
/* SPAN, ticker text */
#tickerText {
	font-size:18px;
}

/***************************************************/
/****************** PERMA-PAGES ********************/
/***************************************************/
/* DIV, wraps image */
.permaPageImage{
margin-top:15px;
}
/* DIV, wraps description */
.permaPageDescription{}
.permaPageDescription p {padding:0 0 0 10px; margin:10px 0 0 0;}
/* UL, wraps link list */
.permaPageLinkList{}
/* UL, wraps file list */
.permaPageFileList{}

/***************************************************/
/************* PORTFOLIO SIDEBAR *******************/
/***************************************************/
/* DIV, wraps sidebar */
#portfolioSidebarWrapper {
	position:absolute;
	margin:0 0 0 670px;
	padding:0;
	float:left;
}
#portfolioSidebarWrapper ul{
	margin:0;
}
#portfolioSidebarWrapper ul li{
	list-style:none;
	margin:0;
}
#portfolioSidebarWrapper a{
	font-family:Verdana, Arial, Helvetica,sans-serif;
	color:#666;
	font-size:11px;
	font-weight:bold;
	padding-bottom:10px;
	text-align:right;
}
/* UL, for main categories */
.portfolioSidebarListMainCat {
	list-style:none;
	text-align:right;
	margin:0;
}
/* LI, main cat title*/
.portfolioSidebarMainCat{
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#0C3F76;
	font-size:13px;
	font-weight:bold;
	text-align:right;
	padding-bottom:10px;
	margin:0;
}
/* UL, for sub categories */
.portfolioSidebarListCat{
	font-size:16px;
	list-style:none;
	margin:5px 0 5px 0;
	padding:0;
}
.portfolioSidebarListCat ul li a{
	text-align:right;
	font-size:24px;
}
/* LI, sub cat title */
.portfolioSidebarCatAlternate{
	font-size:13px;
	font-weight:bold;
	padding:0 0 10px 0;
	text-align:right;
}
/* LI, sub cat title */
.portfolioSidebarCat{
	font-size:13px;
	font-weight:bold;
	padding:0 0 10px 0;
	text-align:right;
}
/*********************************************

******/
/********* PORTFOLIO FEATURED LIST 

*****************/
/*********************************************

******/
/* Div, wraps item small version */
.portfolioFeaturedInlineWrapper{
	margin:0 0 20px 2px;
	padding:7px;
	background-color:#f8f3e5;
	border:1px solid #E7E6E2;
}
/* Div, wraps title text */
.portfolioFeaturedInlineTitle {
	margin-bottom:5px;
}
.portfolioFeaturedInlineTitle a {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:11px;
	font-weight:bold;
	text-decoration:none;
	color:#444;
}
.portfolioFeaturedInlineTitle a:hover {
	text-decoration:none;
	color:#888;
}
/* Div, wraps image */
.portfolioFeaturedInlineImg {
	margin:2px 0 0 2px;
	padding:0;
	float:right;
}
/* Div, wraps descrition */
.portfolioFeaturedInlineDescription {
	padding:0;
}
/***************************************************/

/************* PORTFOLIO DETAIL ********************/

/***************************************************/

#portfolioHomeTitle {	font-family:Georgia, "Times New Roman", Times, serif;
	color:#0C3F76;
	font-size:22px;
	font-weight:bold;
	text-align:left;
	padding-bottom:10px;
	margin:0;
}


/* DIV, wraps sidebar */

#portfolioBreadcrumbsWrapper {
	margin:5px;
	padding:0;
	font-size:12px;
}
/* DIV, wraps sidebar */
#portfolioDetailWrapper {
	margin:10px;
	padding:0;
	float:left;
	width:600px;
}
/* Div, wraps item small version */
.portfolioItemSmallWrapper {
	margin:10px;
}
/* Div, wraps title text */
.portfolioItemSmallTitle {
	font-size:16px; 
	font-weight:bold; 
	padding:3px;
	margin:15px 0 5px 0; 
	width:100%; 
	background-color:#EFEBDF;
}
/* Div, wraps image */
.portfolioItemSmallImg {
	margin:10px;
	padding:0;
	float:left;
	border:1px;
	border-color:#D3D0C9;
	border-style:solid;
}
.portfolioItemSmallImg a {
}
/* Div, wraps descrition */
.portfolioItemSmallDescription {
	margin:10px 10px 0 10px;
	font-size:12px;
	float:left;
	width:300px;
}
/* Div, wraps description text */
#portfolioItemTitle {
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#0C3F76;
	font-size:22px;
	font-weight:bold;
	margin:10px 0 10px 0;
}
/* Div, wraps link text */
#portfolioItemLink {
	margin:5px;
}
/* Div, wraps description text */
#portfolioItemDescription {
	padding-top:5px;
}
/* Div, photo gallery */
#portfolioGalleryWrapper {
}
/* Div, wraps main image */
#portfolioMainGalleryWrapper {
}
/* Div, a container for all thumbnails */
#portfolioThumbnailGalleryWrapper {
}
/* Div, each thumbnail */
.portfolioThumbnailWrapper {
float:left;
margin:15px 20px 0px 0px;
cursor:pointer;
height:90px;
}
/* Div, clears floating if needed */
#portfolioGalleryClear {
clear:left;
}
/* Div, wraps description text */
#portfolioSubCatTitle {
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#0C3F76;
	font-size:22px;
	font-weight:bold;
	margin:10px 0 10px 0;
}
/* Div, wraps link text */
#portfolioSubCatImg {
	margin:5px;
	float:left;
	border-left:1px;
	border-right :2px;
	border-bottom:2px;
	border-top:1px;
	border-color:#333333;
	border-style:solid;
}
/* Div, wraps description text */
#portfolioSubCatDescription {
}
/* Div, clears floating if needed */
#portfolioSubCatClear {
	clear:left;
}

/***************************************************/
/************* MEMBER DIRECTORY ********************/
/***************************************************/
/* DIV, wraps breadcrumbs */
#memberDirectoryBreadcrumbsWrapper {
	margin:5px;
	padding:0;
	font-size:12px;
}
/* Div, wraps home title */
#memberDirectoryHomeTitle {
	font-size:24px;
	font-weight:bold;
	margin:5px;
}
/* Div, wraps cat title */
#memberDirectoryCatTitle {
	font-size:24px;
	font-weight:bold;
	margin:5px;
}
/* Div, wraps item title */
#memberDirectoryItemTitle {
	font-size:24px;
	font-weight:bold;
	margin:5px;
}
/* Form, for search form on home */
#memberDirectorySearchForm {

}
/* Input, for search form on home */
#memberDirectorySearchInput {

}
/* Submit, for search form on home */
#memberDirectorySearchSubmit {

}
.memberDirectoryCatList {

}
.memberDirectoryCatListColumn {
	float:left;
	margin:5px;
}
.memberDirectoryCatListItem {
	margin-bottom:3px;
}
/* UL, list of members for a category/tag/search */
#memberDirectoryItemList {

}
.memberDirectoryItemLabel {
	font-weight:bold;
	float:left;
	width:75px;
	margin:3px;
}
.memberDirectoryItemData {
	float:left;
	margin:3px;
}
.memberDirectoryItemClear {
	clear:both;
}