@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container { 
	width: 100%;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	width:100%;
	height: 150px;
	 background: url(/images/tableback1.gif);
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#right-head {
	float: right; /* since this element is floated, a width must be given */
	width: 40%; 
}

#left-head { 
	float:left;
	width:60%;
}

.topnav { 
margin:0; 
padding:0; 
background:#660000; 
float:left; 
width:100%; 
border:1px solid #000000; 
border-width:1px 0;
list-style-type:none 
}
.topnav ul {
	width:100%;
	margin:0;
	padding:0;
	list-style:none;
	background:#660000;
    }
#topnav li {
font-size:14px;
	display:inline;
	margin:0;
	padding:0;
	} 
.topnav a { 
color:#FFF; 
float:left; 
padding:5px 5px 4px 5px; 
width:auto; 
border-right:2px solid #000000;
text-decoration:none; 
font:bold 1em/1em Arial, Helvetica, sans-serif; 
text-transform:uppercase;  
margin:0;
}
.topnav a:hover { 
color:#fff; 
background:#333333; 
text-decoration: none;
} 
.topnav a:visited { 
color:#fff; 
} 
.topnav a:active { 
color:#fff; 
}

#nav {  
background:#660000; 
float:left; 
width:100%; 
list-style-type:none; 
clear:both;
}

#bodycontainer{
padding-left:50px;
padding-right:50px;
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqRtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 24%; 
	background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding-top: 15px 0; /* top and bottom padding create visual space within this div  */
	text-align:center;
}
#sidebar1 h3, .twoColLiqRtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#blogright {
	float: right; /* since this element is floated, a width must be given */
	width: 24%; 
	background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding-top: 15px 0; /* top and bottom padding create visual space within this div  */
}
#blogright ul, #blogright ul li ul, #blogright ul li ul li, #blogright ul li ul li ul, #blogright ul li ul li ul li {
list-style : none;
padding-left : 0;
}
#blogright ul li ul li {
width : 90%;
padding-left : 10px;
border-left : 5px solid #eee;
font-size : 11px;
line-height : 1.5;
}
#blogright ul li ul li:hover {
border-left : 5px solid #999;
}
#blogright ul li ul li:hover a {
color : #666;
}
#blogright a {
border : 0;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent { 
	float:left;
	width:70%;
	/*margin: 0 26% 0 10px; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	padding:15px;
} 

#footer { 
	background:#DDDDDD; 
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#footer { 
 width: auto;
 clear: both;
 color: #000;
 border: 0px solid #000;
 padding: 5px;
 font-family: helvetica, arial, sans-serif, georgia;
 font-size:10px;
 font-weight: bold;
}

#footer a,
#footer a:active,
#footer a:visited { 
color: #663333; 
font-weight: bold;  
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

h3.sidebar-title {
font-variant:small-caps;
font-size: 1.3em;
font-weight:bolder;
border-bottom:double #FF6699;
}

/*******************************************************************************

 SPRY MENU NAVIGATION LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 100%;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 250px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Drop Down Menu */
ul.MenuBarHorizontal ul li
{
	width: 250px;
	background-color: #CCC;
	padding: 5px 10px;
	color: #FFFFFF;
	text-transform:none;
}

ul.MenuBarHorizontal ul li a
{
	background-color: #CCC;
	display: block;
	cursor: pointer;
	padding: 2px 2px;
	color: #000;
	text-decoration: none;
	font-weight:bold;
	font-style:normal;
	text-transform:none;
	font-size:.8em;
	/*border-right: 1px solid #CCCCCC;*/
}

ul.MenuBarHorizontal ul li a:hover, ul.MenuBarHorizontal ul li a:focus
{
	background-color: #FF0099;
	color: #FFF;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
	background:#FFFFFF;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background:#660000;
	padding: 5px 10px;
	color: #FFF;
	text-decoration: none;
	font-weight:bold;
	font:bold 1em/1em Arial, Helvetica, sans-serif; 
	text-transform:uppercase;
	/*border-right: 1px solid #CCCCCC;*/
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #660000;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #660000;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-position: 100% 50%;
	background:#660000;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-position: 100% 50%;
	background:#660000;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-position: 100% 50%;
	background:#660000;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-position: 100% 50%;
	background:#660000;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
/*******************************************************************************
				FOOTER AREA
 *******************************************************************************/
.footer-container {text-align:left; border-top:2px #FFFFFF solid; width:100%;  }
.footer-container {background: #937d6c; }
.footer-container { text-align: right; }
.footer-container { float: right; }

.footer1 { background:#937d6c; width: 100%; }
.footer1 a {}
.footer1 a:hover { text-decoration:none; }
.footer1 ul,
.footer1 ul.links { }
.footer1 ul.links li, .footer1 ul li { display:block; vertical-align:top; margin: 0px; line-height: 14px; }
.footer1 .footer-links-bottom { border-top:1px #afafaf solid; clear: both; padding:5px 0 20px; text-align: left; font-size: 10px; color: #cacaca; line-height:16px; }
.footer-links-bottom { float:left; width:98%; }

.footer-links { padding:5px 0; width:80%;  margin-left: auto;
 margin-right: auto;}
.footer-links ul { float: left; color: #fff; line-height:10px; padding:0 30px; }
.footer-links ul li { text-align: left; }
li.heading { 
text-transform: uppercase; 
font-size: 14px; 
border-bottom:dotted #FFFFFF 2px; 
padding-bottom:10px; 
text-align:center; font-weight:bolder;
}
.footer-links ul li a { color: #b4b4b4; text-decoration: none; font-size: 11px; }
.footer-links ul li a:hover { color: #990000; }

a {
	font-family: helvetica, arial, sans-serif, georgia;
	color: #660000;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #660000;
	text-decoration: none;
}
a:hover {
	color:#D7C3AA;
	font-weight: bold;
	text-decoration: overline underline;
}
h1,h2,h3,h4,h5,h6 {
	font-family: helvetica, arial, sans-serif, georgia;
	font-weight: bold;
}
h1 {
	font-size: xx-large;
	color: #000000;
}