/*

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 you want it to change.

One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.

Otherwise, even if you're not very experienced at CSS, you can just go through and change
the #RGB border/background colours where suitable to customise for your site!

*/



/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul
{
	margin: 5 5px 5 5;
	padding: 0;
	list-style: none;
	font-family: arial;
	font-weight: bold;
	font-size: 8pt;
	display: table-footer-group;
	float: none;
	white-space: nowrap;
}

.menulist
{
	margin-left: 30px;
	width: 602px;
	height: 30px;
}

/*sub menu*/
.menulist ul
{
	margin-right: 0px;
	border: 0px solid red;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul
{
	/* 	visibility: hidden; 	position: absolute; 	top: 1.9em;  	left: 0px; 	right: -20px; 	width: 150px; 	display: block; 	border:solid 0px red; 	*/
	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: 150px;
}
/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */

/*
 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.
*/
.menulist li
{
	float: left;
	position: relative; /*background: #FED;*/ /* Menu Border */
	border: 0px solid #330; /* 	width: 90px; 	padding-right: 5px;*/
	text-align: center;
	border: 0px solid red;
    top: 0px;
    left: 0px;
}



/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li
{
	/*margin-right: 0; 	margin-bottom: -1px; 	background-color:#FEF5D9; 	width: 155px; 	border: 1px solid #00372A; 	*/
	float: none;
	padding-bottom: 2;
	padding-right: 0;
	border-top: #d6c89c 1px solid;
	border-left: #d6c89c 1px solid;
	border-right: #d6c89c 1px solid;
	width: 155px;
	color: #00372a;
	font-family: Verdana;
	background-color: #f1ead4;
	height: 17px;
	font-size: 10px;
}

.menulist ul > li:last-child
{
	margin-bottom: 1px;
}

A.topmenu:link
{
	display: block;
	padding: 3px; /*font-weight: bold;*/
	font-size: 11px;
	color: #CCBC8E;
	font-family: Verdana;

	text-decoration: none;
}

A.topmenu:visited, A.topmenu:hover
{
	color: #CCBC8E;
	text-decoration: none;
}

/* Links inside the menu */
.menulist a
{
	display: block;
	padding: 3px; /*font-weight: bold;*/
	font-size: 11px;
	color: #66531c;
	font-family: Verdana;
	text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus
{
	color: #66531C;
	text-decoration: none;
}

.menulist a.highlighted
{
	color: #988344;
	text-decoration: none;
}




/*
 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:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist a .subind
{
	display: none;
}

.menulist ul a .subind
{
	display: block;
	float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a
{
	float: left;
}

.menulist ul a
{
	float: none;
}

/* \*/
.menulist a
{
	float: none;
}

/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist ul li
{
	float: left;
	height: 1%;
}

* html .menulist ul a
{
	height: 1%;
}

/* End Hack */

.SubMenuItems, A.SubMenuItems:link, A.SubMenuItems:visited
{
	color: #00372a;
	font-family: Verdana;
	font-size: 10;
	text-decoration: none;
	padding-right: 10px;
	text-align: left;
	font-weight: normal;
}

A.SubMenuItems:hover
{
	color: #A78E43; /* background-color:#93BDE3;*/
	background-repeat: repeat;
}

.NowIn
{
	color: #FFF;
	background-color: #3C2E82;
}

a.selected_channel:Link, a.selected_channel:Visited
{
	
	color: #988344;
	font-family: Verdana;
	font-size: 11px;
	text-decoration: none;
	border-bottom-color: #988345;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	display: block;
	padding: 2px;
	
}

.menulist a.selected_channel:hover
{
	color: #988344;
	font-family: Verdana;
	font-size: 11px;
	text-decoration: none;
	border-bottom-color: #988345;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	display: block;
	padding: 2px;

}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
* + html .menulist ul li
{
	float: left;
	height: 1%;
}

* + html .menulist ul a
{
	height: 1%;
}

* html .menulist ul li
{
	float: left;
	height: 1%;
}


* html .menulist ul a
{
	height: 1%;
}

/* End Hacks */
.MenuMainItem
{
	padding-right:10px;
}

