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

* {
	margin: 0;
	padding: 0;
	border: none;
}

body {
	background: url(../images/bg.png) repeat-x #d8d200;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	margin: 0;
	padding: 0;
	border: none;
}

#container {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

#animals {
	position: absolute;
	width: 1000px;
	height: 520px;
	left: 130px;
	top: 97px;
	background: url(../images/animals.png) no-repeat;
}

#top_nav {
	margin-top: 40px;
	width: 925px;
	height: 32px;
	margin-left: auto;
	margin-right: auto;
}

#menu {
	width: 425px;
	float: right;
}

#menu li {
	display: block;
	float: left;
	list-style: none;
}

#menu li a:link, #menu li a:visited {
	display: block;
	width: 85px;
	height: 16px;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

#menu li a:active, #menu li a:hover, #menu li a.active {
	/* background-image: url(../images/button_hover.png); */
	color: #f2eb01;
}

#back {
	width: 1000px;
	background: no-repeat bottom url(../images/animals.png);
}

#banner {
	width: 900px;
	height: 200px;
	margin-left: auto;
	margin-right: auto;
}

#banner img {
	position: absolute;
	top: 40px;
}

#main_container {
	width: 712px;
	height: 247px;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 15px 35px 35px;
	/*background-image: url(../images/mainbg.png);*/
	background-repeat: no-repeat;
}

#main_container h3 {
	margin-top: 10px;
	margin-bottom: 10px;
	color: #6d3400;
	font-size: 18px;
	font-weight: lighter;
}

#main_container p {
	margin-top: 5px;
	margin-bottom: 10px;
	margin-right: 20px;
	color: #202020;
	text-indent: 35px;
}

#main {
	float: right;
	width: 520px;
	height: 230px;
	overflow: auto;
	
}

#mainC {
	float: right;
	width: 690px;
	height: 230px;
	overflow: auto;
	
}

#horizontal_wrapper {
	margin: 20px auto;
}

#div_img {
	margin-left: auto;
	margin-right: auto;
}

#div_img img:hover {
	width: 150px;
	height: 116px; 
}

#bla {
	float: left;
	margin-right: 10px;
}

#div_img p {
	margin: 0px 20px 0px 0px;
	font-size: 12px;
	font-style: italic;
	text-align: right;
}

#div_img p a {
	color: #6d3400;
	text-decoration: none;
}

#div_img p a:hover {
	color: #6d8595;
}

#vertical_wrapper {
	float: right;
	width: 3px;
	height: 230px;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 15px;
}

#left {
	float: right;
	width: 145px;
}

#left p {
	color: #6d3400;
	font-size: 12px;
	font-weight: bold;
	text-indent: 0px;
	margin: 0 0 2px 0;	
}

#left img {
	border: 2px solid #202020;
	margin: 0 0 0 10px;
}

#left img:hover {
	border: 2px solid #6d3400;
}

#clear {
	clear: both;
}

#footer {
	width: 900px;
	height: 20px;
	color: #202020;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}

#mycustomscroll {
/* Typical fixed height and fixed width example */
	width: 602px;
	float: right;
	height: 250px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	/*background-color: #E7EADE;*/
	margin: 0.3em auto;
	/* padding: 15px; */
}

#mycustomscroll2 {
/* Typical fixed height and fixed width example */
	width: 340px;
	height: 250px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	background-color: #B4C2DA;
	margin: 0.3em auto;
	padding: 15px;
}

/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

/*  scrollgeneric is used for corrective styling of elements, and should not be modified or removed */ 
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbase {
width:22px;
}
.vscrollerbar {
background-image: url(../images/scrollbar.png);
width: 22px;
/* following is the bit that allows us fixed height scrollbars */
height: 58px !important;
/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/

background-image: url(../images/scrollbar.png);
/* unfortunately, due to limitations of CSS, we cannot provide a color for the background when we are
using alpha images, thay have to be transparent.*/
}

* html .vscrollerbar {
/* IE6 alpha png trick */
/* IE7 is not affected by this trick, as it perfectly handles the normal png */
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop src='../images/scrollbar.png');
background-image: none;
}


/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {height: 22px;}
.hscrollerbar {height: 22px; background-color: #84ADD6;}

.vscrollerbar, .hscrollerbar {
/* paddings of these elements will decide how far the scrollbar will stop in both ends, and are not actually
used for styling, and are set to 0 by the script, here we will set them the size of our faux arrows */
padding: 0px;
z-index: 2;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 22px;
height: 22px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #698AAA;
}


/* Scroll Bar Master Styling Ends Here */


