/* 
    Document   : top-menu-header
    Created on : May 13, 2013, 11:13:01 AM
    Author     : Dabiel
    Description:
    Purpose of the stylesheet follows.
*/

/* Reset */
.top-menu,
.top-menu ul,
.top-menu li,
.top-menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

.menu-item {
    position: absolute;
    top: 92px;
    width: 305px;
    display: none;
}

.menu-item .column1 {
    float: left;
}

.menu-item .column2 {
    float: right;
}

.menu-item .column {
    float: left;
}

.menu-item .column1 .item {
    background: none repeat scroll 0 0 #D23A73;
    border-bottom: 1px solid #9E2552;
    border-left: 1px solid #9E2552;
    border-right: 1px solid #9E2552;
    height: 39px;
    position: relative;
    text-align: center;
    width: 151px;
}

.menu-item .column2 .item {
    border-right: 1px solid #9E2552;
    border-bottom: 1px solid #9E2552;
    height: 39px;
    position: relative;
    width: 151px;
    text-align: center;
    background: #D23A73;
}

.menu-item .column .item {
    border-right: 1px solid #9E2552;
    border-bottom: 1px solid #9E2552;
    border-left: 1px solid #9E2552;
    height: 39px;
    position: relative;
    width: 151px;
    text-align: center;
    background: #D23A73;
}

.menu-item .column1 .item:hover {
    background: #8A1E46;
}

.menu-item .column2 .item:hover {
    background: #8A1E46;
}

.menu-item .column .item:hover {
    background: #8A1E46;
}

.menu-item .column1 .item:first-child {
    border-radius: 10px 0 0 0;
    border-top: 1px solid #9E2552;
}

.menu-item .column .item:first-child {
    border-radius: 10px 10px 0 0;
    border-top: 1px solid #9E2552;
}

.menu-item .column1 .item:first-child:before {
    border: solid;
    border-color: #D23A73 transparent;
    border-width: 0 10px 10px;
    bottom: 39px;
    content: "";
    left: 75%;
    position: absolute;
    z-index: 99;
    height: 15px;    
}

.menu-item .column .item:first-child:before {
    border: solid;
    border-color: #D23A73 transparent;
    border-width: 0 10px 10px;
    bottom: 39px;
    content: "";
    left: 75%;
    position: absolute;
    z-index: 99;
    height: 15px;    
}

.menu-item .column1 .item:first-child:hover:before {
    border-color: #8A1E46 transparent;
}

.menu-item .column .item:first-child:hover:before {
    border-color: #8A1E46 transparent;
}

.menu-item .column2 .item:first-child {
    border-radius: 0 10px 0 0;
    border-top: 1px solid #9E2552;
}

/*.menu-item .item:first-child a {
    padding-top: 21px;
}*/

.menu-item .column1 .item:last-child {
    border-radius: 0 0 0 10px;
    border-bottom: 1px solid #9E2552;
}

.menu-item .column .item:last-child {
    border-radius: 0 0 10px 10px;
    border-bottom: 1px solid #9E2552;
}

.menu-item .column2 .item:last-child {
    border-radius: 0 0 10px 0;
    border-bottom: 1px solid #9E2552;
}

.menu-item .item a {
    color: #FFFFFF;
    font-family: 'Arial','Alegreya SC',Georgia,serif;
    font-size: 16px;
    height: 100%;
    left: 0;
    padding-left: 10px;
    padding-top: 11px;
    position: absolute;
    text-align: left;
    width: 100%;
}

/* Menu */
/*.top-menu {	
	height: 40px;
	width: auto;

	/*background: #0058A0;
	background: -webkit-linear-gradient(top, #0058A0 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #0058A0 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #0058A0 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #0058A0 0%,#2c2d33 100%);
	background: linear-gradient(top, #0058A0 0%,#2c2d33 100%);*/

	/*-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
        
        position: relative;
        top: 4px;
}*/

.top-menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 40px;
        bottom: 5px;
}

/* Links */

.top-menu li a {
	display: block;
	padding: 0 10px;
	margin: 12px 0;
	line-height: 28px;
	text-decoration: none;
	
	/*border-left: 1px solid #393942;
	border-right: 1px solid #4f5058;*/

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 20px;

	color: #f3f3f3;
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

.top-menu li:first-child a { border-left: none; }
.top-menu li:last-child a{ border-right: none; }

.top-menu li:hover > a { color: #FCBE1E;}

/* Sub Menu */

.top-menu ul {
	position: absolute;
	top: 45px;
	left: 0;
        
        opacity: 0.8;
	
	background: #003D6B;

	-webkit-border-radius: 0 5px 5px 5px;
	-moz-border-radius: 0 5px 5px 5px;
	border-radius: 0px 5px 5px 5px;
        
	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
        
        z-index: 5;
}


/*.top-menu li:hover > ul { opacity: 1; }*/

.top-menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;
        opacity: 0.8;
        
        -webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.top-menu li:hover > ul li {
	height: 36px;
	overflow: visible;
	padding: 0;
        opacity: 1;
        border-left: 1px solid #00387D;
        border-right: 1px solid #00387D;
}

.top-menu ul li a:hover {
        background: #0080E5;
        opacity: 1;
}

.top-menu ul li a {
	width: 100px;
	padding: 4px 0 4px 40px;
	margin: 0;
        
        font-size: 14px;

	border: none;
	border-bottom: 1px solid #1C8BB9;
}

.top-menu ul li:last-child a { border: none; }

/* Icons */

/*.top-menu a.documents { background-image: url(../img/docs.png) no-repeat 6px center; }
.top-menu a.documents:hover { background-image: url(../img/docs.png) no-repeat 6px center; background: #003D6B; opacity: 0.8;}
.top-menu a.messages { background-image: url(../img/bubble.png) no-repeat 6px center; }
.top-menu a.messages:hover { background-image: url(../img/bubble.png) no-repeat 6px center; background: #003D6B; opacity: 0.8;}
.top-menu a.signout { background-image: url(../img/arrow.png) no-repeat 6px center; }
.top-menu a.signout:hover { background-image: url(../img/arrow.png) no-repeat 6px center; background: #003D6B; opacity: 0.8;}*/
