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

body{
	background-color: #def9ec;
}
#contain{
	margin:auto;
	width:800px;
	height:auto;
}
#header{
	margin: auto;
	width: 800px;
	height: 170px;
	background-image:url(../../header1_10.jpg)
}
#navigation{
	height: 29px;
	margin: auto;
	width: 800px;
	background-color: #483233;
	text-decoration: none;	
}

.top-nav-area {
	left:185px;
	padding-top: 5px;
	padding-left: 30px;
}
	
.top-nav-table {
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	background-color: #483233;
	padding-left: 3px;
}
.top-nav-row {
	height:15px;
}
.top-nav-cell {
	padding-left:5px;
	padding-right:5px;
	text-align:center;
}
.top-nav-cell-selected {
	background-color:#483233;
	color: #9cbced;
	padding-left:10px;
	padding-right:10px;
	text-align:center;
}
.top-nav-bar {
	color:#fcfbe7;
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	font-size:14px;
	text-decoration:none;
}
a.top-nav:link {
	color:#fcfbe7;
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	font-size: 14px;
	font-weight: 100;
	padding-left:5px;
	padding-right:5px;
	text-decoration:none;
}
a.top-nav:visited {
	color:#fcfbe7;
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	font-size:14px;
	font-weight:100;
	padding-left:5px;
	padding-right:5px;
	text-decoration:none;
}
a.top-nav:hover {
	color:#9cbced;
	font-weight:100;
	padding-left:5px;
	padding-right:5px;
	text-decoration:none;
}
/*a.top-nav-selected:link {
	background-color:#483233;
	color:#9cbced;
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	font-size:14px;
	font-weight:100;
	padding-left:5px;
	padding-right:5px;
	text-decoration:none;
}
a.top-nav-selected:visited {
	background-color:#483233;
	color:#fcfbe7;
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	font-size:14px;
	font-weight:100;
	padding-left:5px;
	padding-right:5px;
	text-decoration:none;
}
a.top-nav-selected:hover {
	color:#9cbced;
	font-size: 14px;
	font-weight:100;
	padding-left:5px;
	padding-right:5px;
	text-decoration:none;
}*/
	
#content {
	margin: auto;
	width: 800px;
	height: auto;
	background-image:url(../../images/content_spacer_02.jpg);
	background-repeat: repeat-y;
	float: left;
	padding:0px;
	margin:0px;
}

#aboutjeni{
	padding: 20px;
	color:#483233;
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	font-size: 14px;
	text-align:center;
	
}


h1{
	color: #483233;
}

h2{
	color:#483233;
}

p{
	color:483233;
}

#footer{
	margin: auto;
	width: 800px;
	height: 14px;
	background-color: #483233;
	float:left;
	text-align: center;
	font-size: 0.5em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-top: 6px;
}

h1{
	color:fcfbe7;
}
.style1{
	color: #fcfbe7;

}
.style2 {
	color: #483233;
}
.style3{
	color: #483233;
	font-size: 25px;
	font-weight: bold;
}
#ul{
	text-decoration:none;
}

/*
 
Correctly handle PNG transparency in Win IE 5.5 & 6.
http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.

Use in <HEAD> with DEFER keyword wrapped in conditional comments:
[if lt IE 7]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]

*/

var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

if ((version >= 5.5) && (document.body.filters)) 
{
   for(var i=0; i<document.images.length; i++)
   {
      var img = document.images[i]
      var imgName = img.src.toUpperCase()
      if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
      {
         var imgID = (img.id) ? "id='" + img.id + "' " : ""
         var imgClass = (img.className) ? "class='" + img.className + "' " : ""
         var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
         var imgStyle = "display:inline-block;" + img.style.cssText 
         if (img.align == "left") imgStyle = "float:left;" + imgStyle
         if (img.align == "right") imgStyle = "float:right;" + imgStyle
         if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
         var strNewHTML = "<span " + imgID + imgClass + imgTitle
         + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
         + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
         + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
         img.outerHTML = strNewHTML
         i = i-1
      }
   
