/* Root = Vertical, Secondary = Vertical */
ul#navmenu,
ul#navmenu li,
ul#navmenu ul {
  margin: 0;
  margin-left: 2px;
  border: 0 none;
  padding: 0;
  width: 211px; /*For KHTML*/
  list-style: none;
}
#orta1 {
	background-color: #e3f9ff;
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
	padding-top: 5px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #900;
	text-align: justify;
	padding-left: 5px;
	padding-bottom: 5px;
	width: 700px;
}
#orta2 {
	background-color: #e3f9ff;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 5px;
	margin-top: 5px;
	text-align: justify;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #333;
	padding: 10px;
}
#orta4 {
	background-color: #E3F9FF;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	text-align: left;
}




ul#navmenu:after /*From IE 7 lack of compliance*/{
  clear: both;
  display: block;
  font: 2px/0px serif;
  content: ".";
  height: 0;
  visibility: hidden;
}

ul#navmenu li {
  float: left; /*For IE 7 lack of compliance*/
  display: block !important; /*For GOOD browsers*/
  position: relative;
}

/* Root Menu */
ul#navmenu a {
  border: 1px solid #ffffff;
  border-right-color: #90B4CF;
  border-bottom-color: #90B4CF;
  padding: 0 6px;
  display: block;
  background: #2dcaf7;
  color: #ffffff;
  text-align:left;
  font: bold 14px/30px Verdana, Arial, Helvetica, sans-serif;
  text-decoration: none;
  height: auto !important;
  height: 1%; /*For IE*/
}

/* Root Menu Hover Persistence */
ul#navmenu a:hover,
ul#navmenu li:hover a,
ul#navmenu li.iehover a {
  background: #f8531a;
  color: #ffffff;
}

/* 2nd Menu */
ul#navmenu li:hover li a,
ul#navmenu li.iehover li a {
  background: #2dcaf7;
  color: #ffffff;
}

/* 2nd Menu Hover Persistence */
ul#navmenu li:hover li a:hover,
ul#navmenu li:hover li:hover a,
ul#navmenu li.iehover li a:hover,
ul#navmenu li.iehover li.iehover a {
  background: #f8531a;
  color: #ffffff;
}

/* 3rd Menu */
ul#navmenu li:hover li:hover li a,
ul#navmenu li.iehover li.iehover li a {
  background: #90B4CF;
  color: #ffffff;
}

/* 3rd Menu Hover Persistence */
ul#navmenu li:hover li:hover li a:hover,
ul#navmenu li:hover li:hover li:hover a,
ul#navmenu li.iehover li.iehover li a:hover,
ul#navmenu li.iehover li.iehover li.iehover a {
  background: #9EC630;
  color: #ffffff;
}

/* 4th Menu */
ul#navmenu li:hover li:hover li:hover li a,
ul#navmenu li.iehover li.iehover li.iehover li a {
  background: #90B4CF;
  color: #ffffff;
}

/* 4th Menu Hover */
ul#navmenu li:hover li:hover li:hover li a:hover,
ul#navmenu li.iehover li.iehover li.iehover li a:hover {
  background: #9EC630;
  color: #ffffff;
}
#sol2 {
	background-color: #FFF;
	padding-top: 5px;
	padding-left: 5px;
}


ul#navmenu ul,
ul#navmenu ul ul,
ul#navmenu ul ul ul {
  display: none;
  position: absolute;
  top: 0;
  left: 209px;
}

/* Do Not Move - Must Come Before display:block for Gecko */
ul#navmenu li:hover ul ul,
ul#navmenu li:hover ul ul ul,
ul#navmenu li.iehover ul ul,
ul#navmenu li.iehover ul ul ul {
  display: none;
}

ul#navmenu li:hover ul,
ul#navmenu ul li:hover ul,
ul#navmenu ul ul li:hover ul,
ul#navmenu li.iehover ul,
ul#navmenu ul li.iehover ul,
ul#navmenu ul ul li.iehover ul {
  display: block;
}

li:hover ul{ display: block; }
li:hover ul, li.over ul{ display: block; }

startList = function() { 
if (document.all&&document.getElementById) { 
navRoot = document.getElementById("navmenu"); 
for (i=0; i<navRoot.childNodes.length; i++) { 
node = navRoot.childNodes[i]; 
if (node.nodeName=="li") { 
node.onmouseover=function() { 
this.className+=" over"; 
} 
node.onmouseout=function() { 
this.className=this.className.replace(" over", ""); 
} 
} 
} 
} 
} 
window.onload=startList; 



#nav li.off:hover ul, #nav li.over ul { 
  display: block;
  z-index: 6000;
}

#nav li.off a:hover,
#nav li:hover a,
#nav li.over a {
  background: #29497b;
  color: #f90;
}

navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);

/*preload classes*/
.svw {width: 50px; height: 20px; background: #fff;}
.svw ul {position: relative; left: -999em;}

/*core classes*/
.stripViewer { 
position: relative;
overflow: hidden; 
border: 5px solid #ff0000;  
margin: 0 0 1px 0;
}
.stripViewer ul { /* this is your UL of images */
margin: 0;
padding: 0;
position: relative;
left: 0;
top: 0;
width: 1%;
list-style-type: none;
}
.stripViewer ul li { 
float:left;
}
.stripTransmitter {
overflow: auto;
width: 1%;
}
.stripTransmitter ul {
margin: 0;
padding: 0;
position: relative;
list-style-type: none;
}
.stripTransmitter ul li{
width: 20px;
float:left;
margin: 0 1px 1px 0;
}
.stripTransmitter a{
font: bold 10px Verdana, Arial;
text-align: left;
line-height: 22px;
background: #ff0000;
color: #fff;
text-decoration: none;
display: block;
}
.stripTransmitter a:hover, a.current{
background: #fff;
color: #ff0000;
}

/*tooltips formatting*/
.tooltip
{
padding: 0.5em;
background: #fff;
color: #000;
border: 5px solid #dedede;
}
#icerik_alt {
	margin-right: 5px;
	margin-left: 5px;
	background-color: #ADC3D6;
	margin-bottom: 10px;
	height: 20px;
}
#18 {
	text-align: center;
}
#icerik_alt_ust {
	background-color: #C8C8C8;
	height: 20px;
	margin-left: 5px;
	margin-right: 5px;
}
#sol_5 {
	height: 150px;
	width: 180px;
	margin-right: 35px;
	margin-left: 35px;
}
#sol_6 {
	height: 100px;
}
#sol_7 {
}
#sol3 {
	width: 220px;
	padding-left: 5px;
	padding-top: 5px;
}
#sol4 {
	height: 150px;
	width: 180px;
	padding-right: 15px;
	padding-left: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
}
#sol7 {
	background-color: #E3F9FF;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	height: 60px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 70px;
}

#orta3 {
	padding-left: 10px;
	height: 46px;
	padding-bottom: 5px;
	border:none;
	a {border:none;}
}
#sag_orta1 {
	padding-top: 15px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-color: #E3F9FF;
	height: 200px;
	width: 335px;
	text-align: left;
	padding-right: 10px;
}
#sag_orta2 {
	text-align: left;
	padding-left: 20px;
	color: #000;
}
#ara {
	height: 27px;
	width: 220px;
	text-align: center;
	vertical-align: middle;
	background-color: #F8F8F8;
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: url(images/but_arka.png);
	z-index: auto;
}
#en_alt1 {
	height: 19px;
	text-align: left;
	padding-left: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
}
#en_alt2 {
	height: 19px;
	text-align: right;
	padding-right: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
}
#en_ust {
	background-color: #e3f9ff;
	margin-top: 5px;
	margin-left: 10px;
	height: 23px;
	text-align: left;
	padding-left: 5px;
	padding-right: 10px;
	width: 690px;
	padding-top: 2px;
}
#en_ust2 {
	background-color: #e3f9ff;
	margin-top: 5px;
	margin-right: 10px;
	height: 18px;
	padding-top: 2px;
	text-align: right;
	padding-right: 5px;
}
#orta_ilk {
	height: 20px;
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
	background-color: #e3f9ff;
	padding-top: 5px;
}
#orta5 {
	background-color: #E3F9FF;
	text-align: left;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
}
#orta6 {
	background-color: #E3F9FF;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
}
#orta_link1 {
	text-align: left;
	padding: 15px;
	height: 400px;
}
#sayac {
	background-color: #E3F9FF;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	padding: 15px;
}
#orta_link2 {
	padding: 15px;
	text-align: left;
	height: 400px;
}
a {border:none;}
#ortaa {
	background-color: #E3F9FF;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
}
#ortaa5 {
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 10px;
	margin-right: 10px;
	background-color: #E3F9FF;
	text-align: left;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}
#ortaa1 {
	height: 300px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-color: #E3F9FF;
	float: left;
	text-align: left;
	width: 670px;
}
#ortaa2 {
	float: right;
	height: 250px;
	background-color: #E3F9FF;
	padding-top: 15px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-align: left;
	width: 180px;
}
#temizlik {
	clear: both;
}
#soll5 {
}
#orta_ilet {
	margin-right: 10px;
	margin-left: 10px;
	background-color: #E3F9FF;
	margin-top: 5px;
	padding-top: 5px;
}
#sag_ortaa {
	height: 200px;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 15px;
	text-align: left;
}

