/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want!
All you have to do is ensure the script has the correct CSS property name
(like 'visibility' or 'display') that changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/



/* VERTICAL FREESTYLE MENU LAYOUT */



/* Sol menu genişliği */
.vmenulist, .vmenulist ul {
 margin: 0;
 padding: 0;
 width: 196px;
 list-style: none;
 margin-left: 1px;

}

/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.vmenulist ul {
 display: none;
 position: absolute;
 top: -1px;
 left: 190px; /* açılan menunun pozisyonu */
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.vmenulist li {
	position: relative;
	border: 1px solid #c0c0c0;
	margin-bottom: -1px;
	font-family: Tahoma, Verdana, Helvetica; 
	font-size: 10pt;
	font-weight:bold;
	color: #ffffff;
	background: #69C5D2;
}
.vmenulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.vmenulist a {
 display: block;
 padding: 3px;
 text-decoration: none;
 color:#ffffff;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.vmenulist a:hover
{
	color: #363636;
	text-decoration: none;
	background-color: #98D8E0; /* menü üzerie gelince alacağı renk */
} 
.vmenulist a.highlighted:hover
{
	background-color: #98D8E0;
	color: #363636;
	text-decoration: none;

}
.vmenulist a:focus {
	color: #363636;
	text-decoration: none;

}
.vmenulist a.highlighted {
	color: #363636;
	text-decoration: none;
	background-color: #98D8E0;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .vmenulist a#xyz {
      background-image: url(out.gif);
    }
    .vmenulist a#xyz:hover, .vmenulist a.highlighted#xyz, .vmenulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.vmenulist a .subind {
 float: right;
 color:#098A9B;
 font-family: Times New Roman;
 font-size: 10pt; 
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .vmenulist li {
 float: left;
 width: 100%;
}

* html .vmenulist li {
 float: left;
 height: 1%;
}
* html .vmenulist a {
 height: 1%;
}
/* End Hacks */

/* *************************************************************        YATAY MENU (UST) AYARLARI */


/* All <ul> tags in the menu including the first level */
.hmenulist, .hmenulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.hmenulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width: 200px;
}

/* Second and third etc. level submenus - position across from parent instead */
.hmenulist ul ul {
 top: -1px; margin-top: 0;
 left: 200px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.hmenulist li {
 float: left;
 display: block;
 position: relative;
background: #128E65;
 /*filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#1FAF7F, EndColorStr=#108860);*/
 border: 0px solid #ffffff; /* border renk ve kalınlık */
 margin-right: -1px;
 font-family: Tahoma, Verdana, Helvetica; 
 font-size: 10pt;
 font-weight:bold;
 color:#ffffff;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.hmenulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}
.hmenulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.hmenulist a {
 display: block;
 padding: 3px;
 color:#ffffff;
 text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.hmenulist a:hover
{
	color: #ffffff;
	text-decoration: none;
	background-color: #18C58C;
} 
.hmenulist a.highlighted:hover{
	color: #ffffff;
	text-decoration: none;
background-color: #18C58C;
}
 .hmenulist a:focus {
	color: #ffffff;
	text-decoration: none;
background-color: #18C58C;
}
.hmenulist a.highlighted {
	color: #ffffff;
	text-decoration: none;
	background-color: #18C58C;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .hmenulist a#xyz {
      background-image: url(out.gif);
    }
    .hmenulist a#xyz:hover, .hmenulist a.highlighted#xyz, .hmenulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.hmenulist a .subind {
 display: none;
}
.hmenulist ul a .subind {
 display: block;
 float: right;
 color:#098A9B;
 font-family: Times New Roman; 
 font-size: 10pt;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.hmenulist a {
 float: left;
}
.hmenulist ul a {
 float: none;
}
/* \*/
.hmenulist a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .hmenulist ul li {
 float: left;
 width: 150%;
}

* html .hmenulist ul li {
 float: left;
 height: 1%;
}
* html .hmenulist ul a {
 height: 1%;
}
/* End Hacks */