/*-----------------------------------------
	Website:
	Creator:
	Last Modified:
	
	0. MAIN
	1. Generic
	2. Text, headers
	3. Links
	4. Areas, Divs
	5. Tables
	6. Forms
	7. Images
	8. Lists
	9. Menus
-----------------------------------------*/

/*-----------------------------------------
	0. MAIN
-----------------------------------------*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0px;
	padding: 0px;
	border: 0;
	vertical-align: baseline;
	background: transparent;
}

body {
	font-family: Arial, sans-serif;
	color: #222;
	background: #fff;
	font-size: 75%; /* Default font size. The font-size percentage is of 16px. (0.75 * 16px = 12px) */
	line-height: 1.5; /* Default line height. (12px * 1.5 = 18px) */
	text-align: center;
}

/*-----------------------------------------
	1. LAYOUT
-----------------------------------------*/

.a-left {
	text-align: left;
}

.a-right {
	text-align: right;
}

.a-center {
	text-align: center;
}

.a-justify {
	text-align: justify;
}

.f-left {
	float: left;
}

.f-right {
	float: right;
}

.clear {
	clear: both;
}

.hide {
	display: none;
}

.out-of-view {
	position: absolute;
	left: -9999px;
}

.green-color {
	color: #4fa700;
}

.green-bg {
	background: #f6ffee;
	border: 1px solid #4fa700;
}

.red-color {
	color: #f00;
}

.red-bg {
	background: #fff0f0;
	border: 1px solid #f00;
}

/*-----------------------------------------
  2. TYPOGRAPHY
-----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #000;
	letter-spacing: 0;
}

h1 { 
	font-size: 3em;
	line-height: 1;
	margin-bottom: 0.5em;
}

h2 { 
	font-size: 2em;
	margin-bottom: 0.75em;
	color: #ffffd9;
}

div.contacts-section h2 {
	font-size: 1.9em;
	margin: 0 0 0;
}

h3 { 
	font-size: 1.5em; 
	line-height: 1;
	margin-bottom: 1em;
}

h4 {
	font-size: 1.2em;
	line-height: 1.25;
	margin-bottom: 1.25em;
	text-transform: uppercase;
}

h5 {
	font-size: 1em;
	font-weight: bold;
	margin-bottom: 1.5em;
}

h6 {
	font-size: 1em;
	font-weight: bold;
}

p {
	margin: 0 0 1.5em;
	text-align: justify;
}

blockquote { 
	margin: 0 0 1.5em;
	color: #666; 
	font-style: italic;
}

strong { 
	font-weight: bold;
}

small {
	font-style: italic;
	font-size: 0.8em;
}

em { /* emphasis */
	font-style: normal;
	font-size: 1.1em;
}

dfn { /* definition term */
	font-weight: bold;
	font-style: italic;
}

sup, sub {
	line-height: 0;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
}

address { 
	margin: 0 0 1.5em;
	font-style: italic;
}

del {
	text-decoration: line-through;	
}

pre { 
	margin: 1.5em 0;
	white-space: pre;
}

pre,code,tt {
	color: #81c14e;
	font-family: 'lucida console', monospace;
}

hr {
	background: #003867;
	color: #003867;
	border: none;
	height: 0.1em;
	margin: 0 0 1.4em;
}

.indent {
	padding: 0 0 0 1.5em;
}

/*-----------------------------------------
  3. Links
-----------------------------------------*/

a:link, a:active, a:visited {
	color: #f81878;
	text-decoration: none;
}

a:hover, a:focus {
	border-bottom: 1px solid red;
}

/*-----------------------------------------
  4. Area, Divs
-----------------------------------------*/

div#canvas {
	width: 960px;
	margin: 0 auto;
	text-align: left;
	background: #fff;
}

div#header-container {
	height: 205px;
}

div#logo {
	display: inline;
	float: left;
	width: 256px;
	padding: 10px 0 0;
	margin: 0 0 0 20px;
}

div#banner {
	display: inline;
	float: right;
	width: 578px;
	height: 146px;
	margin: 30px 20px 0 0;
	overflow: hidden;
}

div#contacts {
	height: 40px;
	background: #cecece;
}

div.contacts-section {
	display: inline;
	float: left;
	margin: 0 0 0 10px;
	width: 250px;
	line-height: 40px;
}

div.contacts-details {
	padding: 4px 0 0;
	line-height: 16px;
}

div.contacts-address {
	padding: 2px 0 0;
	line-height: 16px;
	width: 415px;
}

div#content {
	padding: 20px 0 20px;
	background: #ffffd9;
}

div.left-column-small {
	display: inline;
	float: left;
	width: 280px;
	margin: 0 0 20px 20px;
}

div.left-column-half {
	display: inline;
	float: left;
	width: 440px;
	margin: 0 0 20px 20px;
}

div.left-column-large {
	display: inline;
	float: left;
	width: 600px;
	margin: 0 0 20px 20px;
}

div.right-column-small {
	display: inline;
	float: right;
	width: 280px;
	margin: 0 20px 20px 0;
}

div.right-column-half {
	display: inline;
	float: right;
	width: 440px;
	margin: 0 20px 20px 0;
}

div.right-column-large {
	display: inline;
	float: right;
	width: 600px;
	margin: 0 20px 20px 0;
}

div.full-column {
	margin: 0 20px 20px 20px;
}

div.form-left-section {
	float: left;
	width: 45%;
}
div.form-right-section {
	float: right;
	width: 45%;
}
div.form-section {
}

div.form-label {
}

div.form-inputs {
}

/*-----------------------------------------
  5. Tables
-----------------------------------------*/

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

caption {
	text-align: left;
	text-transform: uppercase;
	color: #003867;
}

col {
	background: #eff2ff;
}

col.alternate {
	background: #e8edff;
}

tr:hover {
	background: #eee;
}

th, td {
	border: 1px solid #fff;
	padding: 5px;
	font-size: 1em;
}

th {
	font-weight: bold;
	background: #ddd9c3;
	padding: 10px 5px;
}

td {
}

table#prices {
	background: #eeece1;
	height: 300px;
}

table#prices tr.alternate {
	background: #f9f8f2;
}

/*-----------------------------------------
  6. Forms
-----------------------------------------*/

form {
}

fieldset {
	border: 0px;
	margin: 0 0 1.5em;
}

legend {
	float: left;
	text-transform: uppercase;
	color: #003867;
	margin: 0 0 1.5em;
}

label {	
	font-weight: bold;
}

input {
	padding: 2px 1px;
	background: #fff;
	border: 1px solid #666;
}

input.button {
	padding: 0 7px 1px;
	border: 1px solid #666;
	background: #f81878;
	color: #fff;
	font-weight: bold;
	text-align: center !important;
	white-space: nowrap;
	cursor: pointer;
	width: auto;
	margin: 0.5em 0 0;
}

input.button:hover, input.button:focus {
	background: #c1145e;
}

textarea {
	height: 95px;
	padding: 2px 1px;
	border: 1px solid #666;
}

select {	
}

input, textarea {
	width: 200px;
}

input:focus, textarea:focus, select:focus {
	background: #f2fbff;
}

input#important {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

/*-----------------------------------------
  7. Images
-----------------------------------------*/

img {
	border: none;
}

/*-----------------------------------------
  8. Lists
-----------------------------------------*/

ul, ol { 
	margin: 0 1.5em 1.5em 1.5em;
}

li ul, li ol {
	margin: 0 1.5em;
}

dl { 
	margin: 0 0 1.5em 0; 
}

dl dt { 
	font-weight: bold;
}

dd {
	margin-left: 1.5em;
}

/*-----------------------------------------
  9. Menus
-----------------------------------------*/



