body{
background:url(images/bg.jpg) repeat top left;
padding:0;
margin:0;
font-family:Verdana, Arial, Helvetica, sans-serif;
text-align:center;
}

a{
color:#79DFE2;
text-decoration:underline;
}

a:hover{
text-decoration:none;
}

/**********************************/
/*********wrapper*******************/
#wrapper{
padding:0 ;
margin:0 auto;
text-align:center;
width:794px;
background:url(images/main-bg.jpg) repeat-y center top;
}

/************************************/
/**************header****************/
/***********************************/
#header{
background:url(images/header.jpg) no-repeat 40%;
height:140px;
padding:0;
margin:0;
}



/**********************************/
/***********main-content***********/
/**********************************/
.main-content{
padding:0;
margin:0 7px;
background:#68733D;

}


/******************************/
/***********bottom-part*********/
#bottom-part{
padding:10px;
margin:0 5px;
border-bottom:5px solid #484E00;
border-top:5px solid #484E00;
border-left:8px solid #484E00;
border-right:8px solid #484E00;
background:#68733D;
text-align:left;
}

#bottom-part ul{
margin-top:20px;
margin-left:60px;
padding:0;
text-align:left;
}


#bottom-part ul li{
margin:0;
font-size:75%;
font-weight:bold;
padding:5px;
text-align:left;
color:#FFFFFF;
}

#bottom-part table{
margin:5px;
padding:0;
}
#bottom-part table img{
margin:5px;
}

#bottom-part table td{
background:#5F6A34;
}


#bottom-part table p {
font-size:80%;
color:#FFFFFF;
}
#bottom-part h1{
text-align:left;
font-size:120%;
color:#fff;
padding:10px 0 7px 0;
margin:5px 0 20px 5px;
background:url(images/line.jpg) no-repeat left bottom;
}

#bottom-part h2{
text-align:center;
border-bottom:1px solid #454F1D;
border-top:1px solid #454F1D;
margin:30px 20px 15px 20px;
padding:7px;
font-size:100%;
color:#FFFFFF;
}

#bottom-part h3{
font-size:110%;
color:#E9FF92;
margin:19px 13px;
padding:7px;
}
#bottom-part h6{
font-size:80%;
color:#E9FF92;
text-align:center;
}

#bottom-part p{
font-size:90%;
color:#F1F1F1;
text-align:left;
margin-left:30px;
margin-right:30px;
}
#bottom-part p img{
margin:0 5px;
}
#bottom-part p em{
}




/*********************************/
/************left-part************/
#left-part{
float:left;
padding:0;
margin:0;
width:445px;
}
/********************************/
/***********right-part***********/
#right-part{
float:right;
padding:10px 0 0 0;
margin:0;
width:335px;
}

#right-top{
background:url(images/right-bg1.jpg) repeat-y top center;
}
#right-top ul{
margin-top:20px;
margin-left:60px;
padding:0;
text-align:left;
}


#right-top ul li{
margin:0;
font-size:75%;
font-weight:bold;
padding:5px;
text-align:left;
color:#FFFFFF;
}
#right-top p{
font-size:12px;
color:#fff;
text-align:left;
margin:0;
padding:5px 20px 5px 35px;
line-height:1.5em;
}

#right-bottom{
background:url(images/right-bg2.jpg) repeat-y top center;
}

#right-bottom p{
font-size:16px;
color:#FF8A00;
text-align:left;
margin:0;
padding:5px 25px 5px 120px;
}

.clear{
clear:both;
height:10px;
}



/***************footer-top***************/
#footer-top{
background:url(images/bottom-bg.jpg) center top no-repeat;
padding:0;
margin:0;
height:26px;
}


/*****************************/
/**********footer*************/
/*****************************/
#footer{
margin:0 7px;
padding:7px 0;
color:#DDE0D1;
font-size:12px;
background:#344403;
}



#menu-wrapper{
padding:0;
margin:0 auto;
width:779px;
background:#324609;

}

.menu, .menu ul{
clear:both;
list-style:none;
margin:0;
padding:0;
display: block;
}

.menu li{
float:left;
padding:.4em 7px;
display: block;
margin:0;
position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul{
visibility:hidden;
position:absolute;
top:0;
left:0;
z-index:10;
}

.menu li:hover>ul {
   
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}


.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after{
visibility:hidden;
content:".";
height:0;
overflow:hidden;
clear:both;
display:block;
}

.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}

/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */

/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
}

.menu ul {
	width: 120px;
	
}

.menu a {
	text-decoration: none;
	color: #FF7404;
	display: block;
	position: relative;
	font-size:14px;
	font-weight:bolder;
	text-align:left;
}

.menu a:hover, .menu li:hover>a {
	color: #FF7404;
	text-decoration:none;
	
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 100%;
}

.menu li li:hover{
background:#484E00;
}

.menu li li {	/* create borders around each item */
	border-bottom: 1px solid #E7E773;
	background:#788101;
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {

}

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/*]]>*/









