@charset "UTF-8";
/* CSS Document */
body {
	background: #222;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
#maincontainer {
	width: 785px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #222;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	height: auto;
	color: #DDDDDD;
	font-size: 24px;
}
#header{
	background: #222;
	height: 125px;
	width: 780px;
	margin-top: 25px;
}

#header #logo{
    float: left;
}

#header #address{
	text-align: right;
	padding-left: 200px;
	padding-top: 15px;
	color: #EEEEEE;
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
	font-size: 14px;
}

#countrydivcontainer{
	width: 640px;
	height: 480px;
	margin: 0 0 0 0;
	float: left;
	
}
.tabcontentiframe{
	height: 480px !important;
	overflow: hidden
}


#tabs{
	border:0px;
	width:130px;
	height:480px;
	float:right;
	background-color:#444;
}

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

.shadetabs{
	border:none;
	list-style:none;
	margin:5px 0px;
	padding:0px;
	width:130px;
	border:0px;
}

.shadetabs li a{
	display:block;
	background:url(../images/menu1.gif);
	background-repeat:no-repeat;
	font:bold 11px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
	color:#EEE;
	padding:10px 10px;
	height:12px;
	padding-left:1px;
	text-decoration:none;
}
* html .shadetabs li a{ /*IE only. Actual menu width minus left padding of A element (10px) */
	width:120px;
}

.shadetabs li a:visited{
	color:#EEE;
}

.shadetabs li a:hover, .shadetabs li a:active{
	background:url(../images/menu2.gif);
	background-repeat:no-repeat;
	color:#EEE;
}


#footer {
	background:#222;
	height: 80px;
	padding-top: 15px;
	font:9px Arial, Helvetica, sans-serif;
	line-height: 20px;
	color: #AAAAAA;
}
a:link {
	color: #EEEEEE;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #EEEEEE;
}
a:hover {
	text-decoration: none;
	color: #FF672E;
}
a:active {
	text-decoration: none;
}

