@charset "utf-8";

/* HI BARRY - The CSS for this template was generated by Dreamweaver CS3, and represents the MOST current implementation of CSS currently in use on the web - I've made updates and revisions as necessary. This document is gospel, baby. It's very different (and simpler) from the previous CSS file I gave you - most notably for the fact that the default font family, size, line height and size are defined immediately in the BODY tag. If you don't define the font in a particular tag, it will default to the BODY tag font settings. The "Tips" below are direct from Dreamweaver - god bless'em. :) */

body  {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	background:#000000 url(../images/BGredrop.gif) repeat-x scroll top left;
	line-height:1.15;
	font-size:14px;
	margin: 0;
	padding: 0;
	color: #E2D5CA;

}

/* LINK SETTINGS */
			
a:link {
	text-decoration: none;
	color: #ffd200;
	font-weight:bold;
}
a:visited {
	color: #ffd200;
}
a:hover {
	color:#FFFFFF;
	text-decoration: none;
}
a:active {
	color:#F00;
	text-decoration: none;
}

/* SITE DIVs  - THE CONTROL LAYOUT */

.thrColHybHdr #container {
	width: 100%;
	background:transparent url(../hologo.gif) no-repeat scroll top center;


}  
.thrColHybHdr #header {
	padding-top: 150px;
	text-align: center;
}



/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. 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 ".thrColHybHdr #sidebar1 p" rule.
*/
.thrColHybHdr #sidebar1 {
	float: left; 
	width: 120px;
	padding-top: 75px;
	padding:5px;
	margin:0 5px 0 0;
}
.thrColHybHdr #sidebar2 {
	float: right; 
	width: 140px;
	padding-top: 15px;
	padding-right:30px;
}
.thrColHybHdr #sidebar2 p {
	margin:0 5px 10px 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
}

/* BARRY - If you want to add other formatted elements to the right "sidebar2" column (h1, h2, etc.), follow the example above - remember, if you don't define color, size, etc., it defaults to the formatting in the top BODY tag */


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColHybHdr #mainContent {
 	margin: 0 12em 0 12em;
	padding: 50px 0 0 0; 
	
} 
.thrColHybHdr #mainContent p {
	margin:0;
	padding:0 0 10px 20px
} 
.thrColHybHdr #mainContent h1 {
 	margin: 0 0 10px 0;
	padding: 0; 
	font-size:22px;
	color:#F00;
} 
.thrColHybHdr #mainContent h2 {
 	margin: 0 0 10px 10px;
	padding: 0; 
	font-size:18px;
	color:#FFF;
} 

/* BARRY - If you want to add other formatted elements to the center "mainContent" column (h3, h4, etc.), follow the example above */

.thrColHybHdr #footer { 
	padding: 0 10px; 
	text-align: center;
} 
.thrColHybHdr #footer p {
	margin: 0; 
	padding: 0 0 10px 0;
	font-size:10px;
	text-align:center;
}

/* 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 */
	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;
}

/*** Nav bar styles ***/

.nav a{
	text-decoration: none;
}

.nav a:link {
	
}
.nav a:visited {
	color: #FF0000;
}
.nav a:hover {
	color: #FF0000;
}

.nav td {
	font-size: 16px;
	font-weight: bold;
	border-style: line;
	border-color: #000000;
}

ul.nav, .nav ul{
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	text-decoration: none;
}

ul.nav>li{
	margin: 0;
	padding: 4px 10px 4px 10px;
	display:inline;
}

ul.nav li>ul{
	display: none;
	position: absolute;
	width: 20ex;
	left: 105px;
	margin-top: -1.4em;
	margin-left: 9px;
	background-color: #333333;
	color: #FFFFFF;
}

ul.nav li:hover>ul{
	display : block;
}

.nav ul li a{
	display: block;
	padding: 2px 10px;
}

/*** Menu styles (customizable) ***/

ul.nav,
.nav ul,
.nav ul a{
		color: #CCCCCC;
        border: 1px solid #666;
}
.nav li a{
		color: #CCCCCC;
}

.nav li {
        
}

ul.nav li:hover,
.nav ul li a:hover{
		color: #CCCCCC;
        border: 1px solid #FFF;
}

ul.nav li:active,
.nav ul li a:active{
	background-color: #333333;
	color: #fff;
        border: 1px solid #FF0;
}
.caltable {
	border: 1px solid #663366;
	padding: 20px;



}
.caltable th {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #CC0000;
	border: 1px solid #663366;
	background-color: #000000;


}
.caltable td {
	font-family: Arial, Helvetica, sans-serif;
	color: #0099CC;
	border: 1px solid #660033;
	vertical-align: middle;
	text-align: center;
	bottom: auto;
	padding-top: 5px;
	padding-bottom: 5px;

}
.caltable caption {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #6699CC;
	background-color: #660000;
	border: 1px solid #660033;
	font-weight: bold;
	font-variant: normal;
}
.caltable .event {
	background-color: #66CCFF;
	border: 1px solid #333366;
	color: #330033;

}

