@charset "utf-8";
html {
	font-family:Arial, Helvetica, sans-serif;
  	-webkit-text-size-adjust: 100%;
     -ms-text-size-adjust: 100%;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 80%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 280px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background-color: #fff;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo~~ */
.header {
	background-color: #6f7d94;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 40px;
}

/* ~~ The footer ~~ */
.footer {
	margin-top:10px;
	padding: 10px 0;
	background-color: #6F7D94;
	text-align:center;
	alignment-adjust:middle;
	font-size:16px;
}


#formWrap{
	width: 100%;
	margin-top: 20px;
}

#signin {
	width:auto;
	margin: 10px 10px;
	padding: 20px;
	background: #999;
	border: 1px solid #000;
	-moz-border-radius:: 100px;
	-moz-box-shadow: 2px 2px 5px #999;
	-webkit-border-radius:: 100px;
	-webkit-box-shadow: 2px 2px 5px #999;
}

#contactus {
	width:auto;
	margin: 10px 10px;
	padding: 20px;
	background: #999;
	border: 1px solid #000;
	-moz-border-radius:: 100px;
	-moz-box-shadow: 2px 2px 5px #999;
	-webkit-border-radius:: 100px;
	-webkit-box-shadow: 2px 2px 5px #999;
}
.forminput {
	width:100%;
	padding:10px;
	margin-top: 20px;
	border-radius: 4px;
	padding:6px 12px;
	line-height:1.42857143;
}

.error{
	color:#F00;
}	
	