/* Framework CSS */
body {
	color:#333;
	font-family:ProximaNova,Arial,sans-serif;
	background-color:#fff;
	font-size:18px;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}
#fullWindow {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	right: 0;
	bottom:0;
}

/* LOGIN */
.loginForm {
	margin-left: 79px;
}
.loginForm li {
	padding-bottom: 7px;
	clear: left;
	overflow: hidden;
}
.loginForm li label {
	float: left;
	width: 70px;
}
.loginForm input {
	float: left;
	width: 130px;
}
.MainContent {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	display: block;
}
.MainHeader {
	background: #F7F7F7 url(/common/images/framework/frameworkHeaderBg.png) 0 0 repeat-x;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 34px;
	z-index: 4;
	display: block;
	min-width: 600px;
}
.Overlay {
	position: absolute;
	top: 34px;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 5;
	background-color: #000;
	opacity: 0.3;
	filter: alpha(opacity='30');
}

/* UTILITIES */

/* //////////////////////////////////////////////////////*/
/* loading/ Loader */
#loadingDIV {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 270px;
	height: 90px;
	margin-top: -45px;
	margin-left: -135px;
	z-index: 20000;
}
#loader {
	width: 100%;
	height: 100%;
	background: url(/common/images/img/loaderBg01.png) no-repeat;
	text-align: center;
	padding: 18px 0 0 0;
}
#loadingLabel {
	font-weight: bold;
	font-size: 13px;
	width: 100%;
	text-align: center;
	padding-top: 5px;
}

/*-- LOGO --*/
.logo {
	background: url(/images/e-MdsLogo.png) 0 0 no-repeat;
	width: 71px;
	height: 18px;
	margin: 10px 0 0 10px;
	float: left;
	display: inline-block;
}

/* INLINE BUTTONS */
.btnInline,
button {
	font-family: arial, sans-serif;
	font-size:18px;
	color:#333;
	background:#eeeeee;
	background: -moz-linear-gradient(top, #ffffff 0%, #dcdcdc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#dcdcdc));
	background: -webkit-linear-gradient(top, #ffffff 0%,#dcdcdc 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#dcdcdc 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#dcdcdc 100%);
	background: linear-gradient(top, #ffffff 0%,#dcdcdc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dcdcdc',GradientType=0 );
	border: 1px solid #d1d1d1;
	padding:4px 12px;
	margin:0 10px 0 0;
	text-align:center;
	cursor:pointer;
	display:inline-block;
	line-height:normal;
	border-radius: 3px;
}
.btnInline.disabled,
.btnInline.disabled:hover,
.btnInline.btnInlineDisabled:hover {
	border: 1px solid #bbb;
	border-radius: 3px;
	background: #fafafa;
	cursor: default;
	height: auto;
	color: #ccc;
}
.btnInline:hover,
button:hover {
	background: #FFCB8D; /* #e6e6e6; */
	color: #333;
	border: 1px solid #EFA650; /* 1px solid #bbb; */
}
