/*                                                                          */
/* NOTICE:                                                                  */
/*    To support more than one-single FlexMenu server control per page     */
/*    the CSS files' name is used as a class and is prefixed to all of      */
/*    the selectors (without the path or extension).                        */
/*                                                                          */
/*    The server control will automatically wrap the entire FlexMenu        */
/*    within a div-tag, whose class-name will be derived from the filename. */
/*                                                                          */
/*    *** THESE MUST BE ENTIRELY IN LOWER CASE! ***                         */
/*    The server control will cast these filenames to lower before use!     */
/*                                                                          */
/*    Only the base ASCII character set is supported.                       */
/*                                                                          */
/*    Also, spaces and periods before the extension will be converted       */
/*    into underscores, as these are not permitted within the selector.     */
/*                                                                          */

.tcgflexmenu .ekflexmenu 
{
	padding: 0px;
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
	position: relative;
    color: white;
    font-size: 0.8em;
    font-weight:bold;
    font-family: verdana,arial;
    white-space: nowrap;
    text-decoration:none;
}

.tcgflexmenu a
{
	text-decoration: none;
	color:white;
	cursor:default;
}

.tcgflexmenu a:hover
{
	text-decoration: none;
    color:#FFA200;
    cursor:pointer;
}

.tcgflexmenu .ekflexmenu_submenu,
.tcgflexmenu .ekflexmenu_submenu_hover,
.tcgflexmenu .ekflexmenu_submenu_parent,
.tcgflexmenu .ekflexmenu_submenu_parent_hover
{
	top: 0px;
	left: 0px;
	height: auto;
}

.tcgflexmenu UL
{
	list-style: none;
	margin: 0px;
	padding: 5px 0px 0px 0px;
}

.tcgflexmenu LI
{
	float: left;
	display: inline;
	position: relative;
	margin: 0px;
	padding: 0px 50px 2px 15px;
}

 /* For IE6 only */
* html .tcgflexmenu LI
{
	padding: 0px 15px 2px 20px;
	text-align:center;
	width:130px;
}

.tcgflexmenu .ekflexmenu_startlevel li
{
	text-align:left;
    padding:0px;
}

.tcgflexmenu .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items li
{
	padding: 0px;
    border-left:solid 1px #555555;
    border-right:solid 1px #555555;
    border-bottom:solid 1px #555555;
	background-color: rgb(156,33,38);
	width: 180px;
    font-size: 0.9em;
}

.tcgflexmenu .ekflexmenu_submenu_items 
{
	height:auto;
	margin-left: 0px;
}

.tcgflexmenu .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
	position: relative;
	left: 0px;
	top: 0px;
	float: left;
}
.tcgflexmenu .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	left: 5px;
	top: 100%;
	float: none;
	width: 120px; /* For Chrome */
}

.tcgflexmenu .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items
{
	position: absolute;
	left: 100%;
	top: 0px;
}

.tcgflexmenu .ekflexmenu .ekflexmenu_submenu_items_hidden 
{
	display: none;
}

.tcgflexmenu .ekflexmenu_button
{
    display: block;
    padding: 0px;
    font-weight: bold;
    text-align:center;
    width: 100%;
}
.tcgflexmenu .ekflexmenu_button_hover
{
    display: block;
    padding: 0px;
    font-weight: bold;
    text-align:center;
    width: 100%;
}
.tcgflexmenu .ekflexmenu_button_selected
{
    display: block;
    padding: 0px;
    font-weight: bold;
    text-align:center;
    width: 100%;
    text-decoration: none;
}
.tcgflexmenu .ekflexmenu_button_selected_hover
{
    display: block;
    padding: 0px;
    font-weight: bold;
    text-align:center;
    width: 100%;
    text-decoration: none;
}

.tcgflexmenu img 
{
	border-width: 0px;
}

.tcgflexmenu .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items a
{
    background: rgb(156,33,38);
    padding:2px 0px 2px 0px;
}

.tcgflexmenu a.ekflexmenu_link, 
.tcgflexmenu a.ekflexmenu_link:link, 
.tcgflexmenu a.ekflexmenu_link:visited {
    text-indent: 10px;
    text-decoration: none;
    display: block;
    width: 100%;
    white-space: normal;
}

.tcgflexmenu a.ekflexmenu_link:hover, 
.tcgflexmenu a.ekflexmenu_link:active, 
.tcgflexmenu a.ekflexmenu_link:focus  {
    text-indent: 10px;
    text-decoration: none;
    border-color: rgb(181, 166, 132); 
	display: block; 
	width: 100%;
    white-space: normal;
}

.tcgflexmenu a.ekflexmenu_link_selected {
    text-indent: 10px;
    border-color : rgb(206, 190, 140); 
	display: block; 
	width: 100%;
    white-space: normal;
}
.tcgflexmenu a.ekflexmenu_link_selected:hover {
    text-indent: 10px;
    border-color : rgb(161, 141, 112);
	display: block; 
	width: 100%;
    white-space: normal;
}