/* @override 
	http://localhost/~Stayyef/tarzan-v2.5/style2.css
	http://localhost/~Stayyef/tarzan-v2.5/style.css
*/

@charset "UTF-8";

.twoColFixLtHdr #body  {
}

body.twoColFixLtHdr {
	font: 10px/0 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: center; 
	color: #333;
	background-color: #BABABA;
	background-image: url(images/background-gradient.jpg);
}

.twoColFixLtHdr #container { 
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #DDDDDD url(images/tarzan_logo.gif) no-repeat left top; 
	padding: 0px 0px 0px 0px;
	height: 81px;
	top: 0;
	left: 0;
}

div#tarzan-bluegallery {  
	padding: 0px 0px 0px 0px;
	height: 18px;
	top: 0;
	left: 0;
	background: #fff;
	border-bottom: 3px solid #c62700;
}

#header img {
	position: relative;
	left: 151px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
/* -------------------------- */
/* SIDEBAR */
/* -------------------------- */

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 142px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 0px 0px;
		font: 10px Verdana, Arial, Helvetica, sans-serif;
}

#form {
	margin: 0;
}

#tarzan-bluegallery img {
	margin:  0px;
	padding: 0;
	bottom: 0;
	top: 0;
}



#sidebar1 ul {
	text-shadow: #000000 0px 0px 0;
	list-style-type: none;
	left: 0;
	padding-left: 0px;
	line-height: 2.5em;
	margin-left: 0;
	margin: 0;
}

#sidebar1 ul li {
	border-bottom: 1px dotted red;
	padding-left: 22px;
	color: #c62700;
}

#sidebar1 ul li a {
	color: #555;
	text-decoration: none;
	font-weight: bold;
}

#sidebar1 ul li:hover {
	border-bottom: 1px dotted red;
	padding-left: 22px;
	background: url(images/nav_arrow.gif) no-repeat 5px;
	}

#sidebar1 ul li a:hover{
	color: #c62700;

}

#sidebar1 h3 {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	background-color: #c62700;
	padding-left: 7px;
	padding-top: 2px;
	padding-bottom: 2px;
	color: white;
	margin: 0;
}

.whitebackground {
	background-color: white;
	margin-top: 0;
}
/* -------------------------- */
/* MAIN CONTENT */
/* -------------------------- */
	
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 145px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font: 10px/21px Verdana, Arial, Helvetica, sans-serif;}

#mainContent a {
		color: #c62700;
	text-decoration: none;
}

#mainContent h3 {
	font: bold 11px Verdana, Arial, Helvetica, sans-serif;
	color: #444;
	margin-top: 0;
	margin-bottom:2px;
}

#mainContent a:hover {
	text-decoration: underline;
}

#mainContent h2 {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	color: #c62700;
	padding: 6px;
	background: url(images/heading.gif) no-repeat;
	margin-bottom: 0;
	margin-top: 2px;
}
/* -------------------------- */
/* FOOTER */
/* -------------------------- */

.twoColFixLtHdr #footer { 
	padding: 7px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#c62700;
	text-align: center;
}

.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 0 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #fff;

}
/* -------------------------- */
/* MISC */
/* -------------------------- */

.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;
}
