/*----------------------------------------------------------------------------
Customise Style Sheet
----------------------------------------------------------------------------*/

/* $1 - Global Resets eliminates cross browser inconsistancies
          -----ONLY EDIT IF YOU KNOW WHAT YOU ARE DOING-----
----------------------------------------------------------------------------*/
* {
	margin:0;
	padding:0;
}
h1,h2,h3,h4,h5,h6,p,blockquote,form,label,ul,ol,dl,fieldset,address { margin:0.5em 0; }
fieldset { padding:.5em; }
img { border:0; }
a img { border:0; }

/* This helps fix the relative font sizing problem with tables in internet explorer */
table { font-size:1em; }
.hidden { display:none; }

.clearfix, .clearer, .clr {clear: both;}
.left {float: left;}
.right {float: right;}
.tcenter { text-align: center; }
/*end global resets*/

/* $2 - Typography
----------------------------------------------------------------------------*/
body {
	background: #FFF url(../images/body_bg.jpg) repeat left top;
	color: #191919;
	font: 400 62.5% Arial,sans-serif;
}

/*These control the general, asthetic, typographical/text
elements of the css*/
h1 {
	color: #191919;
	font: 400 1.8em Arial,sans-serif;
	margin: 0;
	padding: 0;
}
h2 {
	color:#191919;
	font: 400 1.8em Arial,sans-serif;
    margin: 0;
	padding: 0;
}
h3 {
	color:#191919;
	font: 400 1.8em Arial,sans-serif;
    margin: 0;
	padding: 0;
}
h4 {
	color:#191919;
	font: 400 1.8em Arial,sans-serif;
	margin: 0;
	padding: 0;
}
h5 {
	color:#191919;
	font: 400 1.8em Arial,sans-serif;
	margin: 0;
	padding: 0;
}
h6 {
	color:#191919;
	font: 400 1.8em Arial,sans-serif;
	margin: 0;
	padding: 0;
}

/* $3 - Lists Styling
----------------------------------------------------------------------------*/
li {list-style: none; }
	
/* $4 - Horizonal Rules
----------------------------------------------------------------------------*/
hr {
/*many components use this as a seperator line */
	border: none;
	background: #c5c9cd;
	height: 1px;
	margin: 10px 0;
	clear: both;
}

/* $5 - Quotations
----------------------------------------------------------------------------*/
blockquote {
	font: bold 1.1em Arial,sans-serif;
	display: block;
	font-weight: bold;
	padding-left: 28px;
}
pre {
	background: #FFF;
	border: 1px solid #EEE;
	border-left: 6px solid #C1CAD3;
	padding:10px;
	margin-bottom:20px;
	color: #666;
	white-space:normal;
	font: normal 1em Arial,sans-serif;
	padding: 8px 10px;
	display: block;
	line-height: 1.6em;
	margin-bottom: 12px;
}

/* $7 - Sitewide Links
----------------------------------------------------------------------------*/
a {color: #0a98c9; text-decoration: underline;}
a:hover { color: #0a98c9; text-decoration: none;}

/* $9 - Forms Styling
----------------------------------------------------------------------------*/
form { margin: 0; padding: 0; }
form fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
input,
select,
textarea{
	background-color: #FFF;
	border: 1px solid #c5c9cd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #191919;
	padding: 7px 15px;
    margin: 0;
	font: normal 16px Arial,sans-serif;
	outline: none;
}
textarea {
	overflow: auto;
	min-height: 145px;
}
input:focus,
select:focus,
textarea:focus { border-color: #000; }
input.error,
select.error,
textarea.error{ border-color: red; }

/*input[type="checkbox"] { display:none; }
input[type="checkbox"] + label span {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0px 5px 0 0;
	vertical-align: middle;
	background: url(../images/icons/icheckbox.png) left top no-repeat;
	cursor: pointer;
}
input[type="checkbox"]:checked + label span {
	background-position: left -10px;
}*/

.btn,
.button,
button,
input[type=submit],
input[type=button] {
	background-color: #ff9933;
	border: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	-webkit-box-shadow: 1px 1px 0px 0px rgba(236, 116, 0, 1);
	-moz-box-shadow:    1px 1px 0px 0px rgba(236, 116, 0, 1);
	box-shadow:         1px 1px 0px 0px rgba(236, 116, 0, 1);

	color: #FFF;
	display: inline-block;
	font: 700 18px Arial,sans-serif;
	min-width: 160px;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px 0px rgba(236, 116, 0, 1);
	padding: 10px 20px;
	transition: all 300ms ease-in-out 0s;
	cursor: pointer;
}
.btn:hover,
.button:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:hover {
	color: #FFF;
	-webkit-box-shadow: none;
	-moz-box-shadow:    none;
	box-shadow:         none;
}

.btn,
.button.blue,
button.blue,
input[type=submit].blue,
input[type=button].blue {
	background-color: #166aa4;

	-webkit-box-shadow: 1px 1px 0px 0px rgba(13, 72, 112, 1);
	-moz-box-shadow:    1px 1px 0px 0px rgba(13, 72, 112, 1);
	box-shadow:         1px 1px 0px 0px rgba(13, 72, 112, 1);
	
	text-shadow: 1px 1px 0px rgba(13, 75, 12, 1);
}

::-webkit-input-placeholder	{ color:rgba(25, 25, 25, 0.5); font: 400 16px Arial,sans-serif; }
::-moz-placeholder			{ color:rgba(25, 25, 25, 0.5); font: 400 16px Arial,sans-serif; }
:-moz-placeholder			{ color:rgba(25, 25, 25, 0.5); font: 400 16px Arial,sans-serif; }
:-ms-input-placeholder		{ color:rgba(25, 25, 25, 0.5); font: 400 16px Arial,sans-serif; }

/* $10 - UI
----------------------------------------------------------------------------*/
.icon {
	display: inline-block;
	margin: 3px 10px 0 0;
	vertical-align: top;
}
.icon.phone{
	background: url(../images/icons/phone.png) no-repeat left top;
	height: 16px;
	width: 16px;
}
.icon.mail{
	background: url(../images/icons/mail.png) no-repeat left top;
	height: 14px;
	width: 16px;
}
.icon.locate{
	background: url(../images/icons/locate.png) no-repeat left top;
	height: 20px;
	width: 12px;
}
.icon.s_ok{
	background: url(../images/icons/ok.png) no-repeat left top;
	height: 43px;
	width: 43px;
}
.icon.s_ok:hover{ background-position: 0 0px; }
.icon.s_vk{
	background: url(../images/icons/vk.png) no-repeat left top;
	height: 43px;
	width: 43px;
}
.icon.s_vk:hover{ background-position: 0 -43px; }
.icon.s_ig{
	background: url(../images/icons/ig.png) no-repeat left top;
	height: 45px;
	width: 45px;
}
.icon.s_ig:hover{ background-position: 0 -45px; }
.icon.s_fb{
	background: url(../images/icons/fb.png) no-repeat left top;
	height: 45px;
	width: 45px;
}
.icon.s_fb:hover{ background-position: 0 -45px; }
.icon.s_tw{
	background: url(../images/icons/tw.png) no-repeat left top;
	height: 45px;
	width: 45px;
}
.icon.s_tw:hover{ background-position: 0 -45px; }
input.phone {
	background: #FFF url(../images/icons/phone.png) no-repeat 12px center;
	padding-left: 40px;
}
input.mail {
	background: #FFF url(../images/icons/mail.png) no-repeat 12px center;
	padding-left: 40px;
}
input.person {
	background: #FFF url(../images/icons/person.png) no-repeat 12px center;
	padding-left: 40px;
}