/* HORIZONTAL FREESTYLE MENU LAYOUT *//* All <ul> tags in the menu including the first level */.menulist, .menulist  ul {div style: center;/*  margin: 0; */ padding: 0; list-style: none; position:absolute;/*	left:50%; */	width:950px;	margin-left:0px;       margin-right:0px;}/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */.menulist ul { display: none; position: absolute; top: 1.0em; margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */ width: 160px;	left:50%;	width:160px;	margin-left:-60px}/* Second and third etc. level submenus - position across from parent instead */.menulist ul ul { top: -1px; margin-top: 0; left: 148px;}/* Kaikki valikkokohteet (<li> tagit). 'float: left' suuntaa ne vaakasuoraan ja ne on sijoitettu suhteessa oikein alivalikkoon. Myös niillä on peittävät rajat.*/.menulist li { float: left; display: block; color: #000000; position: relative; background: #8286EA; width:135px; border: 0px solid #330; margin-right: -1px;}/* Kohteet alivalikossa - syrjäyttää ylapuoliset float/border/margin */.menulist ul li { float: none; margin: 0; margin-bottom: -1px;}.menulist ul>li:last-child { margin-bottom: 1px; /* Mozilla fix */}/* Valikon linkit */.menulist a { display: block; padding: 3px; padding-left: 5px; color: #000000; text-decoration: none;}/* Listakohteet: 'hover' is mouseover, 'highlighted' ovat emokohteet nakyvaan valikkoon */.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus { color: #000000; background-color: #e0eef9; text-decoration: none;}.menulist a.highlighted { color: #000000; background-color: #e0eef9; text-decoration: none;}/* Jos haluat kohdekohtaisen taustakuvan valikkokohteille: 1) Käytä yksilollista ID:ta jokaiseen valikon linkkiin, kuten <a id="xyz" href="#"> 2) Kopioi ja liita seuraavat rivit jokaiseen linkkiin, johon haluat kuvan    .menulist a#xyz {      background-image: url(out.gif);    }    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {     background-image: url(over.gif);    }*//* Vain alivalikon muotoilun ilmaisimet alivalikossa. */.menulist a .subind { display: none;}.menulist ul a .subind { display: block; float: right;}/* 'Escaped Comment' vaakasuoran valikon leveys IE5/Mac */.menulist a { float: left;}.menulist ul a { float: none;}/* \*/.menulist 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 .menulist ul li { float: left; width: 100%;}* html .menulist ul li { float: left; height: 1%;}* html .menulist ul a { height: 1%;}/* End Hacks */
