@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: #fffde9;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	background-color: #000000;
	background-image: url(images/akaribg.jpg);
	background-repeat: repeat-x;
}
body a {
	color: #fffde9;
	text-decoration:none;
	border: 0;
}
body a img { 
	border:0 
}
#container {
	width: 875px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
} 
#social {
	position:absolute;
	text-align:center;
	z-index:1;
	top: 5px;
	right: 5px;
}
#header {
	font-size: x-small;
	padding: 10px;
} 
#navbar {
	margin: 0;
	padding-top: 10px;
	float: left;
	width: 255px; /* since this element is floated, a width must be given */
	height: 600px;
	font-size: small;
	text-align: right;
}
#logo {
	 color:#545454;
	 font-size:x-small;
	 margin-bottom:10px;
	 text-align:center;
}
#mainContent {
	background-position:center;
	margin-top: 10px;
	width:600px;
	height: 600px;
	font-size: small;
	text-align: left;
	float:left;
	overflow:hidden;
}
#contenttext {
	width: 405px;
	text-align:left;
/*	margin-top:5px;*/
	margin-left:20px;
	float:left;
	overflow:hidden;
}
#breadcrumb {
	width: 405px;
	text-align:center;
	margin-top:10px;
	margin-left:20px;
	font-style:italic;
	font-weight:bold;
}
#contentimages {
	width: 165px;
	text-align: center;
	margin-top: 10px;
	margin-right:10px;
	float:right;
}
#footer {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 252px;
	font-size: small;
	text-transform:uppercase;
}
#address {
	font-size:x-small;
}
#copyright {
	 font-size:xx-small; 
	 color:#222;
	 text-align:center;
}


/* Contact Form */
#page-wrap {
	width: 400px;
	padding: 5px;
	margin: 5px auto;
	min-height: 400px;
	height: auto !important;
	height: 475px;
	font-size:small;
	text-align:center;
}
#contact-area {
	width: 400px;
}
#contact-area input.text, #contact-area textarea {
	width: 300px;
	margin-left: 5px;
}
#contact-area textarea {
	height: 70px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
}
#contact-area input.submit-button {
	width: 50px;
	float: right;
}
/* Mobile Site*/

.mobile header {
	font-size:x-small;
	color: #545454;
}

.mobilemain a {
	color: #fffde9;	
}


/* Miscellaneous classes for reuse */

.black_overlay {
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index:1001;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
.white_content {
	display: none;
	position: absolute;
	top: 25%;
	left: 25%;
	width: 50%;
	height: 50%;
	padding: 16px;
	border: 8px solid #dddddd;
	background-color: #000000;
	z-index:1002;
	overflow: auto;
	text-transform:none;
}


.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;
	font-family: Verdana, Geneva, sans-serif;
	color: #666;
}
.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;
}
.bottomlink {
  background-color: #545454;
  border:thin #fffde9 solid;
}
 
/* :hover is a pseudo selector to use to set the mouseover attributes */
.bottomlink:hover {
  background-color: #333;
