/* Stylesheet by Amphebia. Please only modify after explicit written permission. */


/* B A S I C S */
html,body {
	margin: 0;
	padding: 0;
	color: #000000;
}

body { background-color: #ffffff; }

@font-face {
    font-family: 'Roboto';
    src: url('fonts/roboto-regular.eot');
    src: url('fonts/roboto-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/roboto-regular.woff2') format('woff2'),
         url('fonts/roboto-regular.woff') format('woff'),
         url('fonts/roboto-regular.ttf') format('truetype'),
         url('fonts/roboto-regular.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/roboto-bold.eot');
    src: url('fonts/roboto-bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/roboto-bold.woff2') format('woff2'),
         url('fonts/roboto-bold.woff') format('woff'),
         url('fonts/roboto-bold.ttf') format('truetype'),
         url('fonts/roboto-bold.svg#robotobold') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/roboto-bolditalic.eot');
    src: url('fonts/roboto-bolditalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/roboto-bolditalic.woff2') format('woff2'),
         url('fonts/roboto-bolditalic.woff') format('woff'),
         url('fonts/roboto-bolditalic.ttf') format('truetype'),
         url('fonts/roboto-bolditalic.svg#robotobold_italic') format('svg');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/roboto-italic.eot');
    src: url('fonts/roboto-italic.eot?#iefix') format('embedded-opentype'),
         url('fonts/roboto-italic.woff2') format('woff2'),
         url('fonts/roboto-italic.woff') format('woff'),
         url('fonts/roboto-italic.ttf') format('truetype'),
         url('fonts/roboto-italic.svg#robotoitalic') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/bebasneue-webfont.eot');
    src: url('fonts/bebasneue-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/bebasneue-webfont.woff2') format('woff2'),
         url('fonts/bebasneue-webfont.woff') format('woff'),
         url('fonts/bebasneue-webfont.ttf') format('truetype'),
         url('fonts/bebasneue-webfont.svg#bebas_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

.clear {
	clear: both !important;
	border: none !important;
	margin: 0 !important;
	height: 0px !important;
	dth: auto !important;
}

img { border: 0; }

div#maincontainer {
	width: 980px;
	margin:  0 auto;
	position: relative;
	min-height: 850px;
}

div#topbar {
	height: 118px;
	position: relative;
}
div#topbar div#socialmedia {
	position: absolute;
	right: 0px;
	top: 17px;
}
div#topbar div#socialmedia a {
	display: block;
	float: right;
	cursor: pointer;
	margin-left: 8px;
}
div#topbar div#socialmedia img {
	width: 24px;
	height: 24px;
}
div#topbar img#tb_logo { position: absolute; bottom: 0px; left: 31px; width: 104px; height: 104px; }
div#topbar #menu { height: 43px; position: absolute; bottom: 0px; right: 0px; }
div#topbar #menu .item {
	font-family: BebasNeue, Arial, sans-serif;
	font-size: 18px;
	color: #FFFFFF;
	height: 31px;
	float: left;
	padding: 12px 16px 0px 16px;
	background-color: #c1272d;
	display: block;
	text-decoration: none;
	outline: none;
}
/*
div#topbar #menu .item.active { background-color: #ffffff; color: #c1272d; }
div#topbar #menu .item:hover { background-color: #ffffff; color: #c1272d; }
*/
div#topbar #menu .item:hover { text-decoration: underline; }


#nav {
	list-style-type: none;
	padding: 0;
	margin: 0;
	height: 43px;
	position: absolute;
	bottom: 0px;
	right: 0px;
}
#nav > li, #nav > li > a { position: relative; float: left; display: block; z-index: 101; }
#nav > li > a {
	font-family: BebasNeue, Arial, sans-serif;
	font-size: 20px;
	color: #FFFFFF;
	height: 31px;
	float: left;
	padding: 12px 24px 0px 24px;
	background-color: #c1272d;
	display: block;
	text-decoration: none;
	outline: none;
}
#nav > li > a:hover, #nav > li > a.active { color: #ffffff; background-color: #c1272d; }

/*--- DROPDOWN ---*/
#nav ul{
    background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style:none;
    position:absolute;
    left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	top: 43px;
	margin-left: -45px;
	padding-top: 0px;
	z-index: 100;
}
#nav ul li{
    padding:4px 24px 4px 24px; /* Introducing a padding between the li and the a give the illusion spaced items */
    float:none;
	background-color: #c1272d;
}
#nav ul li:last-of-type { padding-bottom: 8px; }
#nav ul a{
	font-family: BebasNeue, Arial, sans-serif;
    white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	font-size: 18px;
}
#nav li:hover ul{ /* Display the dropdown on hover */
    left:5px; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	color: #e4e4e4; 
	background-color: #c1272d;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration:none;
	background-color: #c1272d;
	color: #fff;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    color: #e4e4e4;
}



div#content {
	width: 980px;
	margin-top: 30px;
}

h1 {
	padding: 0px;
	margin: 0px;
	font-family: Roboto, Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
}

div.contentbox_large {
	margin: 0px 0px 33px 31px;
	width: 879px;
	min-height: 100px;
	border: 15px solid #e4e4e4;
	background-color: #ffffff;
	position: relative;
	z-index: 1;
	padding: 20px;
	display: block;
	float: left;
	font-size: 16px;
	font-family: Roboto, Arial, sans-serif;
}
div.contentbox_large.image {
	width: 919px;
	padding: 0px;
	margin-top: -15px;
}
div.contentbox_large.image p {
	margin: 0;
	padding: 0;
}
div.contentbox_large.image img {
	display: block;
}

div.sidebox { float: right; }
div.sidebox img { margin-right: 10px; }

div.contentbox_small {
	margin: 0px 0px 33px 31px;
	width: 385px;
	min-height: 100px;
	border: 15px solid #e4e4e4;
	background-color: #ffffff;
	position: relative;
	z-index: 1;
	padding: 20px;
	display: block;
	float: left;
	font-size: 16px;
	font-family: Roboto, Arial, sans-serif;
}
div.contentbox_small a, div.contentbox_large a {
	font-family: Roboto, Arial, sans-serif;
	color: #c1272d;
	text-decoration: none;
}
div.contentbox_small a:hover, div.contentbox_large a:hover { text-decoration: underline; }

a.more {
	color: #b9c1a8;
	font-family: Roboto, Arial, sans-serif;
	font-size: 21px;
	text-decoration: none;
}
a.more:hover { color: #c1272d; }

div.label {
	position: absolute;
	top: -35px;
	left: -46px;
	height: 52px;
	background-image: url('../images/label_tile.gif');
	background-position: top left;
	background-repeat: repeat-x;
	z-index: 2;
	color: #ffffff;
	padding: 0px 20px;
	font-weight: normal;
	letter-spacing: 1px;
	font-family: BebasNeue, Arial, sans-serif;
	font-size: 21px;
	line-height: 38px;
}
div.label div.left_part {
	position: absolute;
	width: 31px;
	height: 52px;
	top: 0px;
	left: 0px;
	background-image: url('../images/label-leftpart.png');
	background-position: top left;
	background-repeat: no-repeat;
	z-index: -10;	
}

div#footer {
	font-family: BebasNeue, Arial, sans-serif;
	background-image: url('../images/footer_tile.gif');
	background-position: top left;
	background-repeat: repeat-x;
	height: 120px;
	padding: 0;
	margin-top: 35px;
	position: relative;
}
div#footer * { font-family: BebasNeue, Arial, sans-serif; }
div#footer div#footer_text {
	color: #ffffff;
	font-size: 16px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	padding-top: 23px;
}
div#footer div#footer_text_sm {
	font-size: 15px;
	color: #ffffff;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
div#footer div#footer_text a {
	color: #ffffff;
	text-decoration: none;
}
div#footer div#footer_text a:hover { text-decoration: underline; }
div#footer div#poweredby {
	color: #c1272d;
	font-size: 14px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	padding-top: 20px;
}
div#footer div#poweredby a {
	color: #c1272d;
	text-decoration: none;
}
div#footer div#poweredby a:hover { text-decoration: underline; }

#bgimg {
	position:absolute;
	z-index: -1;
	display: block;
}

#bgimgcontainer {
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
	width: 100%;
	height: 100%;
	z-index: -1;
}
