﻿/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/basic_dd.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu ul
{
    list-style-type:none;
    padding:0;
    margin:0;   
}
/* Add white border to left and right */
.menu ul ul li
{
    border-left-style:solid;
    border-left-color:White;
    border-left-width:thin;
    border-right-style:solid;
    border-right-color:White;
    border-right-width:thin; 
}
/* make the top level links horizontal and position relative
   so that we can position the sub level */
.menu li
{
    float:right;
    position:relative;
    z-index:100;
}

/* use the table to position the dropdown list */
.menu table
{
    position:absolute;
    border-collapse:collapse;
    z-index:80;
    left:-1px;
    top:25px;
}
/* style all the links */
.menu a, .menu :visited
{
    display:block;
    font-size:12px;
    font-family:Tahoma;
    font-weight:bold;
    width:149px;
    padding:5px 5px;
    text-decoration:none;
    margin-right:0px;
}
/* style the links hover */
.menu ul :hover
{
    visibility:visible;
}
/* hide the sub level links */
.menu ul ul
{
    visibility:hidden;
    position:absolute;
    width:149px;
    height:0;
    text-align:left;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul, .menu ul a:hover ul
{
    visibility:visible;
}

/***********************************
  Add Dark Color to selected link
***********************************/
#AboutUs ul :hover
{
   /* Dark Gray RGB: 129 129 129 */
   background:#818181;
}
#CabinetLine ul :hover
{
   /* Dark Green RGB: 81 122 71 */
   background:#517A47;
}
#HotelLine ul :hover
{
    /* Dark Blue RGB: 0 74 128 */
    background-color:#004A80;
}

/***********************************
         The Main links
***********************************/
.clTop
{
        /* Default Page */
    /* Dark Brown RGB: 140 98 54 */
    background-color:#8C6236;
    
    /* Change font color to white */
    color:White;
    /* Add border */
    border: White solid thin;
    /* Get rid of hyperlink underline */
    text-decoration: none;
    /* Center */
    text-align: center;
}
/***********************************
         Depending on Mode
        (see MasterPage.vb),
        .clTop changes color 
***********************************/
/* Customer Info page */
.Mode1 .clTop
{
    /* Dark Gray RGB: 129 129 129 */
    background-color:#818181;
}
/* Cabinet Line page */
.Mode2 .clTop
{
    /* Dark Green RGB: 81 122 71 */
    background-color:#517A47;
}
/* Hotel Line page */
.Mode3 .clTop
{
    /* Dark Blue RGB: 0 74 128 */
    background-color:#004A80;
}

/***********************************
         The hover links
***********************************/
a.clAboutUs
{
    /* Light Gray RGB: 205 205 205*/
    background-color:#CDCDCD;
    /* Change font color to white */
    color:White;
    /* Get rid of hyperlink underline */
    text-decoration: none;
}
a.clCabinetLine
{
    /* Light Green RGB: 163 211 156 */
    background-color:#A3D39C;
    /* Change font color to white */
    color:White;
    /* Get rid of hyperlink underline */
    text-decoration: none;
}
a.clHotelLine
{
    /* Light Blue RGB: 125 167 217 */
    background-color:#7DA7D9;
    /* Change font color to white */
    color:White;
    /* Get rid of hyperlink underline */
    text-decoration: none;
}
/***********************************
         Business Partners
***********************************/
/* Business Partners defined here */
/* Default */
a.clDealerPortal
{
    /* Dark Brown RGB: 140 98 54 */
    background-color:#8C6236;
    /* Change font color to white */
    color:White;
    /* Add border */
    border: White solid thin;
    /* Get rid of hyperlink underline */
    text-decoration: none;
    /* Font */
    font-size:12px;
    font-family:Tahoma;
    font-weight:bold;
    /* Display */
    display:block;
    width:149px;
    padding:5px 5px;
    margin-right:0px;
}
/* Customer Info page */
.Mode1 .clDealerPortal
{
    /* Dark Gray RGB: 129 129 129 */
    background-color:#818181;
}
/* Cabinet Line page */
.Mode2 .clDealerPortal
{
    /* Dark Green RGB: 81 122 71 */
    background-color:#517A47;
}
/* Hotel Line page */
.Mode3 .clDealerPortal
{
    /* Dark Blue RGB: 0 74 128 */
    background-color:#004A80;
}