@charset "utf-8";
::-webkit-scrollbar {
	width: 10px;
    height: 10px;
} 
::-webkit-scrollbar-track {
    background-color: #fff;
}
 
::-webkit-scrollbar-thumb {
	background-color: #BBB;
}

/* BEGIN: Stylings for the Omnibar */
.Omnibar_Wrapper {
    background-color: #283593;
    color: black;
    padding: 0;
    margin: 0px 0px 0px 0px;
	box-shadow: 0px 1px 6px #333;
    position: relative;
    z-index: 9001;
    height: 48px;
}
.Omnibar_hamburger_bars{
    position: absolute;
    top: 1px;
    left: 5px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 9999;
    padding-top: 15px;
    padding-left: 2px;
}
.Omnibar_TTLogo_Wrapper {
	position: absolute;
    top: 5px;
    text-align: left;
    left: 45px;
}
.Omnibar_TTLogo{
	height: 30px; 
	width: 30px; 
	margin-top: 5px;
}
.Omnibar_CustomerNameWrapper {
    position: absolute;
    top: 15px;
    left: 0px;
    max-width: 50%;
    color: white;
    text-align: left;
    margin: auto;
    font-size: 15px;
    padding-left: 85px;
    overflow: hidden;
    height: 36px;
}
.Omnibar_HelpIcon_wrapper{
	position: absolute;
    top: 11px;
    right: 100px;
    width: 30px;
    text-align: right;
	color: white;
}

.Omnibar_NotificationsIcon_wrapper{
	position: absolute;
    top: 11px;
    right: 70px;
    width: 30px;
    text-align: right;
	color: white;
}
.Omnibar_NotificationIcon_Counter{
    font-size: 10px;
    background-color: goldenrod;
    height: 14px;
    width: 14px;
    border-radius: 7px;
    color: black;
    position: absolute;
    top: -1px;
    left: 18px;
    text-align: center;
    line-height: 14px;
    font-weight: bold;
}
.Omnibar_9box_wrapper{
	position: absolute;
    top: 11px;
    right: 40px;
    width: 30px;
    text-align: right;
	color: white;
}
.Omnibar_Avatar_wrapper{
	position: absolute;
    top: 10px;
    right: 2px;
    width: 30px;
    text-align: right;
    color: white;
}
.Omnibar_Avatar_wrapper div{
	width: 26px;
    height: 26px;
    border-radius: 13px;
    background-color: white;
    color: black;
    text-align: center;
    font-size: 13px;
    line-height: 27px;
}
.Omnibar_NoAvatar_wrapper{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    text-align: right;
    color: white;
}
/* END: Stylings for the Omnibar */

/* BEGIN: Stylings for the Omnibar's Nav menu */
.MEMobileRelatedHelpLink{
	color:blue;
	text-decoration:underline;
	cursor:pointer;
}
.MEMainNav_Menu_Contents{
    transition-duration: 0.5s;
    width: 0px;
    position: absolute;
    top: 0px;
    text-align: left;
    background-color: white;
    overflow-y: scroll;
    z-index: 1000;
	padding-left:6px;
	padding-right:10px;
	height:100%;
	box-shadow: 0px 1px 6px black;	
}

.MEMainNav_SlideMenu_Wrapper{
	position:absolute;
	top:48px;
	left:-400px;
	width:280px;
	transition: all .5s;
	z-index: 9003;
	bottom:0px;
}

.MEMainNav_Title {
    font-style: italic;
    font-size: 12px;
    font-weight: bold;
    color: gray;
    margin-top: 10px;
    border-top: 1px solid silver;
    padding-top: 5px;
    text-align: center;
}

.MEMainNav_Title div {
    /* color: blue; */
    position: relative;
    top: -13px;
    background: white;
    width: 35px;
    margin: auto;
    font-size: 12px;
}

.MEMainNav_Contents_Button {
	position:relative;
    margin: 1px 0px 1px 0px;
    width: 100%;
    padding: 5px 5px 5px 30px;
    display: block;
    background-color: white;
    color: #444;
    border: 0px;
    height:32px;
    cursor: pointer;
    text-align:left;
    font-weight:bold;
    font-size: 16px;
	border-radius: 4px;
}
.MEMainNav_SubMenuContainer{
	transition: all .3s;
	padding-left: 10px;
	/*background-color: #ddd;*/
}
.MEMainNav_SubMenuExpander {
	position:relative;
    margin: 1px 0px 1px 0px;
    /*width: 100%;*/
    padding: 5px 5px 5px 30px;
    display: block;
    background-color: white;
    color: #444;
    border: 0px;
    height: 22px;
    cursor: pointer;
    text-align:left;
    font-weight:bold;
    font-size: 16px;
	border-radius: 4px;
}

.MEMainNav_Contents_DivWithAnchor{
	position:relative;
    margin: 1px 0px 1px 0px;
    /*width: 100%;*/
    padding: 5px 5px 5px 30px;
    display: block;
    background-color: white;
    color: #444;
    border: 0px;
	/*height:32px;*/
	cursor: pointer;
	text-align:left;
	font-weight:bold;
	font-size: 16px;
	border-radius: 4px;
}
.MenuIcon{
    position: absolute;
    left: 3px;
    top: 3px;
	color: #444;
	width: 26px;
	overflow:hidden;
}
.MenuIcon_Expander_Closed{
    position: absolute;
    right: 3px;
    top: 3px;
	color: #444;
	transition-duration: .4s;
	-webkit-transform:rotate(0deg);
	pointer-events: none; /*allows click to pass through to parent*/
	width: 26px;
	overflow:hidden;
}
.MenuIcon_Expander_Opened{
    position: absolute;
    right: 3px;
    top: 3px;
	color: #444;
	transition-duration: .4s;
	-webkit-transform:rotate(180deg);
	pointer-events: none; /*allows click to pass through to parent*/
	width: 26px;
	overflow:hidden;
}

.MEMainNav_notify_circle{
	position: absolute;
    width: 24px;
    height: 24px;
    background-color: black;
    border-radius: 12px;
    color: white;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    left: 3px;
    top: 3px;
}
/* END: Stylings for the Omnibars Nav menu */


