/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	
	margin: 0 auto; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	text-align: center; /* Equivalent to <center> tag for older IE browsers. Remove if you do not want to center page. */
   	scrollbar-face-color: #ffffff;
	scrollbar-shadow-color: #ffffff;
	scrollbar-highlight-color: #FFFFFF;
	scrollbar-3dlight-color: #000000;
	scrollbar-darkshadow-color: #000000;
	scrollbar-track-color: #e6e6e6;
	scrollbar-arrow-color: #FFFFFF;
	background-image:url(images/bg.gif);
	background-color:#0040C4;
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td, div, textarea {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}


/* Redefines the p tag */
p {
	font-size: 12px;
	padding-left: 20px;
	padding-right: 15px;
	color: #000000;
	margin-right: 10px;

}
h1 {
	font-size: 18px;
	font-weight: bold;
	color: #2C4788;
	line-height: 23px;
	margin: 38px 0px 25px 20px;
	border-bottom: 1px dotted #2C4788;
	width: 235px;
}

h2 {	
    font-size: 15px;
	font-weight: bold;
	color: #988C20;
	line-height: 19px;
	margin: 0px 0px 20px 20px;
}

h3 {
	font-size: 13px;
	font-weight: bold;
	color: #000000;
	line-height: 18px;
	margin: 0px 0px 10px 21px;
}

h4 {
	font-size: 16px;
	font-weight: bold;
	color: #0037AA;
	line-height: 18px;
	margin: 0px 0px 10px 21px;
}


/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	font-size: 12px;
	font-weight: bold;
	color: #C32E2E;
	text-decoration: underline;
}
a:visited {
	font-size: 12px;
	font-weight: bold;
	color: #C32E2E;
	text-decoration: underline;
}
a:hover {
	font-size: 12px;
	font-weight: bold;
	color: #C32E2E;
	text-decoration: underline;
}
a:active {
	font-size: 12px;
	font-weight: bold;
	color: #C32E2E;
	text-decoration: underline;
}



/*------------------ LISTS FORMATS --------------------------*/
 ul,li { 
 		font-size: 12px;
        font-weight: regular;
		line-height: 15px;
        color:#333333;
        /*list-style-image: url(images/ul-house.gif);*/
		
		}


/* ----------------- MAIN NAVIGATION ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	background-color: #ffffff;
	margin: 0px;
	padding: 0px;
	width: 157px;
	height: auto;
	background-image:url(images/navmenu-bg.gif);
	background-repeat:repeat-y;

	
	}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;

	
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 10px;
	color: #194092;
	text-decoration: none;
	display: block;
	background-image:url(images/navbtn_off.gif);
	background-repeat:no-repeat;
	background-color: #ffffff;
	width: 114px;
	height: 29px;
	border: none;
	padding: 7px 0px 0px 43px;
	text-align:left;	
	line-height:11px;

	

		
	
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	
	background-image:url(images/navbtn_on.gif);
	background-repeat:no-repeat;	
	color: #BF1919;
	
}



/* ----------------- PAGE CONTAINER ELEMENTS ----------------- */
/*These divs hold the left and right sides of the web page below the header and above the footer - the nav and the main content*/

/* Holds the entire web page from the beginning body tag to the end body tag */
div#all {
				width:770px;
				background-image:url(images/navmenu-bglft.gif);
				background-repeat:repeat-y;
				text-align:left;
				margin: 0 auto;
				padding: 0px;				

}

/*Holds the unordered list that creates the nav menu*/
div#left {
				width: 157px;
				float:left;
				margin: 0px;
				padding: 0px;
				background-color:#ffffff;
				height:auto;
				background-image:url(images/navmenu-bglft.gif);
				background-repeat:repeat-y;
				
	
				
				
				}
/*Holds the div#maincontent portion of the web container */
div#right {
				width: 613px;
				float:right;
				margin: 0px;
				padding: 0px;
				background-color: #ffffff;
				background-image:url(images/maincontent-bg.gif);
				background-repeat:repeat-y;		
				
}

/*Holds the left and right div together as one*/
div#lrcontainer {
				width:770px;
				clear:both;
				height: 100%;
				margin:0px;
				padding: 0px;
				background-color: #ffffff;
				background-image:url(images/navmenu-bglft.gif);
				background-repeat:repeat-y;
				


}



/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
			padding: 0px;
			margin: 0px;
			width:770px;
			height: 208px;
			background-image:url(images/header.jpg);
			background-repeat:no-repeat;
			
			
}


/*Formats the main content of the web page */
div#maincontent {
					border: 0px;
				    width:613px; height: auto;
				    padding: 10px 0px 60px 0px;  
				   	background-color:#ffffff;
					background-image:url(images/maincontent-bg.gif);
					background-repeat:repeat-y;
											 
}





div#contenttop {
					background-image:url(images/content-top.gif);
					background-repeat:no-repeat;
					width: 613px;
					height: 37px;
					

}

div#contentbtm {
					width: 770px;
					height: 36px;
					background-image:url(images/maincontent-btm770.gif);
					clear:both;


}

/*Formats Contact Info*/
div#contactinfo {
				
				
				font-weight:regular;
				text-align:center;
				width:770px;
				background-image:url(images/contactinfo-bg.gif);
				background-repeat:repeat-y;
				height: 65px;
				
			
					
				
}

div#contactinfo p {
				font-size:13px;
				margin: 10px 0px 0px 0px;
				padding: 10px 0px 0px 0px;
				color: #0F244E;
				text-align:center;
				line-height: 15px;
							
}

				
div#contactinfo a{
				
				color:#0F244E;
				text-align:center;
				font-size:13px;
				
				}

/* Creates the div container for the footer. */
div#footer { 
			font-size: 9px;
			font-weight:bold;
			text-align:center;
			padding: 0px 0px 0px 0px;
			text-transform:uppercase;
			width: 770px;
			height: 76px;
			color:#0F244E;
			background-image:url(images/footer.jpg);
			background-repeat:no-repeat;
}
div#footer p {

				width: 735px;
				margin-top: 0px;
				padding-top: 23px;
				color: #0F244E;
				text-align:center;
				line-height: 13px;
				font-size: 9px;
				
				
}
div#footer a:link {font-size: 9px;
				   font-style: normal;
				   line-height: 15px;
				   font-weight: bold;
				   color: #0F244E;
				   text-decoration: underline;
}
div#footer a:visited {font-size: 9px;
				   font-style: normal;
				   line-height: 15px;
				   font-weight: bold;
				   color: #0F244E;
				   text-decoration: underline;
}
div#footer a:hover {font-size: 9px;
				   font-style: normal;
				   line-height: 15px;
				   font-weight: bold;
				   color: #0F244E;
				   text-decoration: underline;
}
div#footer a:active {font-size: 9px;
				   font-style: normal;
				   line-height: 15px;
				   font-weight: bold;
				   color: #0F244E;
				   text-decoration: underline;
}




/*-------------------PAGE POSITIONING ----------------*/


/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;  margin: 0px 8px 0px 0px;
}
img.right {
	float: right; margin: 0px 0px 0px 8px;
	margin: 0px 10px 30px 10px;
}
clear {
	clear: both;
}

img.main {
			position:absolute;
			top: 127px;
			left: 514px;

}



/* ------------------ FORM ELEMENTS ------------------------*/

form table { border-collapse:collapse;
			 margin: 0px 0px 0px 15px;


}

form td {	border-collapse:collapse;
			font-size: 12px;
			padding: 4px;
			text-align:left;
			vertical-align:top;
			
			}
form input {font-size: 12px;}
			
form textarea {font-size: 12px;}



/* ----------------- CUSTOM CLASSES or ID's ----------------- */


#email {
			font-size: 12px;
			color: #497795;
			width:494px; height: 108px; 
			/*border-top: 1px solid #E3E3E3;*/ 
			background-color: #D21919;

}

div#email {
			font-size: 12px;
			color: #497795;
			width:484px;
			border-top: 1px solid #E3E3E3;
			background-color: #FFFFFF;

}

#admin {
			font-size: 10px;
			text-align:center;
			padding: 4px;
			color:#FFFFFF;
			text-decoration:none;
			background-color: #0040C4;
			margin: 0px;
			
			
			}

#admin a {
			color:#FFFFFF;
			
			}
			
			
#creditcard {

width:157px;
text-align:center;
padding-top: 15px;
padding-bottom:15px;

}

#audio {
float:right;
padding-right: 20px;
width: 170px;

}

#rotatepics {
			float: left;
			width: 250px;
			height: 250px;
			background-color:#000000;
			margin: 0px 15px 20px 7px;
			clear:both;
			


}
/* -------------------- COPYRIGHT INFORMATION ------------------*/
div#copyright {
				text-align:center;
				font-size: 10px;
				padding: 5px 0px 5px 0px;
				width: 770px;
				height: 50px;
				background: #0040C4;
				color:#ffffff;
							
}

div#copyright a {
	font-size: 10px;
	line-height: 15px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: underline;

}
