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

* {
    box-sizing: border-box;
}

/* Style the body */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
	background-color: #00acd2;
	
}

/* Header/logo Title */
.header {
    padding: 1px;
    text-align: center;
	background-image:url(../images/header_bg_rep.jpg);
	background-repeat:repeat-x;
    color: white;
}

/* Increase the font size of the heading */
.header h1 {
    font-size: 40px;
}

/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
    overflow: hidden;
    background-color: #333;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}

/* Style the navigation bar links */
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}


/* Right-aligned link */
.navbar a.right {
    float: right;
}

/* Change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* Active/current link */
.navbar a.active {
    background-color: #666;
    color: white;
}

/* Column container */
.row {  
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
    -ms-flex: 29%; /* IE10 */
    flex: 29%;
    background-color: #00acd2;
    padding: 20px; max-width:29%;
}

/* Main column */
.main {   
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: #00acd2;
    padding: 20px; max-width:70%;
}

/* Fake image, just for this example */
.fakeimg {
    background-color: #fff;
    width: 90%;
    padding: 20px;
	border-radius: 15px;
}

.fakeimgright {
    background-color: #fff;
    width: 100%;
    padding: 20px;
	border-radius: 15px;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #001c49;
}
.footerText 
			{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color: #FFFFFF;
	margin-top: 10px;
	padding-left: 10px;
	padding-right: 15px;
	text-decoration: none;
	text-align:center;
	vertical-align:top;
			}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row {   
        flex-direction: column;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}

/* For error message */
.style2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FF0000;
	font-weight: bold;
}


.style1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: bold;
}
.style3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: normal;
}

a.nav:link {
	display:block;
	width:80px;
	height:25px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFFFFF;
	line-height:18pt;
	font-weight:bold;
	background-color:#00ACD2;
	border:1px solid #005B6F;
	text-decoration:none;
}

a.nav:visited {
	display:block;
	width:80px;
	height:25px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFFFFF;
	line-height:18pt;
	font-weight:bold;
	background-color:#00ACD2;
	border:1px solid #005B6F;
	text-decoration:none;
}

a.nav:hover {
	display:block;
	width:80px;
	height:25px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	line-height:18pt;
	font-weight:bold;
	background-color:#67E3FF;
	border:1px solid #005B6F;
	text-decoration:none;
}