#logo {
	position: fixed;
	left: 2.3vw;
	top: 1.2vw;
	width: 12vw;
}

#nav {
	position: fixed;
	right: 20vw;
	top: 0vw;
	width: 50vw;
	height: 3vw;
}

#login {
	position: fixed;
	right: 1vw;
	top: 2.5vw;
	width: 12vw;
	height: 3vw;
}

.TopBanner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 6vw;
	margin: 0px;
	border-bottom: 0.5vw solid #1696C4;
	background-size: 100vw;
	background-color: #FFFFFF;
}

.BottomBanner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: max(1.5vw, 20px);
	margin: 0px;
	background-color: #1696C4;
}

ul.mainmenu {
	margin: 0px;
	padding: 0px;
}

ul.mainmenu li {
	list-style: none;
	position: relative;
	display: inline-block;
	margin: 3vw;
	float: left;
	padding-bottom: 2vw;
}

ul.mainmenu li a {
	color: #000000;
	text-decoration: none;
	FONT-FAMILY: roboto, verdana, arial, sans-serif;
	TEXT-ALIGN: left;
	FONT-STYLE: normal;
	FONT-WEIGHT: bold;
	FONT-SIZE: 1.2vw;
	FONT-SIZE: min(max(3pt, 1.2vw), 12pt);
}

ul.mainmenu li:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 1.7vw;
	width: 0px;
	height: 0.2vw;
	background: #1696C4;
	transition: all 0.45s;
}

ul.mainmenu li:hover:after {
	width: 100%;
	left: 0;
}

ul.mainmenu li a:hover {
	text-decoration: none;
}

li.mainmenudropdown {
	display: inline-block;
}

.mainmenudropdown-content {
	color: #1696C4;
	display: none;
	position: absolute;
	top: 2.4vw;
	background-color: #E7F4F9;
	min-width: 14vw;
	box-shadow: 0vw 0.4vw 0.8vw 0vw rgba(0,0,0,0.2);
	z-index: 1;
}

.mainmenudropdown-content a {
	padding: 0.6vw 0.8vw;
	text-decoration: none;
	display: block;
	text-align: left;
}

.mainmenudropdown-content a:hover {
	background-color: #CBF4F9;
}

.mainmenudropdown:hover .mainmenudropdown-content {
	display: block;
}

ul.mainmenubox {
	margin: 0px;
	padding: 0px;
}

ul.mainmenubox li {
	list-style: none;
	position: relative;
	display: inline;
	margin: 1vw;
}

ul.mainmenubox li a {
	color: #1696C4;
	text-decoration: none;
	FONT-FAMILY: roboto, verdana, arial, sans-serif;
	TEXT-ALIGN: center;
	FONT-STYLE: normal;
	FONT-WEIGHT: bold;
	FONT-SIZE: 1.2vw;
	FONT-SIZE: min(max(3pt, 1.2vw), 12pt);
	padding: 0.4vw 0.8vw 0.4vw 0.8vw;
	border: 0.2vw solid #1696C4;
	border-radius: 0.5vw;
}

ul.mainmenubox li a:hover {
	text-decoration: none;
	padding: 0.4vw 0.8vw 0.4vw 0.8vw;
	border: 0.2vw solid #1696C4;
	border-radius: 0.5vw;
	color: #1696C4;
	background: rgba(22, 150, 196, 0.1);
}

.InteractiveButton {
	DISPLAY: inline-block;
	PADDING: 0.7vw 1.2vw;
	PADDING: min(max(3px, 1vw), 9px) min(max(4px, 1.5vw), 15px);
	margin: 0px 3px;
	TEXT-ALIGN: center;
	VERTICAL-ALIGN: middle;
	TEXT-DECORATION: none;
	BACKGROUND: #2988B5;
	BORDER: none;	
	BORDER-RADIUS: 5px;
	COLOR: #FFFFFF;
	FONT-FAMILY: arial, sans-serif;
	FONT-STYLE: normal;
	FONT-WEIGHT: bold;
	FONT-SIZE: 1.6vw;
	FONT-SIZE: min(max(4pt, 1.6vw), 16pt);
	CURSOR: pointer;
}

.InteractiveButton:hover {
	BACKGROUND: #194C64;
	BORDER: none;	
	BORDER-RADIUS: 5px;
	COLOR: #FFFFFF;
	FONT-FAMILY: arial, sans-serif;
	CURSOR: pointer;
}

.ContainerHost {
	text-align:center;
	position: absolute;
	top: 6vw;
	left: 0px;
	width: 100%;
	margin: 0 0 0 0;
}

.ContainerBlock100 {
	text-align:center;
	left: 0px;
	width: 100%;
	margin: 0 0 0 0;
	padding: 20px;
}

.ContainerBlock80 {
	text-align:center;
	width: 80%;
	max-width: 1250px;
	margin: auto;
	padding: 20px;
}

.ContainerBlock60 {
	text-align:center;
	width: 60%;
	max-width: 1000px;
	margin: auto;
	padding: 20px;
}

.accordion {
	COLOR: #CADDE6;
	FONT-FAMILY: roboto, verdana, arial, sans-serif;
	TEXT-ALIGN: left;
	FONT-STYLE: normal;
	FONT-WEIGHT: normal;
	FONT-SIZE: 1.5vw;
	FONT-SIZE: min(max(3pt, 1.5vw), 15pt);
	background-color: #194C64;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: 1px solid #0B3346;
	outline: none;
	transition: 0.4s;
}

.active, .accordion:hover {
	background-color: #0B3346;
}

.accordion:after {
	content: '\002B';
	color: #CADDE6;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.active:after {
	content: "\2212";
}

.panel {
	COLOR: #000000;
	FONT-FAMILY: roboto, verdana, arial, sans-serif;
	TEXT-ALIGN: left;
	FONT-STYLE: normal;
	FONT-WEIGHT: normal;
	FONT-SIZE: 1.2vw;
	FONT-SIZE: min(max(3pt, 1.2vw), 12pt);
	padding: 0 18px;
	background-color: #EBEBEB;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

#block-base-home {
	background-image: url('../Imgs/Home.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center top;
}

#block-base-pro-magister {
	background-image: url('../Imgs/WorldMap.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-pro-reps {
	background-image: url('../Imgs/Datacenter.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-pro-custom {
	background-image: url('../Imgs/Coding.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-fea-modules {
	background-image: url('../Imgs/DeepBlue.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-fea-extras {
	background-image: url('../Imgs/Extras.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-fea-flexibility {
	background-image: url('../Imgs/Flexibility.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-fea-verticals {
	background-image: url('../Imgs/Verticals.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-ind-pharma {
	background-image: url('../Imgs/Pharma.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-ind-biotech {
	background-image: url('../Imgs/Biotech.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-ind-medical {
	background-image: url('../Imgs/Medical.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-ind-clinical {
	background-image: url('../Imgs/Clinical.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-ind-healthcare {
	background-image: url('../Imgs/Healthcare.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-ind-banking {
	background-image: url('../Imgs/Banking.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-ind-financial {
	background-image: url('../Imgs/Financial.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-ind-automotive {
	background-image: url('../Imgs/Automotive.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

#block-base-com-about {
	background-image: url('../Imgs/Buildings.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}
