@import url('../../css/reset.css');

/* ----- EMBEDDED FONTS ----- */

@import url('http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold&subset=latin');


/* ----- BASIC STYLESHEET ELEMENTS ----- */

body {
	background-color: #000000;
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
	margin: 0px;
	padding: 0px;
}

#background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url(images/page_elements/site_background.png);
    top: 0px;
    left: 0px;
    z-index: 0;
}

#page_container {
	background-color: transparent;
	background-image: url(images/page_elements/page_background.png);
	background-repeat: repeat;
	position: relative;
	top: 0px;
	width: 960px;
	min-height: 640px;
	height: auto !important;
	height: 640px;
	margin: 0px auto 20px auto;
	overflow: hidden;
	border-left: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	z-index: 1;
}

table {
	background-color: transparent;
	border: 0px;
}

tr {
	vertical-align: top;
}

td, th {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding: 3px;
	color: #333333;
	text-align: left;
}

a:link, a:visited, a:active {
	color: #333333;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color: #134855;
	text-decoration: underline;
	font-weight: bold;
}

p {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
	line-height: 150%;
	margin-top: 1em;
}

.small {
	font-size: 11px;
}

.normal {
    font-size: 13px;
}

.large {
	font-size: 18px;
}

.right {
	text-align: right;
	float: right;
}

.highlight {
	color: #0099CC;
}

.center {
	text-align: center;
}

h1 {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 25px;
	color: #0099CC;
	font-weight: normal;
}

h2 {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #0099CC;
	font-weight: normal;
}

h3 {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
	font-weight: bold;
	line-height: 150%;
	margin-top: 1em;
}

hr {
	width: 100%;
	height: 0px;
	border: 0px;
	border-top: 1px dotted #333333;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 0px;
	margin-right: auto;
}

ul {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 1em;
	padding-left: 15px;
}

li {
	list-style-type: square;
	line-height: 150%;
}

object, embed {
    border: 0;
    background-color: transparent;
    margin-top: 1px;
}


/* ----- FORM ELEMENTS ----- */

fieldset{
    padding: 20px;
    border: 1px solid #333333;
    margin-bottom: 20px;
}

legend {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #0099CC;
    font-weight: bold;
    margin-bottom: 20px;
}

.label {
    display: block;
    width: 120px;
    float: left;
    font-weight: bold;
}

.textfield {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
	background-color: #EEEEEE;
	border: solid #333333 1px;
	margin-bottom: 6px;
	width: 200px;
}

.button {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	font-weight: bold;
	background-color: #0099CC;
	border: solid #333333 1px;
	margin-bottom: 6px;
	cursor: pointer;
	width: auto;
}

.radio {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
	background-color: transparent;
	border: none;
	margin-bottom: 6px;
	width: auto;
}

.selectbox {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
	background-color: #EEEEEE;
	border: solid #333333 1px;
	margin-bottom: 6px;
	width: 200px;
}

.textarea {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
	background-color: #EEEEEE;
	border: solid #333333 1px;
	overflow: auto;
	margin-bottom: 6px;
	width: 380px;
	height: 120px;
}

.validation {
    font-size: 11px;
    line-height: 150%;
}


/* ----- IMAGE ELEMENTS ----- */

img {
	border: 0px;
}

img.border {
	border: 1px solid #FFFFFF;
}

img.no_margins {
	border: 0px;
	margin: 0px;
}

img.no_margins_border {
	border: 1px solid #FFFFFF;
	margin: 0px;
}

img.left_align {
	margin-top: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	margin-right: 20px;
	float: left;
}

img.right_align {
	margin-top: 0px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 0px;
	float: right;
}

img.left_align_border {
	margin-top: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	margin-right: 20px;
	border: 1px solid #FFFFFF;
	float: left;
}

img.right_align_border {
	margin-top: 0px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 0px;
	border: 1px solid #FFFFFF;
	float: right;
}


/* ----- WEBSITE HEADER ----- */

#header {
    width: 930px;
    height: 250px;
    background-image: url(images/page_elements/header_background.png);
    background-repeat: repeat-x;
    padding: 0px 0px 0px 30px;
}

/* ----- WEBSITE NAVIGATION ----- */

#topnav {
    width: 720px;
    height: 250px;
    float: right;
    text-align: right;
    border-left: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    background-image: url(images/page_elements/topnav_background.jpg);
    background-repeat: no-repeat;
}

#topnav ul {
    margin: 0px -1px 0px 0px;
    padding: 0;
    float: right;
}

#topnav ul li {
    display: inline;
    float: left;
    text-align: center;
}

#topnav ul li a:link, #topnav ul li a:active, #topnav ul li a:visited {
    color: #CCCCCC;
    font-weight: normal;
    font-size: 15px;
    text-decoration: none;
    display: block;
    width: auto;
    height: 22px;
    padding-top: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #FFFFFF;
    border-bottom: 2px solid #134855;
}

#topnav ul li a:hover {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 15px;
    text-decoration: none;
    display: block;
    width: auto;
    height: 22px;
    padding-top: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #FFFFFF;
    border-bottom: 2px solid #0099CC;
}

#topnav ul li a.active {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 15px;
    text-decoration: none;
    display: block;
    width: auto;
    height: 22px;
    padding-top: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #FFFFFF;
    border-bottom: 2px solid #0080AA;
}

#leftnav {
    width: 209px;
    min-height: 390px;
    height: auto !important;
    height: 390px;
    float: left;
    padding-left: 30px;
}

#leftnav ul {
    margin: 0;
    padding: 0px 40px 0px 0px;
}

#leftnav ul li {
    list-style-type: none;
    margin-top: 20px;
}

#leftnav ul li a:link, #leftnav ul li a:active, #leftnav ul li a:visited {
    color: #CCCCCC;
    font-weight: normal;
    font-size: 15px;
    text-decoration: none;
}

#leftnav ul li a:hover {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 15px;
    text-decoration: none;
}

#leftnav ul li a.active {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid #0099CC;
}

/* ----- WEBSITE FOOTER ----- */

#footer {
    width: 440px;
    height: 90px;
    position: absolute;
    left: 10px;
    bottom: 0px;
    border-top: 1px dotted #333333;
    padding-top: 5px;
}

#footer p {
    font-size: 11px;
    margin: 0;
}

#footer a:link, #footer a:visited, #footer a:active {
    color: #333333;
    font-weight: normal;
    text-decoration: underline;
}

#footer a:hover {
    color: #134855;
    font-weight: normal;
    text-decoration: underline;
}

#development {
    width: 220px;
    height: 20px;
    position: absolute;
    bottom: 0px;
    right: 10px;
    text-align: right;
}

#development p {
    font-size: 11px;
    margin: 0;
}

#development a:link, #development a:visited, #development a:active {
    color: #333333;
    font-weight: normal;
    text-decoration: underline;
}

#development a:hover {
    color: #134855;
    font-weight: normal;
    text-decoration: underline;
}

/* ----- WEBSITE CONTENT ----- */

#main {
    width: 700px;
    min-height: 330px;
    height: auto !important;
    height: 330px;
    position: relative;
    float: left;
    padding: 10px 10px 70px 10px;
    background-image: url(images/page_elements/main_background.png);
    background-repeat: repeat-y;
    border-left: 1px solid #FFFFFF;
}

#content {
    width: 460px;
    height: auto;
    min-height: 300px;
    float: left;
    padding: 0px 0px 10px 0px;
}

.content_container {
	width: 100%;
	height: auto;
	clear: both;
}

/* ----- WEBSITE SIDEBAR ---- */

#actions {
    width: 219px;
    height: 80px;
    position: relative;
    float: right;
    background-image: url(images/page_elements/contact_background.png);
    margin: -10px -10px 0px 0px;
    padding: 10px;
    border-bottom: 1px solid #FFFFFF;
    cursor: pointer;
	overflow: hidden;
}

#actions span.link {
    width: 239px;
    height: 100px;
    position: absolute;
    z-index: 9999;
}

#actions h2 {
    color: #FFFFFF;
    margin: 0;
}

#actions p {
    color: #FFFFFF;
    margin: 0.5em 0 0 0;
}

#sidebar {
    width: 220px;
    height: auto;
    float: right;
    padding: 10px 0px 10px 0px;
}

#sidebar h3 {
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 100%;
}

#sidebar p {
    margin-top: 0em;
    margin-bottom: 1em;
}

#sidebar a {
    font-size: 11px;
}

/*------------------------------------------------------
	Cookie Dialog
--------------------------------------------------------*/
#gdpr-cookie-message {
    position: fixed;
    left: 40%;
    top: 30%;
    max-width: 450px;
    background-color: #31373a;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    /*margin-left: 30px;*/
    font-family: system-ui;
	z-index: 9999;
}

#gdpr-cookie-message h3, #gdpr-cookie-message h4, #gdpr-cookie-message h5, #gdpr-cookie-message p, #gdpr-cookie-message ul, #gdpr-cookie-message a {
    color: #FFFFFF;
}

#gdpr-cookie-message button, button#ihavecookiesBtn, button#gdpr-cookie-advanced {
    border: none;
    background: #aaaaaa;
    color: #000000;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:hover {
    background: #0099CC;
    color: #FFFFFF;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}


/* ----- END STYLESHEET ----- */
