/*
 * INDEX
 *
 * [01] HTML ELEMENTS
 * [02] MAIN CONTROLS
 * [03] MAIN DIVS
 * [04] BANNER
 * [05] NAVIGATION
 * [06] FORM LAYOUT
 * [07] STATUS
 * [08] BUTTONS
 * [09] POPUP LAYOUT
 * [10] GRID LAYOUT
 * [11] ITEM LAYOUT
 * [12] LOGIN LAYOUT
 *
 */

/*++++++++++++++++++++++++*/
/* [01] HTML ELEMENTS     */
/*++++++++++++++++++++++++*/

body {
	margin: 0;
	padding: 0;
	color: black;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
}

h2 {
	color: #fff;
}

a {
	color: #0066A3;
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: underline;
}

p {
	padding: 0 0 1em 0;
}

form {
	margin: 0;
}

input {
	font: 1em Arial,Helvetica,sans-serif;
}

select {
	font: 1em Arial,Helvetica,sans-serif;
	height: 21px;
	margin: 0 5px 5px 0;
}

ul {
	list-style-type: disc;
	padding-left: 14px;
}

/*++++++++++++++++++++++++*/
/* [02] MAIN CONTROLS     */
/*++++++++++++++++++++++++*/

.right {
	float: right;
}

.text-right {
	text-align: right;
}

.left {
	float: left;
}

.center {
	text-align: center;
}

.important {
	font-weight: bold;
}


div.tiny {      width: 10%; }
div.small {     width: 20%; }
div.med {       width: 30%; }
div.large {     width: 40%; }
div.half {      width: 50%; }
div.xlarge {    width: 60%; }
div.xxlarge {   width: 70%; }
div.xxxlarge {  width: 80%; }
div.xxxxlarge { width: 90%; }
div.full {      width: 100%; }

/*++++++++++++++++++++++++*/
/* [03] MAIN DIVS         */
/*++++++++++++++++++++++++*/

div.wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: 950px;
}

div.header {
	position: relative;
}

div.spacer {
	float: left;
	width: 100%;
	height: 15px;
}

/*++++++++++++++++++++++++*/
/* [04] BANNER            */
/*++++++++++++++++++++++++*/

.header {
position: relative;
height: 125px;
margin-bottom: 10px;
}

.header h1 {
position: absolute;
top: 30px;
left: 0;
padding: 0;
margin: 0;
display: block;
font-size: 38px;
font-weight: normal;
}

.header h1 a {
display: block;
text-decoration: none;
color: black;
padding: 10px 0 0 180px;
background: url(../images/surfnet-logo.png) no-repeat top left;
margin: 0;
min-height: 40px;
line-height: 32px;
width: 520px;
}

/*++++++++++++++++++++++++*/
/* [05] NAVIGATION        */
/*++++++++++++++++++++++++*/
/* 
	background: url(../images/subnav.gif) no-repeat left bottom;
	background-color: #076FA4;
*/

/* Tabs */
div.header ul {
position: absolute;
bottom: 0;
left: 10px;
display: block;
	clear: both;
	font-weight: bold;
	list-style: none outside none;
	margin: 27px 17px 0;
	padding: 0 0 15px 13px;
}

div.header ul li {
	float: left;
	margin: 0 5px 0 0;
	padding: 0;
}

div.header ul li span {
	background: url("../images/tab_1.gif") no-repeat scroll left top transparent;
	display: block;
}

div.header ul li span a {
	background: url("../images/tab_2.gif") no-repeat scroll right top transparent;
	display: block;
	margin-left: 11px;
	padding: 6px 11px 5px 0;
}

/* Selected Tabs */
div.header ul li em {
	background: url("../images/tab_active_1.gif") no-repeat scroll left top transparent;
	display: block;
	font-style: normal;
}

div.header ul li em a {
	background: url("../images/tab_active_2.gif") no-repeat scroll right top transparent;
	color: #FFFFFF;
	display: block;
	margin-left: 10px;
	padding: 6px 11px 5px 0;
}

/* Subtabs */
div.header ul ul {
	color: #FFFFFF;
	font-weight: normal;
	background-image: url("../images/subnav_2.gif");
	height: auto;
	left: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding: 5px 0 5px 24px;
	position: absolute;
	top: 0;
	width: 936px;
}

div.header ul ul li {
	margin-right: 24px;
}

div.header ul ul li a {
	color: #FFFFFF;
}

div.header ul ul li a.subtabsel {
	text-decoration: underline;
}

/*++++++++++++++++++++++++*/
/* [06] FORM LAYOUT       */
/*++++++++++++++++++++++++*/

div.formRow {
	float: left;
	width: 100%;
}
div.formLabel {
	float: left;
	width: 30%;
}
div.formInput {
	float: left;
	width: 70%;
}


div.row div.tiny {		width: 10%; }
div.row div.small {		width: 20%; }
div.row div.med {		width: 30%; }
div.row div.large {		width: 40%; }
div.row div.half {		width: 49%; }
div.row div.xlarge {	width: 60%; }
div.row div.xxlarge {	width: 69%; }
div.row div.xxxlarge {	width: 80%; }
div.row div.xxxxlarge { width: 90%; }
div.row div.full { 		width: 100%; }


form div.row div.med, form div.row div.xxlarge {		display: inline-block; }


div.rowItem {
display: inline-block;
}

div.row input.invalid {
	border: 2px solid red;
}

/*++++++++++++++++++++++++*/
/* [07] STATUS            */
/*++++++++++++++++++++++++*/

.ok {
	color: green;
}

.warning {
	color: red;
}

.error {
	color: red;
}

/*++++++++++++++++++++++++*/
/* [08] BUTTONS           */
/*++++++++++++++++++++++++*/
.button {
	cursor: pointer;
}

span.contentButton.right {
	margin-right: 5px;
}
span.contentButton.left {
	margin-left: 5px;
}

span.contentButton {

	height: 20px;

}

span.contentButton a {
	color: #FFFFFF;
	text-transform: none;
	font-weight: bold;
	padding: 0px 10px;
	text-decoration: none;
	display: inline-block;
	height: 24px;
	line-height: 24px;
	
	background-color: black;
color: white;
border-radius: 3px;
}

span.warningContentButton.right {
    margin-right: 5px;
}
span.warningContentButton.left {
    margin-left: 5px;
}

span.warningContentButton {

    height: 20px;

}

span.warningContentButton a {
    color: #ffffff;
    text-transform: none;
    font-weight: bold;
    padding: 0px 10px;
    text-decoration: none;
    display: inline-block;
    height: 24px;
    line-height: 24px;

    background-color: red;
color: white;
border-radius: 3px;
}

span.annuleren a {
cursor: pointer;
background-color: white;
color: black;
border-radius: 3px;
margin-right:0.6em;
}

span.buttonFix {
	padding: 2px 0 3px 2px;
}

/*++++++++++++++++++++++++*/
/* [09] POPUP LAYOUT      */
/*++++++++++++++++++++++++*/

#modal {
	display: none;
	position: fixed;
	top: 40%;
	width: 100%;
	left: 0;
}

.jqmOverlay {
	background-color: #000;
}

div.jqmAlertWindow {
	height: auto;
	width: auto;
	margin: auto;
  
	max-width: 400px;
	padding: 0 10px 10px;
  
	background: #111;
	border: 1px dotted #FFF;
}

.jqmAlertTitle {
	margin: 5px 2px;
	height: 20px;
	color: #FFF;
	background: #000;
}
.jqmAlertTitle h1{
	margin: 1px 2px;
	padding-left: 5px;
	padding: 0;
	font-size: 14px;
	text-transform: capitalize;
	letter-spacing: -1px;
	font-weight: bold;
	color: #FFFFFF;

	float: left;
	height: 20px;
}

div.jqmAlert .jqmClose em{
	display:none;
}
div.jqmAlert .jqmClose {
	width: 20px;
	height: 20px;
	display: block;
	float: right;
	clear: right;
	background: transparent url("../images/close_icon_double.png") 0 0 no-repeat;
}

div.jqmAlert a.jqmClose:hover,div.jqmAlert a.jqmCloseHover{ background-position: 0 -20px; }

div.jqmAlertContent{
	border-top:px;
	color: #FFF;
	font: 11px/14pt arial;
	padding: 5px 20px 5px;
	margin: 5px;
	border: 1px dotted #111;
	letter-spacing: 0px;
	background-color: #000000;
}

/*++++++++++++++++++++++++*/
/* [10] GRID LAYOUT       */
/*++++++++++++++++++++++++*/

div.column {
	float: left;
	
}

div.smallCol { width: 320px; }
div.medCol   { width: 347px; }
div.largeCol { width: 447px; }
div.xlCol    { width: 627px; }
div.xxlCol   { width: 620px; margin-right: 10px;}
div.fullCol  { width: 950px; }

div.fullSpacer {
	float: left;
	width: 977px;
	height: 20px;
}

/*++++++++++++++++++++++++*/
/* [11] ITEM LAYOUT       */
/*++++++++++++++++++++++++*/

div.item {
	border-color: #E5E5E5;
	margin-bottom: 10px;
}

div.item h2 {
padding: 0 10px;
height: 56px;
color: white;
background-image: url('/../local/images/block_header_620.png');
background-position: top left;
background-repeat: no-repeat;
line-height: 40px;
font-size: 1.1em;
font-weight: bold;
text-transform: uppercase;
font-family: sans-serif;
}

div.item h2 .contentButton{
display: inline-block;
padding-top: 7px;
}

div.item h2 .warningContentButton{
display: inline-block;
padding-top: 7px;
}

.buttonbar{
width: 100%;
text-align: right;
}

div.item h3 {
	color: #076FA4;
	font-size: 1.2em;
	font-weight: bold;
	margin: 0 0 5px 0;
	padding-top: 10px;
}

div.item form {
	margin: 0;
}

div.item div.container {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	padding: 0 10px;
}

div.xxlCol .item .container{
background-color: #f0f0f0;
border-left: 0;
border-right: 0;
}

div.item div.subcontent {
	border: 3px solid black;
	float: left;
	margin: 0 5px 5px 5px;
}

div.smallCol div.item h2 {background: no-repeat url(../images/block_header_320.png) top;}
div.smallCol div.item div.bottom {background: no-repeat url(../images/block_footer_320.png) bottom;}
div.smallCol div.item input { width: 180px; }

div.medCol div.item h2 {background: no-repeat url(../images/item_med_top.gif) top;}
div.medCol div.item div.bottom {background: no-repeat url(../images/item_med_bottom.gif) bottom;}

div.xlCol div.item h2 {background: no-repeat url(../images/item_xl_top.gif) top;}
div.xlCol div.item div.bottom {background: no-repeat url(../images/item_xl_bottom.gif) bottom;}

div.xxlCol div.item div.bottom {background: no-repeat url(../images/block_footer_620.png) bottom;}
div.xxlCol div.item h2 {background: no-repeat url(../images/block_header_620.png) top;}



div.fullCol div.item div.bottom {
	background: no-repeat url(../images/block_footer_950.png) bottom;
	width: 950px;
}

div.fullCol div.item h2 {
	background: url(../images/block_header_950.png) no-repeat scroll left top transparent;
	height: 56px;
}

.bottom{
height: 9px;
}

div#loggedin {
width: 220px;
height: 60px;
padding: 10px;
background-image: url(../local/images/userbox.png);
background-position: top left;
background-repeat: no-repeat;
list-style-type: none;
position: absolute;
top: 20px;
right: 0px;

}

#userbox #headerUser {
font-weight: bold;
}

#userbox #headerUser {
font-weight: bold;
}

#userbox #headerTime {
clear: both;
position: absolute;
bottom: 10px;
left: 10px;
}

.checkbox{
margin-right: 1em;
}

section, footer, div.footer {
background-color: #F0F0F0;
border-radius: 8px;
}
footer, div.footer {
margin: 10px 0;
clear: both;
}

.content-some-dense {
padding: 10px 20px;
}

form .row{
margin: 0 0 .5em;
}

.checkreq{
margin-right: .5em;
}

/*++++++++++++++++++++++++*/
/* [12] LOGIN LAYOUT       */
/*++++++++++++++++++++++++*/

.xxlCol.login {
margin-left:auto;
margin-right:auto;
width:620px;
}
.xxlCol.login .content {
line-height:1.4em;
font-size:1.1em;
background-color:rgb(240,240,240);
}
.xxlCol.login .content .col {
float:left;
width:270px;
margin:16px;
}

.clearer {
width:100%;
clear:both;
height:1px; 
}

div.wrapper.login {
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: 680px;
}


#explanationHeaderSteps {
float: right;
padding: 5px;
margin: 0;
}

#explanationHeaderSteps li {
display: inline;
padding: 2px 5px;
background-color: black;
color: white;
border-radius: 3px;
font-size: 1.1em;
font-weight: bold;
}
#explanationHeaderSteps li.selected {
color: #848284;
background-color: white;
}

.letop, #letop{
background-color: #FEF68F;
border-radius: 8px;
border: 1px solid #FEE05C;
padding: 10px 10px 0 10px;
margin-bottom: 10px;
}

.foutmelding, #foutmelding{
background-color: #f99;
border-radius: 8px;
border: 1px solid red;
padding: 10px 10px 0 10px;
margin-bottom: 10px;
}
