/* CSS Reset Code */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video 
{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section 
{
	display: block;
}
ol, ul 
{
	list-style: none;
}
blockquote, q 
{
	quotes: none;
}
blockquote:before, blockquote:after,q:before, q:after 
{
	content: '';
	content: none;
}
table 
{
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of CSS Reset Code */

/* General CSS */
body
{
	background-color: #F0F0F0;
}
/* End of General CSS */

/* Login */
#main_container
{
	/*height: 100%;*/
	width: 100%;
}
#login_container
{
	display: table;
	width:340px;
	border:1px solid #E8E8E8;
	margin: 0 auto;
	position: relative;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-ms-border-radius:4px;
	-o-border-radius:4px;
	background-color: white;
	padding: 30px 30px 20px;
	font-family: "Arial";
}
#login_container #company_logo
{
	background-image: url(../img/layout/hosh_logo.png);
	height: 65px;
	width: 310px;
	position: relative;
	background-size: 310px 65px;
	margin: 0 auto;
}
#login_container #error_message
{
	display: table;
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
	padding: 5px 0;
	color: red;
	font-weight: bold;
}
#login_container table
{
	width:310px;
	margin: 0 auto;
}
#login_container table tr td
{
	padding: 10px;
}
#login_container .input_container
{
	width: 312px;
	height:45px;
	position: relative;
}
#login_container .input_container .icon
{
	width:40px;
	height: 43px;
	border:1px solid #D0D0D0;
	border-right: none;
	float: left;
	/*background-color: #E8E8E8;*/
	border-bottom-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-bottom-left-radius: 4px;
	-ms-border-bottom-left-radius: 4px;
	-o-border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-top-left-radius: 4px;
	-ms-border-top-left-radius: 4px;
	-o-border-top-left-radius: 4px;
	text-align: center;
	line-height: 45px;
}
#login_container .input_container input[type="text"],
#login_container .input_container input[type="password"]
{
	float: left;
	border:1px solid #D0D0D0;
	width: 260px;
	height: 41px;
	text-indent: 10px;
	vertical-align: middle;
}
#login_container form button[type="submit"]
{
	height: 50px;
	width: 310px;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-ms-border-radius:4px;
	-o-border-radius:4px;
	background-color: #23436c;
	color:white;
	border:none;
	font-size:18px;
	margin-top:15px;
	cursor:pointer;
}
#login_container form button[type="submit"]:hover
{
	background-color: #3176b1;
}
#login_container form label
{
	font-size: 15px;
	position: relative;
}
#login_container #forgot_password
{
	margin: 10px 0 !important;
	display: block !important;
	text-align: center !important;
}
#login_container #forgot_password a
{
	text-decoration: none;
	font-size: 12px;
	color: #3176b1;
}
#login_container form input[type="checkbox"]
{
	margin-top: 6px;
}
/* End of Login */

/* Modals */

.modal
{
	display: none;
}

/* End of Modals */