@charset "utf-8";
/* CSS Document */

/* header CSS */

#header {} .logo img {
   padding:5px 20px 4px;
}
.welcomeUsr {
    background-color: #e3e3e3;
    padding: 12px 10px 10px 48px;;
    border-right: 1px solid #b7b6b6;
}
.welcomeTxt {
    color: #6d6f72;
    font-size: 12px;
}
.userNameText {
    color: #df0027;
    font-weight: bold;
    font-size: 0.89em;
}
.signOut {
    background: rgb(227, 227, 227) url(../../images/signOutIcon.png) no-repeat center center;
    padding:33px 38px;
    border-left: 1px solid #fff;
}
/* Horizonatal Menu */

.menuUl {
    background-color: #df0027;
    overflow: hidden;
}
.menuUl > li {
    width: 14.1%;
    background-color: #df0027;
    display: inline-block;
    padding: 9px 0px;
    border-right: 1px solid #A61501;
    border-left: 1px solid #F24C36;
    text-align: center;
    margin-left: -4px;
}
.menuUl li a {
    text-decoration: none;
    color: #fff;
}
.menuUl li:hover {
    background-color: #df0027;
}
.menuUl li ul.subMenu {
    display: none;
    position: absolute;
    width: 14.1%;
    top: 103px;
    z-index: 10;
    text-align: left;
   
}
#header .menuUl li ul.subMenu{
	text-align: center;
}
.menuUl li:hover ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
}
.menuUl li:hover ul li {
    clear: both;
    background-color: #293133;
    border-bottom: 1px solid #3f4648;
    padding: 10px 0px;
}
.menuUl li:hover ul li a {
    color: #8f9192;
}
.menuUl li:hover ul li:hover a {
    color: #fff;
}
.menuUl li.myResourceLi {
    border-right: none;
}
.menuUl li.logOut {
    width: 110px;
    background-color: #293133;
    border: none;
}
.menuUl li.logOut a {
    text-decoration: none;
    color: #8f9192;
}
.menuUl li.logOut {
    background: url(../../images/signOut_icon.png) no-repeat 12px center;
}
/*MSE-231 Starts: Styling changes for the Linked Account dropdown**/
.red-arrow::after {
	content: "\25BC";
	postiion: absolute;
	right: 10px;
	top: 50%;
	transform:  rotate(180deg);
	color: #df0027;
	pointer-events: none;
}

.dropdown-content {
	display: none;
	position: absolute;
	float: 0;
 	margin-top: 8px; 
	background-color: black;
	color: black;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	max-height: 500px;
	max-width: 350px;
	right: 0;
	margin-right: 90px;
	overflow-y: scroll;
	overflow-x: hidden;

}
::-webkit-scrollbar {
	width:0px;
	background: transparent;
}

.dropdown-content ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.dropdown-content li {
	border-bottom: 1px solid #8f9192;
}

.dropdown-content li:last-child {
	border-bottom: none;
}

.dropdown-content a {
	color: grey;
	padding: 12px 12px;
	text-decoration: none;
	display: block;
	font-size: small;
	vertical-align: text-bottom;
	
}

.dropdown-content a:hover {
	background-color: black;
	color: white;
}

.dropdown-content input {
	width:100%;
	min-width: 320px;
	padding: 8px;
	height : 32px;
	box-sizing: border-box;
	position: sticky;
} /*MSE-231 : ends*/