/* ----------------- 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/bodybg.jpg);
	background-repeat:repeat-x;
	background-color:#FFEA00;
}

/* 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:  verdana, 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: 11px;
	padding-left: 230px;
	padding-right: 40px;
	color: #525252;
	line-height: 14px;

}
h1 {
	font-size: 17px;
	color: #0C0095;
	line-height: 34px;
	margin: 0px 0px 25px 200px;
	padding: 7px 0px 0px 29px;
	/*border-bottom: 1px dotted #354B81;*/
	width: 350px;
	/*background-image:url(images/h1-graphic.gif);*/
	background-repeat:no-repeat;
	clear:both;
	border-bottom: 1px solid #e6e6e6;
}

h2 {	
    font-size: 15px;
	font-weight: bold;
	color: #000;
	line-height: 19px;
	margin: 30px 0px 20px 215px;
	/*background-image: url(images/h2-graphic.gif);*/
	background-repeat:no-repeat;
	padding: 0px 0px 0px 15px;
	
}

h3 {
	font-size: 12px;
	font-weight: bold;
	color: #555;
	line-height: 18px;
	margin: 15px 0px 10px 210px;
}

h4 {
	font-size: 20px;
	font-weight: bold;
	color: #4A0094;
	line-height: 27px;
	margin: 0px 0px 15px 0px;
	text-align:center;
}




/* Creates the general link style for the site. This is not the main navigation.  */
a {
	font-size: 11px;
	font-weight: bold;
	color: #FF0000;
	text-decoration: underline;
}


/*------------------ LISTS FORMATS --------------------------*/
  ul { 
 		
		margin: 0px 20px 0px 225px;
        /*list-style-image: url(images/ul-house.gif);*/
		display:block;
		
		}
 
 li { 
 		font-size: 10px;
        font-weight: regular;
		line-height: 19px;
        color:#525252;
		margin: 0px 0px 0px 20px;
        list-style-image:url(images/li-square.gif);
		font-size: 11px;
		
		}
		
ol { 
 		
		margin: 0px 20px 0px 45px;
        /*list-style-image: url(images/ul-house.gif);*/
		display:block;
		
		}
 
ol li { 
 		font-size: 10px;
        font-weight: regular;
		line-height: 19px;
        color:#525252;
		margin: 0px 0px 0px 20px;
        list-style-image:url(images/li-square.gif);
		
		}

div#listings {

margin: 25px 0px 0px 0px;

}

div#listings ul {
margin: 0px 0px 0px 0px;

}

div#listings ul li {
font-size: 10px;
padding: 0px 0px 2px 5px;

color:#000000;
list-style-image:url(images/li-square.gif);

}
/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer1 {
	padding: 0px 0px 0px 0px;
	margin: 0px;
	text-align:center;
	width: 424px;
	height: auto;
	position:absolute;
	top: 179px;
	left: 0px;
	background-image: url(images/mainnav_bg.gif);
	background-repeat: repeat-y;

}

/* 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 {
	background: none;
	width: 424px;
	margin: 0 auto;
	padding: 0px 0px 0px 30px;
	list-style-type: none;


	}

/* 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 0px 0px 0px;
	width: 129px;
	height: 50px;
	background-image:url(images/navbtn_off.gif);
	background-repeat:repeat-x;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #e6e6e6;
	
}

/* 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: 9px;
	font-weight:bold;
	line-height: 12px;
	text-decoration: none;
	text-align: center;
	display: block;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	color: #0A0086;
	background-image:url(images/navbtn_off.gif);
	background-repeat:no-repeat;
	width: 129px;
	height: 37px;
	padding-top: 13px;
	
}
/* 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: #0A0086;
	background-image:url(images/navbtn_on.gif);
	background-repeat:no-repeat;
	
}



/* ================ SUB NAV ======================*/

div#subnavholder {
	padding: 0;
	margin: 0;
	margin-top: 0px;
	width:424px;
	height: 32px;
	text-align:left;
	float:left;
	position:absolute;
	top: 279px;
	left: 0px;
	clear:both;
	background-color: #ededed;
}



ul#subnav {
	background: none;
	float: left;
	width: 344px;
	height:32px;
	padding: 0px 0px 0px 80px;
	margin: 0;
	list-style-type: none;
	clear:both;
	font-size: 10px;
	color:#FFFFFF;
	background-image:url(images/subnav.gif);
	background-repeat:no-repeat;
	background-color:#fff;
	}

/* 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#subnav li {
	display: inline;
	float: left;
	padding: 5px 0px 0px 0px;
	height: 32px;
	text-align:center;
	list-style-type:none;
	text-transform:uppercase;
	width: 100px;	
}

/* 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#subnav li a:link, ul#subnav li a:visited, ul#subnav li a:active {
	font-size: 10px;
	font-weight:bold;
	line-height: 10px;
	text-decoration: underline;
	text-align: left;
	display: inline;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	color: #fff;
	height: 10px;
	
}
/* Creates the hover and "on" status style, which can be applied directly to a single link. */
ul#subnav li a:hover, ul#subnav li a.current:link, ul#subnav li a.current:visited {
	color: #FFEA00;
}	


/*==================== STOP SUB NAV =========================== */



/* ----------------- 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*/



/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */


/* 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;
				background-color:#fff;
				border: 5px solid #ffffff;
				position:relative;
				margin-top: 10px;
				
				
}
/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header1 {
			padding: 0px;
			margin: 0px;
			width:424px;
			height: 179px;
			background-image:url(images/header1.jpg);
			background-repeat:no-repeat;
			text-align:left;
			clear:both;
			position:absolute;
			top: 0px;
			left: 0px;
}

div#header2 {
			padding: 0px;
			margin: 0px;
			width:346px;
			height: 312px;
			background-image:url(images/header2.jpg);
			background-repeat:no-repeat;
			text-align:left;
			clear:both;
			position:relative;
			top: 0px;
			left: 424px;
}


/*Formats the main content of the web page */
div#maincontent {
				    width:770px;
					height: auto;
				    padding: 0px 0px 30px 0px;
					margin: 0px 0px 0px 0px; 
				   	background-color:#fff;
					background-image:url(images/maincontent_bg.gif);
					background-repeat:repeat-y;
					display:block;
					clear:both;
					position:relative;
						
											 
}

/*Formats Contact Info*/
address {
				width:180px;
				height: 200px;
				vertical-align:top;
				font-size:9px;
                font-style:normal;
				margin: 0px 0px 0px 0px;
				padding: 10px 8px 0px 8px;
				color: #fff;
				text-align: left;
				line-height: 14px;
				background-color:#0C0095;
				position: absolute;
				top: 0;
				left: 21px;
							

							
}

/* Creates the div container for the footer. */
div#footer { 
			font-size: 8px;
			font-weight:bold;
			text-align:center;
			padding: 10px 0px 0px 0px;
			margin: 0px 0px 0px 0px;
			text-transform:uppercase;
			width: 770px;
			height: 36px;
			color:#fff;
			clear:both;
			background-color: none;
			background-image:url(images/footer.gif);
			background-repeat:no-repeat;
}

div#footer a {
					font-size: 8px;
				   font-style: normal;
				   line-height: 15px;
				   font-weight: bold;
				   color: #fff;
				   text-decoration: underline;
}




/*-------------------PAGE POSITIONING ----------------*/
/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
	vertical-align: top;
	
	
}

table#multi  {	
width: 490px;
margin-top: 25px;
margin-bottom: 30px;
text-align:left;
vertical-align:top;	 
margin-left: 280px; 
}

table#multi td  {	
	font-size: 11px;
	color: #000000;
	padding: 4px;
	width: 170px;
	text-align:left;
	
}

  table#multi ul { 
 		
		margin: 0px 0px 0px 0px;
		padding:0px;
        /*list-style-image: url(images/ul-house.gif);*/
		display:block;
		
		}
 
 table#multi li { 
 		font-size: 10px;
        font-weight: regular;
		line-height: 12px;
        color:#000000;
		margin: 0px 0px 0px 0px;
        list-style-image:url(images/li-square.gif);
		
		}
		
table#multi2  {	

margin-top: 25px;
margin-bottom: 30px;
text-align:left;
vertical-align:top;	 
margin-left: 280px; 
}

table#multi2 td  {	
	font-size: 11px;
	color: #000000;
	padding: 4px;
	padding-bottom: 25px;
	text-align:left;
	
}

  table#multi2 ul { 
 		
		margin: 0px 0px 0px 0px;
		padding:0px;
        /*list-style-image: url(images/ul-house.gif);*/
		display:block;
		
		}
 
 table#multi2 li { 
 		font-size: 10px;
        font-weight: regular;
		line-height: 12px;
        color:#000000;
		margin: 0px 0px 0px 0px;
		list-style-type:none;
		
		}

/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;  margin: 0px 8px 0px 0px;
}
img.right {
	float: right;
	margin: 5px 20px 30px 10px;
}
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: 10px 0px 10px 0px;
			color:#fff;
			text-decoration:none;
			background-color: #0C0095;
			margin: 0px 0px 0px 0px;
			font-size: 9px;
			text-transform:uppercase;
			}

#admin a {color: #fff;
}

			
#creditcard {

width:770px;
height: 35px;
background-color:#FFFFFF;
text-align:center;
background-image:url(images/creditcards.gif);
background-repeat:no-repeat;
background-position:center;


}


div#webaudio {
width: 85px;
text-align:left;
position:absolute;
top: 118px;
left: 0px;
}

div#webaudiopopup {
width: 179px;
height: 100px;
background-image:url(images/webaudiobg.gif);
background-repeat:no-repeat;
position:absolute;
left: 0;
top: 0;
}

div#soundapplet {
width: 68px;
height: 30px;
position:absolute;
left: 87px;
top: 49px;
}

/* -------------------- COPYRIGHT INFORMATION ------------------*/
div#copyright {
				text-align:center;
				font-size: 9px;
				padding: 5px 0px 5px 0px;
				width: 770px;
				height: 50px;
				background: #0C0095;
				color:#fff;
				line-height: 19px;
							
}

div#copyright a {
	font-size: 9px;
	font-weight: normal;
	color: #fff;
	text-decoration: underline;

}


/* CSS Document */

