@charset "UTF-8";
/* CSS Document */


body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	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;
}
.oneColFixCtr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
		padding-top:26px;

}
.oneColFixCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.twoColFixRtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	position:relative;
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	padding-top:26px;
} 
.twoColFixRtHdr #header { 
	background: #fff;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixRtHdr #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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	 /* the background color will be displayed for the length of the content in the column, but no further */
}
.twoColFixRtHdr #mainContent { 
	margin: 0 276px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixRtHdr #mainContent h1 { 
	color:#b0001;
}

.twoColFixRtHdr #footer { 
	padding: 18px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixRtHdr #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 */
}
.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 */
	float: left;
	margin-right: 16px;
}
.fltlftsm { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 5px;
}
.porthole { /* this class can be used to float an element left in your page */
	float: none;
	margin-top: -15px;
}
.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;
}
.redhead  { width:770px; margin-left:0px; color: #b00018; font-size: 1.2em; font-family: Verdana, tahoma, helvetica, arial, sans-serif; font-weight: 700; font-style: normal; }
.foot  { color: #666; font-size: 0.7em; font-family: Verdana, tahoma, helvetica, arial, sans-serif; text-align: center; vertical-align: middle; }
.title {
	color: #333333;
	line-height:1em;
	font-size: 1em;
	font-weight:700;
	margin-top: 0px;
}
a {color: #666; }

#corner {
width:100px;
height:100px;
color:#666666;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
padding:6px;
margin:10px;
float:left;
border-left: 1px solid #666;
border-top: 1px solid #666;
}

#portfolio {
width:160px;
height:160px;
color:#666666;
position:relative;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
padding:6px;
margin:10px;
float:left;
border-left: 1px solid #666;
border-top: 1px solid #666;
}

#tall {
width:160px;
height:320px;
color:#666666;
position:relative;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
padding:6px;
margin:10px;
float:left;
border-left: 1px solid #666;
border-top: 1px solid #666;
}
#empty {
width:160px;
height:160px;
color:#ffffff;
position:relative;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
padding:6px;
margin:10px;
float:left;
border-left: 1px solid #fff;
border-top: 1px solid #fff;
}

#doublewide {
width:234px;
color:#666666;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
padding:6px;
margin:10px;
float:left;
border-left: 1px solid #666;
border-top: 1px solid #666;
}
#row {width:780px; background-color:#CC00CC; height:auto; margin-top:10px;}
#row2 {width:780px; background-color:#FF9900; height:auto; margin-top:10px;}

#Menu {
font-family: Arial, sans-serif; font-size:.8em; border-top: 1px solid #666; border-bottom: 1px solid #666; padding-top:6px; padding-top:6px;
}

#Menu ul {
text-align: center; /* We are using text-align: center on ul to horizontally align our menu to the page. If you want the menu aligned left or right just change text-align to either left or right */
margin-left:-26px;
margin-top:3px;
margin-bottom:5px; /* Just some margin to align the blue border below the menu */
padding-bottom:5px;
 }
 #Menu li {
 display: inline; /* Menu links are horizontally aligned using display: inline */
 }
 #Menu li a {
 padding: 5px 5px 5px 5px; /* Display: block won't work in this example, instead we are using padding to make the whole tab a clickable link */
 color: #666666;
 text-decoration: none;
 font-weight: bold;

 }
 #Menu li a:hover {
 color: #b00018;
 }
 #Menu li a span {
 padding: 5px 5px 5px 5px;
  /* Rollover effect using "Fast rollovers without preload" concept for the right part of the tab */
 }
 #Menu li a:hover span {
 }
[if IE]>
<style type="text/css">
   3. /* Unfortunately, for some reason both IE6 and IE7 needs to be hacked. */
 .Menu1 li a {
 padding: 0 0 0 10px;
 }
 </style>
 <![endif]

#menubar { width: auto; margin-left:auto; margin-right:auto; visibility: visible; }
#foo {width:auto; margin-left:auto; margin-right:auto;}

#tabsmenu { height: 29px; color: #b00018; position: relative; background-color: #ccc; border:1px solid #000000; font-size:small; font-weight: bold; line-height:normal; }
#tabsmenu a { float:left; padding:0 0 0 0;text-decoration:none; }
#tabsmenu a span { display:block; padding:6px 8px 7px; color:#b00018; font-size: 0.8em; font-family: myriad, Verdana, tahoma, helvetica, arial, "trebuchet ms", sans-serif; font-weight: 700; font-style: normal; }}
   /* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabsmenu a span {float:none;}
   /* End IE5-Mac hack */
#tabsmenu a:hover span { color:#fff; background-color: #b00018; background-position:100% -42px; }
#tabsmenu a:hover { background-position:0% -42px; }
