@charset "utf-8";
/* Framework by studio174.ca
=================================================================================
Author: studio174.ca
Updated: 10/15/2013  

Copyright 2013 studio174.ca
=================================================================================

 Index
=================================================================================
1. HTML element reset					- resets all html elements
2. HTML 5 display-role reset			- reset for older browsers
3. Grid system							- basic grid system definition
4. Common HTML classes					- common classes to simplify development


*/

/* 1. HTML element reset					- resets all html elements
================================================================================= */
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;
	color: #333;
} 

/* 2. HTML 5 display-role reset				- reset for older browsers
================================================================================= */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
} 

/* 3. Grid system							- basic grid system definition
================================================================================= */
img {  
	max-width: 100%;
	height: auto;
	border: 0;
}

@media \0screen {
  img { 
  	width: auto; /* for ie 8 */
	border: 0;
  }
}

.container { margin: 0 auto 0 auto; } 

.row { width: 100%; }

/* not working?
==================================================================================  
.row [class*="column"]:first-child { margin-left: 0 !important; }

.container [class*="column"]:first-child { margin-left: 0 !important; } */

[class*="column"] {
	padding: 2%;
	margin: 0 0 2% 0;
}

.column-11, .column-10, .column-9, .column-8, .column-7, .column-6, .column-5, .column-4, .column-3, .column-2, .column-1 {	
	float: left; 
	margin-left: 2%; 
}

.column-12 { 
	margin: 0 0 2% 2% !important;
	width: 92%; 
	float: left; 
}
.column-11 { width: 87.5%; }
.column-10 { width: 79%; }
.column-9 {	width: 67.5%; } 
.column-8 {	width: 60%; }
.column-7 {	width: 52.0%; }
.column-6 {	width: 43.0%; }
.column-5 {	width: 36.0%; }
.column-4 {	width: 26.66%; }
.column-3 {	width: 18.50%; }
.column-2 {	width: 11%; }
.column-1 {	width: 2.5%; }

.offset-11:first-child { margin-left: 93.5% !important; }
.offset-10:first-child { margin-left: 85% !important; }
.offset-9:first-child {	margin-left: 76.5% !important; }
.offset-8:first-child { margin-left: 68% !important; }
.offset-7:first-child {	margin-left: 59.5% !important; }
.offset-6:first-child {	margin-left: 51% !important; }
.offset-5:first-child { margin-left: 42.5% !important; }
.offset-4:first-child {	margin-left: 34% !important; }
.offset-3:first-child {	margin-left: 25.5% !important; }
.offset-2:first-child { margin-left: 17% !important; }
.offset-1:first-child { margin-left: 8.5% !important; }

.offset-11 { margin-left: 95.5%; }
.offset-10 { margin-left: 87%; }
.offset-9 { margin-left: 78.5%; }
.offset-8 {	margin-left: 70%; }
.offset-7 {	margin-left: 61.5%; }
.offset-6 {	margin-left: 53%; }
.offset-5 {	margin-left: 44.5%; }
.offset-4 {	margin-left: 36%; }
.offset-3 {	margin-left: 27.5%; }
.offset-2 { margin-left: 19%; }
.offset-1 { margin-left: 10.5%; }

/* 4. Common HTML classes					- common classes to simplify development
================================================================================= */
.block { display: block !important; }
.red { border: solid 1px red; }

.left { float: left; }
.right { float: right; }

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }

.center { margin-left: auto !important; margin-right: auto !important; } 
.clear { clear: both; } 
.hide { display: none; }
.hide-desktop { display: none; }
.show-tablet { display: none; }
.last { margin-right: 0 !important; } 
.show-ie7 { display: none; }

.no-margin { margin: 0 !important; }
.no-margin-top { margin-top: 0 !important; }
.no-margin-right { margin-right: 0 !important; }
.no-margin-bottom { margin-bottom: 0 !important; }
.no-margin-left { margin-left: 0 !important; }

.no-padding { padding: 0 !important; }
.no-padding-top { padding-top: 0 !important; } 
.no-padding-right { padding-right: 0 !important; } 
.no-padding-bottom { padding-bottom: 0 !important; } 
.no-padding-left { padding-left: 0 !important; } 

.no-float { float: none !important; }

.no-border { border: none !important; } 

.remove-filters { 
	border: none !important;	
	-moz-box-shadow: none !important;	
	-webkit-box-shadow: none !important;	
	box-shadow: none !important;
	text-shadow: none !important;
}
.alert {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border: 1px solid transparent;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    margin-bottom: 20px;
    padding: 15px;
}
.alert-error {
    background-color: #F2DEDE;
    border-color: #EED3D7;
    color: #B94A48;
}
.alert-error .alert-link {
    color: #953B39;
}
.alert-success { 
    background-color: #DFF0D8;
    border-color: #D6E9C6;
    color: #468847;
}
.alert-success b,
.alert-success strong {
	color: #B94A48; 
} 

.alert .alert-link {
    font-weight: bold;
}
.alert-error b,
.alert-error strong {
	color: #B94A48;
}

.w5{ width: 5px; max-width: 5px; }
.w10{ width: 10px; max-width: 10px; }
.w15{ width: 15px; max-width: 15px; }
.w20{ width: 20px; max-width: 20px; }
.w25{ width: 25px; max-width: 25px; }
.w30{ width: 30px; max-width: 30px; }
.w35{ width: 35px; max-width: 35px; }
.w40{ width: 40px; max-width: 40px; }
.w45{ width: 45px; max-width: 45px; }
.w50{ width: 50px; max-width: 50px; }
.w55{ width: 55px; max-width: 55px; }
.w60{ width: 60px; max-width: 60px; }
.w65{ width: 65px; max-width: 65px; }
.w70{ width: 70px; max-width: 70px; }
.w75{ width: 75px; max-width: 75px; }
.w80{ width: 80px; max-width: 80px; }
.w85{ width: 85px; max-width: 85px; }
.w90{ width: 90px; max-width: 90px; }
.w95{ width: 95px; max-width: 95px; }
.w100{ width: 100px; max-width: 100px; }
.w105{ width: 105px; max-width: 105px; }
.w110{ width: 110px; max-width: 110px; }
.w115{ width: 115px; max-width: 115px; }
.w120{ width: 120px; max-width: 120px; }
.w125{ width: 125px; max-width: 125px; }
.w130{ width: 130px; max-width: 130px; }
.w135{ width: 135px; max-width: 135px; }
.w140{ width: 140px; max-width: 140px; }
.w145{ width: 145px; max-width: 145px; }
.w150{ width: 150px; max-width: 150px; }
.w155{ width: 155px; max-width: 155px; }
.w160{ width: 160px; max-width: 160px; }
.w165{ width: 165px; max-width: 165px; }
.w170{ width: 170px; max-width: 170px; }
.w175{ width: 175px; max-width: 175px; }
.w180{ width: 180px; max-width: 180px; }
.w185{ width: 185px; max-width: 185px; }
.w190{ width: 190px; max-width: 190px; }
.w195{ width: 195px; max-width: 195px; }
.w200{ width: 200px; max-width: 200px; }
.w205{ width: 205px; max-width: 205px; }
.w210{ width: 210px; max-width: 210px; }
.w215{ width: 215px; max-width: 215px; }
.w220{ width: 220px; max-width: 220px; }
.w225{ width: 225px; max-width: 225px; }
.w230{ width: 230px; max-width: 230px; }
.w235{ width: 235px; max-width: 235px; }
.w240{ width: 240px; max-width: 240px; }
.w245{ width: 245px; max-width: 245px; }
.w250{ width: 250px; max-width: 250px; }
.w255{ width: 255px; max-width: 255px; }
.w260{ width: 260px; max-width: 260px; }
.w265{ width: 265px; max-width: 265px; }
.w270{ width: 270px; max-width: 270px; }
.w275{ width: 275px; max-width: 275px; }
.w280{ width: 280px; max-width: 280px; }
.w285{ width: 285px; max-width: 285px; }
.w290{ width: 290px; max-width: 290px; }
.w295{ width: 295px; max-width: 295px; }
.w300{ width: 300px; max-width: 300px; }
.w305{ width: 305px; max-width: 305px; }
.w310{ width: 310px; max-width: 310px; }
.w315{ width: 315px; max-width: 315px; }
.w320{ width: 320px; max-width: 320px; }
.w325{ width: 325px; max-width: 325px; }
.w330{ width: 330px; max-width: 330px; }
.w335{ width: 335px; max-width: 335px; }
.w340{ width: 340px; max-width: 340px; }
.w345{ width: 345px; max-width: 345px; }
.w350{ width: 350px; max-width: 350px; }
.w355{ width: 355px; max-width: 355px; }
.w360{ width: 360px; max-width: 360px; }
.w365{ width: 365px; max-width: 365px; }
.w370{ width: 370px; max-width: 370px; }
.w375{ width: 375px; max-width: 375px; }
.w380{ width: 380px; max-width: 380px; }
.w385{ width: 385px; max-width: 385px; }
.w390{ width: 390px; max-width: 390px; }
.w395{ width: 395px; max-width: 395px; }
.w400{ width: 400px; max-width: 400px; }
.w405{ width: 405px; max-width: 405px; }
.w410{ width: 410px; max-width: 410px; }
.w415{ width: 415px; max-width: 415px; }
.w420{ width: 420px; max-width: 420px; }
.w425{ width: 425px; max-width: 425px; }
.w430{ width: 430px; max-width: 430px; }
.w435{ width: 435px; max-width: 435px; }
.w440{ width: 440px; max-width: 440px; }
.w445{ width: 445px; max-width: 445px; }
.w450{ width: 450px; max-width: 450px; }
.w455{ width: 455px; max-width: 455px; }
.w460{ width: 460px; max-width: 460px; }
.w465{ width: 465px; max-width: 465px; }
.w470{ width: 470px; max-width: 470px; }
.w475{ width: 475px; max-width: 475px; }
.w480{ width: 480px; max-width: 480px; }
.w485{ width: 485px; max-width: 485px; }
.w490{ width: 490px; max-width: 490px; }
.w495{ width: 495px; max-width: 495px; }
.w500{ width: 500px; max-width: 500px; }
.w505{ width: 505px; max-width: 505px; }
.w510{ width: 510px; max-width: 510px; }
.w515{ width: 515px; max-width: 515px; }
.w520{ width: 520px; max-width: 520px; }
.w525{ width: 525px; max-width: 525px; }
.w530{ width: 530px; max-width: 530px; }
.w535{ width: 535px; max-width: 535px; }
.w540{ width: 540px; max-width: 540px; }
.w545{ width: 545px; max-width: 545px; }
.w550{ width: 550px; max-width: 550px; }
.w555{ width: 555px; max-width: 555px; }
.w560{ width: 560px; max-width: 560px; }
.w565{ width: 565px; max-width: 565px; }
.w570{ width: 570px; max-width: 570px; }
.w575{ width: 575px; max-width: 575px; }
.w580{ width: 580px; max-width: 580px; }
.w585{ width: 585px; max-width: 585px; }
.w590{ width: 590px; max-width: 590px; }
.w595{ width: 595px; max-width: 595px; }
.w600{ width: 600px; max-width: 600px; }
.w605{ width: 605px; max-width: 605px; }
.w610{ width: 610px; max-width: 610px; }
.w615{ width: 615px; max-width: 615px; }
.w620{ width: 620px; max-width: 620px; }
.w625{ width: 625px; max-width: 625px; }
.w630{ width: 630px; max-width: 630px; }
.w635{ width: 635px; max-width: 635px; }
.w640{ width: 640px; max-width: 640px; }
.w645{ width: 645px; max-width: 645px; }
.w650{ width: 650px; max-width: 650px; }
.w655{ width: 655px; max-width: 655px; }
.w660{ width: 660px; max-width: 660px; }
.w665{ width: 665px; max-width: 665px; }
.w670{ width: 670px; max-width: 670px; }
.w675{ width: 675px; max-width: 675px; }
.w680{ width: 680px; max-width: 680px; }
.w685{ width: 685px; max-width: 685px; }
.w690{ width: 690px; max-width: 690px; }
.w695{ width: 695px; max-width: 695px; }
.w700{ width: 700px; max-width: 700px; }
.w705{ width: 705px; max-width: 705px; }
.w710{ width: 710px; max-width: 710px; }
.w715{ width: 715px; max-width: 715px; }
.w720{ width: 720px; max-width: 720px; }
.w725{ width: 725px; max-width: 725px; }
.w730{ width: 730px; max-width: 730px; }
.w735{ width: 735px; max-width: 735px; }
.w740{ width: 740px; max-width: 740px; }
.w745{ width: 745px; max-width: 745px; }
.w750{ width: 750px; max-width: 750px; }
.w755{ width: 755px; max-width: 755px; }
.w760{ width: 760px; max-width: 760px; }
.w765{ width: 765px; max-width: 765px; }
.w770{ width: 770px; max-width: 770px; }
.w775{ width: 775px; max-width: 775px; }
.w780{ width: 780px; max-width: 780px; }
.w785{ width: 785px; max-width: 785px; }
.w790{ width: 790px; max-width: 790px; }
.w795{ width: 795px; max-width: 795px; }
.w800{ width: 800px; max-width: 800px; }
.w805{ width: 805px; max-width: 805px; }
.w810{ width: 810px; max-width: 810px; }
.w815{ width: 815px; max-width: 815px; }
.w820{ width: 820px; max-width: 820px; }
.w825{ width: 825px; max-width: 825px; }
.w830{ width: 830px; max-width: 830px; }
.w835{ width: 835px; max-width: 835px; }
.w840{ width: 840px; max-width: 840px; }
.w845{ width: 845px; max-width: 845px; }
.w850{ width: 850px; max-width: 850px; }
.w855{ width: 855px; max-width: 855px; }
.w860{ width: 860px; max-width: 860px; }
.w865{ width: 865px; max-width: 865px; }
.w870{ width: 870px; max-width: 870px; }
.w875{ width: 875px; max-width: 875px; }
.w880{ width: 880px; max-width: 880px; }
.w885{ width: 885px; max-width: 885px; }
.w890{ width: 890px; max-width: 890px; }
.w895{ width: 895px; max-width: 895px; }
.w900{ width: 900px; max-width: 900px; }
.w905{ width: 905px; max-width: 905px; }
.w910{ width: 910px; max-width: 910px; }
.w915{ width: 915px; max-width: 915px; }
.w920{ width: 920px; max-width: 920px; }
.w925{ width: 925px; max-width: 925px; }
.w930{ width: 930px; max-width: 930px; }
.w935{ width: 935px; max-width: 935px; }
.w940{ width: 940px; max-width: 940px; }
.w945{ width: 945px; max-width: 945px; }
.w950{ width: 950px; max-width: 950px; }
.w955{ width: 955px; max-width: 955px; }
.w960{ width: 960px; max-width: 960px; }
.w965{ width: 965px; max-width: 965px; }
.w970{ width: 970px; max-width: 970px; }
.w975{ width: 975px; max-width: 975px; }
.w980{ width: 980px; max-width: 980px; }
.w985{ width: 985px; max-width: 985px; }
.w990{ width: 990px; max-width: 990px; }
.w995{ width: 995px; max-width: 995px; }
.w1000{ width: 1000px; max-width: 1000px; }
.w1005 { width: 1005px; max-width: 1005px; }
.w1010 { width: 1010px; max-width: 1010px; }
.w1015 { width: 1015px; max-width: 1015px; }
.w1020 { width: 1020px; max-width: 1020px; }
.w1025 { width: 1025px; max-width: 1025px; }
.w1030 { width: 1030px; max-width: 1030px; }
.w1035 { width: 1035px; max-width: 1035px; }
.w1040 { width: 1040px; max-width: 1040px; }
.w1045 { width: 1045px; max-width: 1045px; }
.w1050 { width: 1050px; max-width: 1050px; }
.w1055 { width: 1055px; max-width: 1055px; }
.w1060 { width: 1060px; max-width: 1060px; }
.w1065 { width: 1065px; max-width: 1065px; }
.w1070 { width: 1070px; max-width: 1070px; }
.w1075 { width: 1075px; max-width: 1075px; }
.w1080 { width: 1080px; max-width: 1080px; }
.w1085 { width: 1085px; max-width: 1085px; }
.w1090 { width: 1090px; max-width: 1090px; }
.w1095 { width: 1095px; max-width: 1095px; }
.w1100 { width: 1100px; max-width: 1100px; }
.w1105 { width: 1105px; max-width: 1105px; }
.w1110 { width: 1110px; max-width: 1110px; }
.w1115 { width: 1115px; max-width: 1115px; }
.w1120 { width: 1120px; max-width: 1120px; }
.w1125 { width: 1125px; max-width: 1125px; }
.w1130 { width: 1130px; max-width: 1130px; }
.w1135 { width: 1135px; max-width: 1135px; }
.w1140 { width: 1140px; max-width: 1140px; }
.w1145 { width: 1145px; max-width: 1145px; }
.w1150 { width: 1150px; max-width: 1150px; }
.w1155 { width: 1155px; max-width: 1155px; }
.w1160 { width: 1160px; max-width: 1160px; }
.w1165 { width: 1165px; max-width: 1165px; }
.w1170 { width: 1170px; max-width: 1170px; }
.w1175 { width: 1175px; max-width: 1175px; }
.w1180 { width: 1180px; max-width: 1180px; }
.w1185 { width: 1185px; max-width: 1185px; }
.w1190 { width: 1190px; max-width: 1190px; }
.w1195 { width: 1195px; max-width: 1195px; }
.w1200 { width: 1200px; max-width: 1200px; }

/* height spacers */
.h1 { height: 1px;		min-height: 1px; }
.h5 { height: 5px;		min-height: 5px; }
.h7 { height: 7px;		min-height: 7px; }
.h10 { height: 10px;	min-height: 10px; }
.h15 { height: 15px;	min-height: 15px; }
.h20 { height: 20px;	min-height: 20px; }
.h21 { height: 21px;	min-height: 21px; } 
.h25 { height: 25px;	min-height: 25px; }
.h30 { height: 30px;	min-height: 30px; }
.h35 { height: 35px;	min-height: 35px; }
.h40 { height: 40px;	min-height: 40px; }
.h45 { height: 45px;	min-height: 45px; }
.h50 { height: 50px;	min-height: 50px; }
.h55 { height: 55px;	min-height: 55px; }
.h60 { height: 60px;	min-height: 60px; }
.h65 { height: 65px;	min-height: 65px; }
.h70 { height: 70px;	min-height: 70px; }
.h75 { height: 75px;	min-height: 75px; }
.h80 { height: 80px;	min-height: 80px; }
.h85 { height: 85px;	min-height: 85px; }
.h90 { height: 90px;	min-height: 90px; }
.h95 { height: 95px;	min-height: 95px; }
.h100 { height: 100px;	min-height: 100px; }
.h105 { height: 105px;	min-height: 105px; }
.h110 { height: 110px;	min-height: 110px; }
.h115 { height: 115px;	min-height: 115px; }
.h120 { height: 120px;	min-height: 120px; }
.h125 { height: 125px;	min-height: 125px; }
.h130 { height: 130px;	min-height: 130px; }
.h135 { height: 135px;	min-height: 135px; }
.h140 { height: 140px;	min-height: 140px; }
.h145 { height: 145px;	min-height: 145px; }
.h150 { height: 150px;	min-height: 150px; }
.h155 { height: 155px;	min-height: 155px; }
.h160 { height: 160px;	min-height: 160px; }
.h165 { height: 165px;	min-height: 165px; }
.h170 { height: 170px;	min-height: 170px; }
.h175 { height: 175px;	min-height: 175px; }
.h180 { height: 180px;	min-height: 180px; }
.h185 { height: 185px;	min-height: 185px; }
.h190 { height: 190px;	min-height: 190px; }
.h195 { height: 195px;	min-height: 195px; }
.h200 { height: 200px;	min-height: 200px; }
.h205 { height: 205px;	min-height: 205px; }
.h210 { height: 210px;	min-height: 210px; }
.h215 { height: 215px;	min-height: 215px; }
.h220 { height: 220px;	min-height: 220px; }
.h225 { height: 225px;	min-height: 225px; }
.h230 { height: 230px;	min-height: 230px; }
.h235 { height: 235px;	min-height: 235px; }
.h240 { height: 240px;	min-height: 240px; }
.h245 { height: 245px;	min-height: 245px; }
.h250 { height: 250px;	min-height: 250px; }
.h255 { height: 255px;	min-height: 255px; }
.h260 { height: 260px;	min-height: 260px; }
.h265 { height: 265px;	min-height: 265px; }
.h270 { height: 270px;	min-height: 270px; }
.h275 { height: 275px;	min-height: 275px; }
.h280 { height: 280px;	min-height: 280px; }
.h285 { height: 285px;	min-height: 285px; }
.h290 { height: 290px;	min-height: 290px; }
.h295 { height: 295px;	min-height: 295px; }
.h300 { height: 300px;	min-height: 300px; }
.h305 { height: 305px;	min-height: 305px; }
.h310 { height: 310px;	min-height: 310px; }
.h315 { height: 315px;	min-height: 315px; }
.h320 { height: 320px;	min-height: 320px; }
.h325 { height: 325px;	min-height: 325px; }
.h330 { height: 330px;	min-height: 330px; }
.h335 { height: 335px;	min-height: 335px; }
.h340 { height: 340px;	min-height: 340px; }
.h345 { height: 345px;	min-height: 345px; }
.h350 { height: 350px;	min-height: 350px; }
.h355 { height: 355px;	min-height: 355px; }
.h360 { height: 360px;	min-height: 360px; }
.h365 { height: 365px;	min-height: 365px; }
.h370 { height: 370px;	min-height: 370px; }
.h375 { height: 375px;	min-height: 375px; }
.h380 { height: 380px;	min-height: 380px; }
.h385 { height: 385px;	min-height: 385px; }
.h390 { height: 390px;	min-height: 390px; }
.h395 { height: 395px;	min-height: 395px; }
.h400 { height: 400px;	min-height: 400px; }
.h405 { height: 405px;	min-height: 405px; }
.h410 { height: 410px;	min-height: 410px; }
.h415 { height: 415px;	min-height: 415px; }
.h420 { height: 420px;	min-height: 420px; }
.h425 { height: 425px;	min-height: 425px; }
.h430 { height: 430px;	min-height: 430px; }
.h435 { height: 435px;	min-height: 435px; }
.h440 { height: 440px;	min-height: 440px; }
.h445 { height: 445px;	min-height: 445px; }
.h450 { height: 450px;	min-height: 450px; }
.h455 { height: 455px;	min-height: 455px; }
.h460 { height: 460px;	min-height: 460px; }
.h465 { height: 465px;	min-height: 465px; }
.h470 { height: 470px;	min-height: 470px; }
.h475 { height: 475px;	min-height: 475px; }
.h480 { height: 480px;	min-height: 480px; }
.h485 { height: 485px;	min-height: 485px; }
.h490 { height: 490px;	min-height: 490px; }
.h495 { height: 495px;	min-height: 495px; }
.h500 { height: 500px;	min-height: 500px; }
.h505 { height: 505px;	min-height: 505px; }
.h510 { height: 510px;	min-height: 510px; }
.h515 { height: 515px;	min-height: 515px; }
.h520 { height: 520px;	min-height: 520px; }
.h525 { height: 525px;	min-height: 525px; }
.h530 { height: 530px;	min-height: 530px; }
.h535 { height: 535px;	min-height: 535px; }
.h540 { height: 540px;	min-height: 540px; }
.h545 { height: 545px;	min-height: 545px; }
.h550 { height: 550px;	min-height: 550px; }
.h555 { height: 555px;	min-height: 555px; }
.h560 { height: 560px;	min-height: 560px; }
.h565 { height: 565px;	min-height: 565px; }
.h570 { height: 570px;	min-height: 570px; }
.h575 { height: 575px;	min-height: 575px; }
.h580 { height: 580px;	min-height: 580px; }
.h585 { height: 585px;	min-height: 585px; }
.h590 { height: 590px;	min-height: 590px; }
.h595 { height: 595px;	min-height: 595px; }
.h600 { height: 600px;	min-height: 600px; }
.h605 { height: 605px;	min-height: 605px; }
.h610 { height: 610px;	min-height: 610px; }
.h615 { height: 615px;	min-height: 615px; }
.h620 { height: 620px;	min-height: 620px; }
.h625 { height: 625px;	min-height: 625px; }
.h630 { height: 630px;	min-height: 630px; }
.h635 { height: 635px;	min-height: 635px; }
.h640 { height: 640px;	min-height: 640px; }
.h645 { height: 645px;	min-height: 645px; }
.h650 { height: 650px;	min-height: 650px; }
.h655 { height: 655px;	min-height: 655px; }
.h660 { height: 660px;	min-height: 660px; }
.h665 { height: 665px;	min-height: 665px; }
.h670 { height: 670px;	min-height: 670px; }
.h675 { height: 675px;	min-height: 675px; }
.h680 { height: 680px;	min-height: 680px; }
.h685 { height: 685px;	min-height: 685px; }
.h690 { height: 690px;	min-height: 690px; }
.h695 { height: 695px;	min-height: 695px; }
.h700 { height: 700px;	min-height: 700px; }
.h705 { height: 705px;	min-height: 705px; }
.h710 { height: 710px;	min-height: 710px; }
.h715 { height: 715px;	min-height: 715px; }
.h720 { height: 720px;	min-height: 720px; }
.h725 { height: 725px;	min-height: 725px; }
.h730 { height: 730px;	min-height: 730px; }
.h735 { height: 735px;	min-height: 735px; }
.h740 { height: 740px;	min-height: 740px; }
.h745 { height: 745px;	min-height: 745px; }
.h750 { height: 750px;	min-height: 750px; }
.h755 { height: 755px;	min-height: 755px; }
.h760 { height: 760px;	min-height: 760px; }
.h765 { height: 765px;	min-height: 765px; }
.h770 { height: 770px;	min-height: 770px; }
.h775 { height: 775px;	min-height: 775px; }
.h780 { height: 780px;	min-height: 780px; }
.h785 { height: 785px;	min-height: 785px; }
.h790 { height: 790px;	min-height: 790px; }
.h795 { height: 795px;	min-height: 795px; }
.h800 { height: 800px;	min-height: 800px; }
.h805 { height: 805px;	min-height: 805px; }
.h810 { height: 810px;	min-height: 810px; }
.h815 { height: 815px;	min-height: 815px; }
.h820 { height: 820px;	min-height: 820px; }
.h825 { height: 825px;	min-height: 825px; }
.h830 { height: 830px;	min-height: 830px; }
.h835 { height: 835px;	min-height: 835px; }
.h840 { height: 840px;	min-height: 840px; }
.h845 { height: 845px;	min-height: 845px; }
.h850 { height: 850px;	min-height: 850px; }
.h855 { height: 855px;	min-height: 855px; }
.h860 { height: 860px;	min-height: 860px; }
.h865 { height: 865px;	min-height: 865px; }
.h870 { height: 870px;	min-height: 870px; }
.h875 { height: 875px;	min-height: 875px; }
.h880 { height: 880px;	min-height: 880px; }
.h885 { height: 885px;	min-height: 885px; }
.h890 { height: 890px;	min-height: 890px; }
.h895 { height: 895px;	min-height: 895px; }
.h900 { height: 900px;	min-height: 900px; }
.h905 { height: 905px;	min-height: 905px; }
.h910 { height: 910px;	min-height: 910px; }
.h915 { height: 915px;	min-height: 915px; }
.h920 { height: 920px;	min-height: 920px; }
.h925 { height: 925px;	min-height: 925px; }
.h930 { height: 930px;	min-height: 930px; }
.h935 { height: 935px;	min-height: 935px; }
.h940 { height: 940px;	min-height: 940px; }
.h945 { height: 945px;	min-height: 945px; }
.h950 { height: 950px;	min-height: 950px; }
.h955 { height: 955px;	min-height: 955px; }
.h960 { height: 960px;	min-height: 960px; }
.h965 { height: 965px;	min-height: 965px; }
.h970 { height: 970px;	min-height: 970px; }
.h975 { height: 975px;	min-height: 975px; }
.h980 { height: 980px;	min-height: 980px; }
.h985 { height: 985px;	min-height: 985px; }
.h990 { height: 990px;	min-height: 990px; }
.h995 { height: 995px;	min-height: 995px; }
.h1000 { height: 1000px; min-height: 1000px; }
/* eo height spacers */