/**Background Color**/

body {
    background-color:rgb(252, 251, 250);
}

/**Header Styles**/

#header {
	padding: 25px;
	background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #e0e0e0 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #e0e0e0));
    background: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
    background: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
    background: -ms-linear-gradient(top, #fff 0%, #e0e0e0 100%);
    background: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
	border-bottom:solid 5px #1fb37c;
}

#confTitles{
	color:#6e6e6e;
	margin-top:-10px;
}

/**Footer Styles**/

#footer-wrapper {
	background-color: #464646;
	color: #fff;
}

#warning-text{
	text-align: center;
    color: red;
    font-weight: bold;
    font-size: 20px;
    margin: 50px 0;
}