/* ----------------- 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:#0D0356;
}

/* 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:  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: 50px;
	padding-right: 20px;
	color: #000000;

}
h1 {
	font-family: "Avalon", Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #17A813;
	line-height: 33px;
	margin: 40px 0px 25px 20px;
	padding: 0px 0px 0px 29px;
	/*border-bottom: 1px dotted #354B81;*/
	width: 290px;

}

h2 {	
    font-size: 14px;
	font-weight: bold;
	color: #0D0356;
	line-height: 19px;
	margin: 30px 0px 20px 35px;
	padding: 0px 0px 0px 15px;
	
}

h3 {
	font-size: 13px;
	font-weight: bold;
	color: #000000;
	line-height: 18px;
	margin: 15px 0px 10px 51px;
}

h4 {
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	line-height: 18px;
	margin: 0px 0px 10px 0px;
}



/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	font-size: 12px;
	font-weight: bold;
	color: #17A813;
	text-decoration: underline;
}
a:visited {
	font-size: 12px;
	font-weight: bold;
	color: #17A813;
	text-decoration: underline;
}
a:hover {
	font-size: 12px;
	font-weight: bold;
	color: #17A813;
	text-decoration: underline;
}
a:active {
	font-size: 12px;
	font-weight: bold;
	color: #17A813;
	text-decoration: underline;
}



/*------------------ LISTS FORMATS --------------------------*/
  ul { 
 		
		margin: 0px 20px 0px 25px;
        /*list-style-image: url(images/ul-house.gif);*/
		
		}
 
 li { 
 		font-size: 12px;
        font-weight: regular;
		line-height: 19px;
        color:#000000;
		margin: 0px 0px 0px 40px;
        /*list-style-image: url(images/ul-house.gif);*/
		
		}

div#fourcol {

width: 720px;
margin-left: 50px;
font-size: 12px;
color: #555555;
clear: both;

}


div#fourcol h2 {

    color: #293D80;
	line-height: 19px;
	margin: 20px 0px 20px 0px;
	background-image: url(images/h2-graphic.gif);
	background-repeat:no-repeat;
	padding: 0px 0px 0px 15px;

}

div#fourcol ul {

margin: 0px 0px 0px 0px;
padding:  0px 0px 0px 0px;

}

/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer {
	width: 770px;
	height:47px;
	padding: 0px 0px 0px 0px;
	margin: 0px;
	background-image:url(images/navbtn_off.jpg);
	text-align:center;
}
/* Removes any default margins or padding applied to lists. Floats the list to the left, which incorporates the child elements (i.e. the links) and provides a full-length background color that extends past the links.*/

ul#mainnav {
	float: left;
	width: 759px;
	height: 47px;
	margin: 0 auto;
	padding: 0px 0px 0px 11px;
	list-style-type: none;
    background-image:url(images/navbtn_off.jpg);
	clear:both;
	}

/* Lists, by default, are block level elements, so the applying the inline style removes the line breaks of a block level element and causes the links to line up next to one another. We float the items left as some browsers have difficulty displaying the inline property correctly in this fashion. We remove all margins and padding and the bullet by setting the list style type to none.*/

ul#mainnav li {
	display: inline;
	float: left;
	margin: 0px auto;
	padding: 0px;
	height: 46px;
	background-image:url(images/navbtn_off.jpg);
	background-repeat:repeat-x;
	border-right: 1px dashed #999999;
	
}

/* Although we have redefined the li style as an inline element, we need to make the actual links block level elements so we can give them widths and have them display properly as "buttons." */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 12px;
	line-height: 13px;
	text-decoration: none;
	text-align: center;
	display: block;
	height: 31px;
	padding: 11px 0px 0px;
	margin: 0px;
	color: #000000;
	font-weight: bold;
	width: 95px;
	
}
/* Creates the hover and "on" status style, which can be applied directly to a single link. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	color: #000000;
	background-image:url(images/navbtn_on.jpg);
	background-repeat:repeat-x;
	font-weight: bold;
	
}

div#navbtm {

	background-image:url(images/navbtm.jpg);
	background-repeat:repeat-x;
	width: 750px;
	height: 15px;
	clear:both;
}







/* ----------------- 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;
				text-align:left;
				margin: 0 auto;
				padding: 0px;
				margin-top: 25px;
				background-color:#000000;
				background-image:url(images/bg_maincontent.jpg);
				background-repeat:repeat-y;
				border: 6px solid #ffffff;
						

}





/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */


/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
}

table#bio {
padding: 7px;

margin-left: 50px;
width: 80%;
}

table#bio td {
font-size: 11px;
padding: 3px;
padding-bottom: 15px;
vertical-align:top;
}





/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
			padding: 0px;
			margin: 0px;
			width:555px;
			height: 162px;
			background-image:url(images/header1.jpg);
			background-repeat:no-repeat;
			text-align:left;
			float:left;
			
			
}

div#header1b {
			padding: 0px;
			margin: 0px;
			width:760px;
			height: 169px;
			background-image:url(images/header2.jpg);
			background-repeat:no-repeat;
			clear:both;
			background-color:#FFFFFF
			
			
}


/*Formats the main content of the web page */
div#maincontent {
					border: 0px;
				    width:770px;
					height: auto;
				    padding: 35px 0px 20px 0px;  
				   	background-color:#F7EEB5;
					background-image:url(images/bg_maincontent.jpg);
					background-repeat:repeat-y;
					margin: 0;
					
					
					
											 
}


/*Formats Contact Info*/
address {
				text-align:center;	
				width:215px;
				height: 162px;
				background-image: url(images/contactinfo.jpg);
				float:right;
							
}

address p {
				font-size:11px;
				margin: 45px 0px 0px 0px;
				padding: 0px 8px 0px 0px;
				color: #000000;
				text-align: center;
				line-height: 14px;
				font-style:normal;

							
}

				
address a{
				
				color:#001355;
				text-align:center;
				font-size:10px;
				
				}

/* Creates the div container for the footer. */
div#footer { 
			font-size: 9px;
			font-weight:bold;
			text-align:center;
			padding: 0px 0px 0px 0px;
			margin: 0px 0px 0px 0px;
			text-transform:lowercase;
			width: 770px;
			height: 71px;
			color:#ffffff;
			background-image:url(images/footer.jpg);
			background-repeat:no-repeat;
			clear:both;
}
div#footer p {

				width: auto;
				margin: 0px 0px 0px 0px;
				padding: 15px 0px 0px 0px;
				color: #ffffff;
				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: #ffffff;
				   text-decoration: underline;
}
div#footer a:visited {font-size: 9px;
				   font-style: normal;
				   line-height: 15px;
				   font-weight: bold;
				   color: #ffffff;
				   text-decoration: underline;
}
div#footer a:hover {font-size: 9px;
				   font-style: normal;
				   line-height: 15px;
				   font-weight: bold;
				   color: #ffffff;
				   text-decoration: underline;
}
div#footer a:active {font-size: 9px;
				   font-style: normal;
				   line-height: 15px;
				   font-weight: bold;
				   color: #ffffff;
				   text-decoration: underline;
}




/*-------------------PAGE POSITIONING ----------------*/


/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;  margin: 5px 8px 15px 0px;
	border: 1px solid #F1D700;
	padding: 5px;
}
img.right {
	float: right;
	margin: 5px 20px 15px 5px;
	border: 1px solid #F1D700;
	padding: 5px;
}
clear {
	clear: both;
}

img.main {
			position:absolute;
			top: 127px;
			left: 514px;

}



/* ------------------ FORM ELEMENTS ------------------------*/

form table { border-collapse:collapse;
			 margin: 0px 0px 0px 65px;


}

form td {	border-collapse:collapse;
			font-size: 11px;
			padding: 10px 0px 0px 0px;
			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 {
			width: 770px;			
			text-align:center;
			padding: 0px 0px 10px 0px;
			color:#FFFFFF;
			text-decoration:none;
			background-color: #0D0356;
			margin: 0px 0px 0px 0px;		
			
			}

#admin a {
			color:#FFFFFF;
			font-size: 10px;
			font-weight:bold;
			}
			
			
#creditcard {

width:770px;
height: 32px;
text-align:center;
background-color:#0D0356;
background-image:url(images/creditcards.gif);
background-position:center;
background-position:top;
background-repeat:no-repeat;


}

#webaudio {
width: 170px;
height: 37px;
position:relative;
top: 3px;
left: 535px;
}

/* -------------------- COPYRIGHT INFORMATION ------------------*/
div#copyright {
				text-align:center;
				font-size: 9px;
				padding: 5px 0px 25px 0px;
				width: 770px;
				height: 20px;
				background: #0D0356;
				color:#ffffff;
				line-height: 19px;
							
}

div#copyright a {
	font-size: 9px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: underline;

}


p#disclaimer {
font-size: 9px;
color:#000000;


}.center {
	text-align: center;
}
div.floatright {
	margin: 0px 20px 0px 0px;
	padding: 0px;
	float: right;
	width: 315px;
	text-align: center;
}
div.floatright img {
	border: 1px solid #F1D700;
	padding: 5px;
}
h1.italic {
	font-style: italic;
}
