/*
 * Cordys security How to examples
 * This example is made by Johan Pluimers
 */

* /*Set's border, padding and margin to 0 for all values*/ {
    padding: 0;
/*     margin: 0; */
	margin:auto;
}

body, html {
    color: #000;
    font-family: Helvetica, sans-serif;
    background-color: #ffffff;
    text-align: center; /*** Centers the design in old IE versions ***/
	height:100%;
}

.clear {
	padding:10px;
    clear: both;
}

#mainContainer {
    width: 760px;
    margin: auto; /*** Centers the design ***/
    /* min-height: 300px; */
	height: 100%;
    background: #e3dcd5;   
}

* html #mainContainer {
   /*  height: 300px; ** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
	height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/**************************
 HEADER
 **************************/
#header {
    color: #fff;
    background: #f9f6f4;
	padding: 10px;
	height:80px;
	border: none;
	position:relative;
}

.logo{
	margin:auto;
}
.header {

}

/**************************
 CONTENT AND COLUMNS
 **************************/
.outer {
    margin-top: 0px; /*** We need to add some space for our top menu ***/
	float:left;
}

#content {
    width: 100%;
    background: #e3dcd5;
	border:none;
	font: 13px Helvetica, sans-serif;
	padding:50px;
	box-sizing: border-box;
}

* html #content {
    position: relative; /*** IE needs this  ***/
}

#login {
	width:auto;

}
.contentWrap {
    padding: 30px;
	width:100%;
}

.contentWrap ol, .contentWrap ul {
    margin: 3px 0 5px 35px;
}

.contentWrap li {
    padding-bottom: 2px;
}

.fieldsbox > input.input {
    border-style: solid;
    cursor: text;
    height: 1.4em;
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
}

.input {
    border-radius: 0;
    border-width: 0 0 3px;
    color: #57585b;
	border-color: #e3dcd5;
}
.input:hover {
    border-color: #e3dcd5;
}
.input:focus{
    background-color: #fff;
    border-color: #57585b;
}
.input:active{
	border-color: #57585b;
}
button#cordysDoLogin{
    background-color: #57585b;
    background-image: url("../../crystal/style/../image/background/commonsprite.png");
    background-position: 0 center;
    background-repeat: repeat-x;
    border: 0 solid #e3dcd5;
    border-radius: 0;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: Helvetica,sans-serif;
    line-height: 1.3;
    text-shadow: 0 1px 0 rgba(227, 220, 213, 0.4);
}
button#cordysDoLogin:focus{
	border: 1px solid #e3dcd5;
    background-color: #57585b;
 }
button#cordysDoLogin:hover{
    border-color: #7d7e82;
    background-color: #7d7e82;
}
button#cordysDoLogin:active{
    border-color: #bfcfe8;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5) inset;
}
/**************************
 FOOTER
 **************************/
#footer {
    width: 620px;
    margin: 0 auto;
    text-align: center;
	font-size:8pt;
	color:#ffffff;
	border-left: 70px solid #375166;
	border-right: 70px solid #375166;
	background-color:#3C6CA7;
	position:relative;;
	float:none;
}
#footer-wrapper {
	float:left;
}	

#footer a {
	color: #fff;
}


@media screen and (max-width: 800px) {
	#mainContainer {
		width: 100%;
	}
	.logo{
		width:200px;
	}
	#header {
		height:40px;
	}
	span {
		display:block;
	}
	#content {
		padding:25px;
	}
}