﻿

span.cmsedit
{
    display: block;
    background-color: White;
    border: 1px solid #aaa;
    padding: 4px;
}

span.cmsedit a
{
    font-weight: bold;
}

.userTools
{
    height: 46px;
    background-image: url(/cms/images/cms_usertools_bg.png);
    background-repeat: repeat-x;
    padding: 4px;
    background-color: White;
    font-size: 13px;
    background-color: Transparent;
}

.username
{
    font-weight: bold;
}

.newPageBtn
{
    margin-left: 20px;
    margin-right: 20px;
}




/* remove the list style */
ul.nav
{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
ul.nav li
{
    float: left;
    display: block;
    width: 100px;
    background: #ccc;
    position: relative;
    z-index: 500;
    margin: 0 1px;
}

/* this is the parent menu */
ul.nav li a
{
    display: block;
    font-weight: 700;
    height: 23px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    color: #333;
}

ul.nav li a:hover
{
    color: #fff;
}

/* you can make a different style for default selected value */
ul.nav a.selected
{
    color: #f00;
}

/* submenu, it's hidden by default */
ul.nav ul
{
    position: absolute;
    left: 0;
    display: none;
    margin: 0 0 0 -1px;
    padding: 0;
    list-style: none;
}

ul.nav ul li
{
    width: 100px;
    float: left;
    border-top: 1px solid #fff;
}

/* display block will make the link fill the whole area of LI */
ul.nav ul a
{
    display: block;
    height: 15px;
    padding: 8px 5px;
    color: #666;
}

ul.nav ul a:hover
{
    text-decoration: underline;
}

/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html ul.nav ul
{
    margin: 0 0 0 -2px;
}


