/* CSS Document */



/* ~~ 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. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #0000CC;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width main surrounds the other divs ~~ */
.main {
	margin: 0;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 1.4;
	width: 723px; /* the auto value on the sides, coupled with the width, centers the layout */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.main .content h1 {
	font-size: 20px;
	font-weight: normal;
}
.main h4 {
	font-weight: normal;
}


/* ~~ 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 ~~ */
.leadin {
	background-repeat: no-repeat;
	background-position: right bottom;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9C9FA1;
}
.main .leadin {
	width: 500px;
}
.leadin p{
	}
.main #about {
	background-image: url(../scott/images/bg_fltraining.jpg);
}
.main #fivesteps {
	background-image: url(../t/images/bg_trainer.jpg);
}


.main .leadin ul {
	list-style-position: outside;
	list-style-image: url(../t/images/zapf1.png);
	line-height: 1.6;
	margin-left: 60px;
	margin-bottom: 16px;
	color: #333;
}

.main .leadin ul li {
	margin-bottom: 8px;
}	
/* ~~ 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;
	background-repeat: no-repeat;
	background-image: url(../scott/images/bgspools.jpg);
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	color: #333;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
	width: 334px;
	margin-left: 8px;
	margin-top: 20px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #main) if the #footer is removed or taken out of the #main */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.main .italic {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-style: italic;
	line-height: 16px;
	padding-left: 10px;
}
.main .leadin h1 {
	font-size: 16px;
	color: #333;
	margin-top: 20px;
}
.main .leadin h2 {
	font-size: 16px;
	color: #333;
	margin-top: 20px;
}
.main .leadin rounded {
	font-family: Georgia, "Times New Roman", Times, serif;
}

.main .leadin p {
	width: 60%;
}

.main .oshaheading {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	background-image: url(../scott/images/osha.gif);
	background-repeat: no-repeat;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: none;
	height: 40px;
	width: 723px;
	float: left;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #9C9FA1;
	border-bottom-color: #9C9FA1;
	background-position: right top;
}
.main .oshaheading h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #9EA1A3;
	font-style: normal;
	margin: 8px;
}

.main #trainer {
	background-image: url(../scott/images/bg_flt01.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9C9FA1;
	width: 100%;
}
.main #training {
	background-image: url(../scott/images/bg_flt02.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9C9FA1;
	width: 100%;
}

.main #about {
	background-image: url(../scott/images/bg_flt04.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9C9FA1;
	width: 100%;
}
.main #5steps {
	background-image: url(../scott/images/bg_flt03.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9C9FA1;
	width: 100%;
}
.main #5steps {
	background-image: url(../scott/images/bg_flt03.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9C9FA1;
	width: 100%;
}

.main #individual {
	background-image: url(../scott/images/bg_flt09.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9C9FA1;
	width: 100%;
}

.main #safety {
	background-image: url(../scott/images/bg_flt08.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #9C9FA1;
	width: 100%;
}

.btn span {
	display: inline-block;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #FFF;
	background-color: #0000CC;
	float: right;
	font-size: 13px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-left: 30px;
	margin-right: 20px;	
}

.btn1 span {
	display: inline-block;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #FFF;
	background-color: #0000CC;
	float: right;
	font-size: 13px;
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-left: 30px;
	margin-right: 260px;
}
.rounded span {
	display: inline-block;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #333;
	background-color: #C0D6EE;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	margin-bottom: -20px;
	border: 1px solid #9C9FA1;
	float: right;
}

.main ul {
	list-style-position: outside;
	list-style-image: url(../scott/images/zapf1.png);
	line-height: 1.6;
	margin-left: 40px;
	margin-bottom: 16px;
}
.main .leadin ul {
	list-style-position: outside;
	list-style-image: url(../scott/images/zapf1.png);
	margin-left: 40px;
	margin-bottom: 16px;
	font-size: 12px;
}
.leadin ul {
	list-style-position: outside;
	list-style-image: url(../scott/images/zapf1.png);
	line-height: 1.6;
	font-size: 12px;
}
.main ol {
	list-style-position: outside;
	line-height: 1.6;
	margin-left: 40px;
	margin-bottom: 16px;
	list-style-type: decimal;
}

.main ul li {
	margin-bottom: 14px;
}
.main .leadin ul li {
}
.main ol li {
	margin-bottom: 14px;
}

.main h2 {
	color: #00C;
	font-size: 12px;
	font-weight: bold;
	padding-left: 10px;
}
.main h1 {
	color: #0000CC;
	font-size: 16px;
}
.main .content h1 {
	font-size: 14px;
	color: #000;
	margin-left: 20px;
	font-weight: bold;
	display: inline-block;
	margin-top: 20px;
}
.main .content h5 {
	color: #00C;
	font-size: 12px;
}

.main h3 {
	font-size: 14px;
	font-weight: bold;
}
.main p em {
	font-weight: bold;
	color: #333;
}
.osharegs {
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
}
.leadin p {
	font-size: 12px;
	padding-left: 10px;
}
.leadin ul {
}
.main .title {
	float: left;
	width: 50%;
	font-size: 14px;
	font-weight: bold;
	color: #00C;
	padding-left: 10px;
}
.redemphasis {
	color: #900;
	font-weight: bold;
}
.blueemphasis {
	font-weight: bold;
	color: #00C;
}

.main #individual {
	background-image: url(../scott/images/bg_flt09.jpg);
}
.main .leadin p {
	font-size: 12px;
}

.main ol {
	list-style-type: decimal;
	font-weight: bold;
}
.main #trainer div {
	width: 500px;
}
.main #trainer div .btn span {
	float: right;
	margin-top: 100px;
}
.main #trainer div ul {
	display: inline-block;
	float: left;
}

.main #about div {
	width: 500px;
}
.main #about div .btn span {
	float: right;
	margin-top: 100px;
}
.main #about div ul {
	display: inline-block;
	float: left;
}

.main #5steps div {
	width: 500px;
}
.main #5steps div .btn span {
	float: right;
	margin-top: 160px;
}
.main #5steps div ol {
	display: inline-block;
	float: left;
	width: 260px;
}

.main #individual div {
	width: 500px;
}
.main #individual div .btn span {
	float: right;
}
.main #individual div ul {
	display: inline-block;
	float: left;
}
.main #training h1 {
	font-size: 16px;
	font-weight: bold;
}
.container #sidebar {
	background-color: #C0D6EE;
	width: 200px;
	float: left;
}
.container #sidebar h1 {
	font-size: 16px;
	color: #000;
}
.container #sidebar ul {
	list-style-type: none;
}
.container #sidebar p {
	color: #333;
}
.container #sidebar ul li {
	line-height: 1.6;
	font-size: 13px;
}
