﻿/* 
COLORS:
	Banner - Dk red: #865049; 
	Content - beige: bkgd: #e8dcb8; 
	SideMenu - medium: bkgd: #aeaf8c;

Don't use general declarations. All styles are specific to the banner, navigation, or content panels.

#SideMenu 
	- Applies to content in the dynamic menu control.

#Content 
	- Applies to main content section. This is located in a separate style sheet, ContentStyle.css. This allows the styles to be visible when loaded in the FileEditor.aspx in the Admin area.
	- Can't add ID to body tag because doing so overrides the background of the entire form.	

#Banner 
	- Applies to the site logo/header & main menu at the top of the page.

!!IMPORTANT! Don't add TD background color! This will override background image in menu control

When adding stylesheet to page, use the full path on localhost. This allows the path to work wherever it is used.
*/

*	{font-family: Verdana,Tahoma, Arial, sans;
	font-size:10pt;
}
BODY {
	margin: 0px;
   padding: 0px;
   height: 100%;
   background-color: #e8dcb8;
}
.ErrorMsg { /* Display user feedback in red italics */
	font-style: italic;
	color: Red;
}
#Footer td {
	vertical-align: bottom;
}
#Footer p {
	font-size: 8pt;
}
#Footer a:link {
	color: #865049;
	text-decoration: none;
	font-size: 8pt;
}
#Footer a:visited {
	color: #865049;
	text-decoration: none;
	font-size: 8pt;
}
#SideMenu {
	background: url(../SideMenu_Control/Images/Table_BG.jpg) no-repeat #aeaf8c;
	padding: 0px;
	margin: 0px;
	border: 0px;
	width:150px;
	height: 100%;
}
.IndentAll { /* match paragraph indent for line breaks */
	padding-left: 15pt;
}
/* Content style must be added to admin and public sections for accurate presentation of html files in file editor. The class defined here only applies to the content container. */
.Content {
	background-color: #e8dcb8;
	font-family: Verdana,Tahoma,Arial,Helvetica, Sans-Serif;
   /* Make sure there is no margin, since this will pick up page background color */
   margin-left: 0px;
   margin-right: 0px;
   margin-top: 0px;
   margin-bottom: 0px;
}
/* Main navigation banner - MainMenu.ascx */
#Banner {
	background-color: #865049;
	color: White;
	font-family: Tahoma,Verdana,Arial,Helvetica,sans-serif;
	font-size: 8pt;
	margin: 0px;
	padding: 0px;
	border: 0px;
	height: 60px;
}
#Banner TABLE {
	/* background-image: url(~/App_Themes/Images/right-banner.gif) position: absolute-right repeat: no-repeat; */
	color: White;
	border: 0px;
	margin: 0px;
	padding: 0px;
	height: 60px;
}
#Banner TD {
	background-color: #865049;
	color: White;
	border: 0px;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;	
	vertical-align: middle;
	height: 60px;
}
#Banner TD.Item {
	width: 75px;
	padding-left: 3px;
	padding-right: 3px;
}
#Banner TD.Tiny {
	width: 21px;
}
#Banner a {
	font-family: Verdana,Arial,Helvetica,Sans-Serif;
	font-size: 8pt;
	color: White;
	font-weight: bold;
	text-decoration: none;
	padding-right: 5px;
	padding-left: 5px;
}
#Banner a:link {
	color: White;
	font-weight: bold;
}
#Banner a:hover {
	color: White;
	font-weight: bold;
}
#Banner a:visited {
	color: White;
	font-weight: bold;
}
#Banner a:active {
	color: White;
	font-weight: bold;
}
.LabelCaption {
	font-family: 'Times NewZurica Roman', Serif;
	font-style: italic;
	font-size: 11pt;
}

/* Dynamically-generated server-side links - Newsletter/Default.aspx */
.DynamicLk a:link  {
	color: #8b524a;
	font-weight: normal;
}
.DynamicLk a:visited  {
	color: #8b524a;
	font-weight: normal;
}
.DynamicLk a:active  {
	color: #8b524a;
	font-weight: normal;
}
.DynamicLk a:hover  {
	color: #8b524a;
	font-weight: normal;
}
/* BORDERS */
.DashedBorder {border-bottom: #8b524a 1px dashed;	/* ViewProject.ascx */
}	
.DkBordered { /* Add a border using themes dark color. Used in Project Gallery */
	border: #8b524a 3px solid;
}

/* Webdings Arrow symbols */
.WebSymbols {
	color: #8b524a;
	font-family: Webdings;
	font-weight: normal;
}


