body {
	font: normal .8em/1.5em Arial, sans-serif;
	background: #ebebeb;
	color: white;
}

a {
	color: white;
}

#nav {
	width: 960px;
	margin: 0;
	padding: 0 2px 0 2px;
	line-height: 100%;
				
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	
	-webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 0px 0px rgba(0, 0, 0, .4);

	background: #7F7F7F; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7F7F7F', endColorstr='#7F7F7F'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#7F7F7F), to(#7F7F7F)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #7F7F7F,  #7F7F7F); /* for firefox 3.6+ */

	border: solid 0px #00449E;
}

#nav li {    /* li: list item : horizontal bar format*/
	margin: 0 4px;
	padding: 0 0 0 0;
	float: left;
	position: relative;
	list-style: none;

}


/* main level link */

#nav a {
	font-weight: regular;
	font-size: 18;
	color: #F8F8F8; 
	text-decoration: none;
	display: block;
	padding:  17px 0px 13px 0;
	margin: 0;
	line-height: 120%;
	
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	text-shadow: 0 0 1px rgba(0, 0, 0, .3);

}

/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: #C5E6FE; /*d1d1d1 for non-css3 browsers */
	
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#C5E6FE', endColorstr='#B7DDFF'); /* ebebeb to a1a1a1  for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#C5E6FE), to(#B7DDFF)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #C5E6FE,  #B7DDFF); /* for firefox 3.6+ */

	color: #00449E;
	border-top: solid 0 #f8f8f8;
	
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
	
	font-weight: bold;
			
}

/* sub levels link hover - drop down menu list items*/

#nav ul li:hover a, #nav li:hover li a {			/* ul: unordered list*/
	font-size: 1.2em;
	background: none;
	border: none;
	color: #404040;		/*dropdown text color  009fee*/
	font-weight: normal;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	padding: 15px 10px 15px 13px;

}

#nav ul li:nth-child(even) { background: #F2F2F2; }
#nav ul li:nth-child(odd) { background: white; }
        

#nav ul a:hover {			/*a: hyperlink*/

	background: #0099CC !important; /*#0099CC #0399d4  for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0099CC', endColorstr='#0099CC'); /* for IE (startColorstr='#0070C0', endColorstr='#00449E')*/
	background: -webkit-gradient(linear, left top, left bottom, from(#0099CC), to(#0099CC)) !important; /* for webkit browsers */
	background: -moz-linear-gradient(top,  #0099CC,  #0099CC) !important; /* for firefox 3.6+ */

	color: white !important;

    font-weight: normal;
	
	border-radius: 0.25em;
	-webkit-border-radius: 0.25em 0.25em 0.25em 0.25em;
	-moz-border-radius: 0.25em;	
	
	text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}


/* level 2 list: dropdown menunun formatı*/
#nav ul {

	background: #00B0F0; /* #ddd for non-css3 browsers DDF0FF*/
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#BFBFBF'); /*cfcfcf for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#BFBFBF)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #fff,  #BFBFBF); /* for firefox 3.6+ */

	display: none;
	margin: 0;
	padding: 2px;
	width: 320px;
	position: absolute;
	
	line-height: 120%;
	font-weight: bold;
	
	top: 200px;
	left: 0;
	border: solid 1px #7F7F7F;  /* 0070C0*/
	
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
	
	-webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0 10px 10px rgba(0, 0, 0, .5);
	box-shadow: 0 10px 10px rgba(0, 0, 0, .5);
	
	left: 0; 
	top: 40;    
	
}
/* dropdown */
#nav li:hover > ul {

	display: block;
			
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
			
}
#nav ul a {   /* 1st dropdown text */
	font-size: 1.0 em;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .9);
	font-weight: bold;
	text-align: left;
	padding:  10px 20px 10px 20px;
			
}

/* level 3+ list */

#nav ul ul {  /* 2nd dropdown format */
    width: 220px;
    position: absolute;
  
	left: 320px; /*210px*/
	top: 0;    /*-3px*/
	
}


/* rounded corners for first and last child */

#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 0.25em;
	-moz-border-radius-topleft: 0.25em;
	-webkit-border-top-right-radius: 0.25em;
	-moz-border-radius-topright: 0.25em;
}
#nav ul li:last-child > a {
	-webkit-border-top-left-radius: 0.25em;
	-moz-border-radius-topleft: 0.25em;
	-webkit-border-top-right-radius: 0.25em;
	-moz-border-radius-topright: 0.25em;
}


/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;

}
html[xmlns] #nav {
	display: block;
	
}
* html #nav {
	height: 1%;
}


ul {
    list-style-type: none;
    align: right;
    margin: 0;
    padding: 0;

}

li {
    text-align: center;
    float: left;
    margin: 0;
}

/* a'nın bir class'ı bu böylece multiple tipte hyperlink tanımlayabiliyon */

a.nav:link, a.nav:visited {
    display: block;
    width: 280px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 15px;
    font-weight: bold;
    color: gray;
    background-color: #EBEBEB;
    line-height: 120%;
    text-align: left;
    padding: 6px 2px 6px 10px;
    text-decoration: none;
    border-radius: 7px;
    border-color: gray;	
    margin: 2;
}

a.nav:hover {
    background-color: white;
    color: gray;
}

a.nav:active {
    background-color: #EBEBEB;
    font-weight: bold;
    color: #3399FF;
}

a.navshort:link, a.navshort:visited {
    display: block;
    width: 180px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 15px;
    font-weight: bold;
    color: gray;
    background-color: #EBEBEB;
    line-height: 120%;
    text-align: left;
    padding: 6px 2px 6px 10px;
    text-decoration: none;
    border-radius: 7px;
    border-color: gray;	
    margin: 2;
}

a.navshort:hover {
    background-color: white;
    color: gray;
}

a.navshort:active {
    background-color: #EBEBEB;
    font-weight: bold;
    color: #3399FF;
}

/* aşağıya doğru olanlar */

a.navitem:link, a.navitem:visited {
    display: block;
    width: 280px;
    font-family: "Arial", normal;   
    font-size: 14px;
    font-weight: normal;
    color: gray;
    background-color: #EBEBEB;
    line-height: 120%;
    text-align: left;
    padding: 6px 2px 6px 10px;
    text-decoration: none;
    border-radius: 7px;
    border-color: gray;	
    margin: 2;
}

a.navitem:hover {
    background-color: white;
    color: gray;
}

a.navitem:active {
    background-color: #EBEBEB;
    color: #3399FF;
}

a.navitemshort:link, a.navitemshort:visited {
    display: block;
    width: 180px;
    font-family: "Arial", normal;   
    font-size: 14px;
    font-weight: normal;
    color: gray;
    background-color: #EBEBEB;
    line-height: 120%;
    text-align: left;
    padding: 6px 2px 6px 10px;
    text-decoration: none;
    border-radius: 7px;
    border-color: gray;	
    margin: 2;
}

a.navitemshort:hover {
    background-color: white;
    color: gray;
}

a.navitemshort:active {
    background-color: #EBEBEB;
    color: #3399FF;
}



a.side:link, a.side:visited {
    display: block;
    width: 150px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 14px;
	font-weight: normal;
    color: #0099CC;
    background-color: #F0F7FA;
    line-height: 140%;
    text-align: center;
    padding: 9px 8px 9px 8px;
    text-decoration: none;
    border-radius: 5px;
    border-color: gray;	
    margin: 0;
}

a.side:hover {
    background-color: #0099CC;
    color: white;
}

a.side:active {
    background-color: #0099CC;
    font-weight: normal;
    color: white;
}

/* yatayda giden menü için */

a.sidetop:link, a.sidetop:visited {
    display: block;
    width: 220px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 15.5px;
	font-weight: bold;
    color: #0099CC;
    background-color: #DBE9F7;
    line-height: 120%;
    text-align: center;
    padding: 9px 8px 9px 8px;
    text-decoration: none;
    border-radius: 5px;
    border-color: gray;	
    margin: 0;
}

a.sidetop:hover {
    background-color: #0099CC;
    color: white;
}

a.sidetop:active {
    background-color: #0099CC;
    font-weight: bold;
    color: white;
}

/* xx */

a.training:link, a.training:visited {
    display: block;
    width: 170px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 14px;
	font-weight: normal;
    color: #0099CC;
    background-color: #F0F7FA;
    line-height: 140%;
    text-align: center;
    padding: 12px 8px 12px 8px;
    text-decoration: none;
    border-radius: 5px;
    border-color: white;	
    margin: 0;
}

a.training:hover {
    background-color: #0099CC;
    color: white;
}

a.training:active {
    background-color: #0099CC;
    font-weight: normal;
    color: white;
}


a.short:link, a.short:visited {
    display: block;
    width: 80px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 15px;
	font-weight: normal;
    color: #0099CC;
    background-color: #F0F7FA;     /* #0099CC  #DBE9F7 #00449E*/
    line-height: 120%;
    text-align: center;
    padding: 4px 2px 4px 2px;
    text-decoration: none;
    border-radius: 3px;
    border-color: #00449E;	
    margin: 0;
}

a.short:hover {
    background-color: #0099CC;
    color: white;
}

a.short:active {
    background-color: #0099CC;
    font-weight: normal;
    color: white;
}


a.comment:link, a.comment:visited {
    display: block;
    width:320px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 16px;
	font-weight: normal;
    color: #0099CC;
    background-color: #F0F7FA;
    line-height: 120%;
    text-align: left;
    padding: 15px 15px 15px 15px;
    text-decoration: none;
    border-radius: 5px;
    border-color: white;	
    margin: 0;
}

a.comment:hover {
    background-color: #0099CC;
    color: white;
}

a.comment:active {
    font-weight: normal;
    color: white;
}

a.comment2:link, a.comment2:visited {
    display: block;
    width:200px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 16px;
	font-weight: normal;
    color: #0099CC;
    background-color: #F0F7FA;
    line-height: 100%;
    text-align: left;
    padding: 12px 15px 12px 15px;
    text-decoration: none;
    border-radius: 5px;
    border-color: white;	
    margin: 0;
}

a.comment2:hover {
    background-color: #0099CC;
    color: white;
}

a.comment2:active {
    font-weight: normal;
    color: white;
}

a.corp:link, a.corp:visited {
    display: block;
    width: 150px;
    font-family: "Arial", normal;   /* italic / oblique */
    font-size: 16px;
	font-weight: normal;
    color: #0099CC;
    background-color: #F0F7FA;
    line-height: 140%;
    text-align: center;
    padding: 2px 2px 1px 2px;
    text-decoration: none;
    border-radius: 5px;
    border-color: gray;	
    margin: 0;
}

a.corp:hover {
    background-color: #0099CC;
    color: white;
}

a.corp:active {
    background-color: white;
    font-weight: normal;
    color: white;
}