﻿html, body {height:100%;}

body {
    height: 100%;
    background: #fff;
    font-family: Calibri;
}

header {
    background: #173018;
    height: 40px;
    padding: 15px;
    vertical-align:middle;
}

input[type=text],
input[type=password],
textarea,
select {
    border: #173018 solid 1px;
}

input[type=submit] {
    border: none;
    padding: 5px;
    background: #173018;
    color: #fff;
}

a {
    color: #173018;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

label {
    padding-left:10px;
}

/** Content Area **/
#content {
    padding: 25px 0 0 10px;
}

#signinbox, #registerbox {
	border: 1px solid #fff;
	box-shadow: 0px 2px 6px 0px #000;
	background: #f7f7f7; /* Old browsers */
	background: -moz-linear-gradient(top,  #f7f7f7 0%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f7f7f7 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f7f7f7 0%,#ffffff 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f7f7f7 0%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f7f7f7 0%,#ffffff 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	padding: 10px;
	text-align: center;
	width: 300px;
	display: inline-block;
    vertical-align: top;
}
#signinbox {
	margin-right: 60px;
}

h2 {
	color: #173018;
	margin: 0,0,10px,0;
	font-weight: normal;
}

#instruction {
	color: #999;
	font-size: 12px;
	margin-bottom: 8px;
}

#btnSignIn, #btnRegsiter, input[type=submit] {
	 background: #173018;
	 border: none;
	 border-bottom: #090 1px solid;
	 box-shadow: 0px 2px 5px 0px #000;
	 color: #fff;
	 padding: 7px;
	 border-radius: 5px;
	 cursor: pointer;
	 font-family: Calibri;
	 font-size: 16px;
}

p.fields {
	text-align: right;
	width: 245px;
	margin: auto;
}

.txtInput {
	border: #dedede 3px solid !important;
	padding: 4px;
	margin-bottom: 5px;
	margin-left: 4px;
    width: 140px;
}

select.txtInput{
    width: 154px;
}

/** Popup Modal **/
.modalBackground {
    background: #000;
    opacity: 0.5;
}

#pnlModal {
    width: 400px;
    background: #fff;
    padding-bottom: 10px;
}

.pnlModalHeader {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    background: #173018;
    padding:5px;
}

.pnlModalContent {
    padding: 0 10px;
    text-align:left;
}

