@charset "UTF-8";

/* NOTES:
- it's good practice to zero the MARGIN and PADDING of the body element to account for differing browser defaults.
- zeroing the MARGIN of the last element in the first div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse.
- zeroing the MARGINS of the first element in the last div will avoid the possibility of margin collapse - a space between divs.
- PADDING the first element in the last div will create space, just as the the MARGIN would have, without the margin collapse issue.
*/

/* body */
body {
	background-color: #000;
	background-image: url(../images/interface/wallpaper.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center top;
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFF;
	line-height: 24px;
	letter-spacing: 1px;
}


/* contactBar */
.oneColFixCtrHdr #contactBar {
	background-color: #FFF;
	background-image: url(../images/interface/contactBar_bg.jpg);
	background-repeat: repeat-x;
	background-attachment: fixed;
	background-position: center top;
	height: 30px;
	width: 100%;
	position: fixed;
	top: 0px;
}
.oneColFixCtrHdr #contactBar p {
	margin: 0px;
	padding-top: 1px;
	text-align: center;
	text-transform: uppercase;
	color: #000;
}
.oneColFixCtrHdr #contactBar p span {
	color: #F33;
}
.oneColFixCtrHdr #contactBar a,
.oneColFixCtrHdr #contactBar a:link,
.oneColFixCtrHdr #contactBar a:visited {
	padding: 2px 2px 2px 2px;
	text-decoration: none;
	color: #000;
}
.oneColFixCtrHdr #contactBar a:hover,
.oneColFixCtrHdr #contactBar a:active {
	background-color: #F33;
	color: #FFF;
}

/* container */
.oneColFixCtrHdr #container {
	background-color: transparent;
	margin: 0px auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top: 30px;
	border: 0px solid #000;
	width: 900px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/* header */
.oneColFixCtrHdr #header {
	background-color: transparent;
	background-image: url(../images/interface/header.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: center top;
	margin-bottom: 2px;
	height: 270px;
	width: 900px;
}

/* navbar */
.oneColFixCtrHdr #navbar {
	background-color: transparent;
	background-image: url(../images/interface/navbar_bg.jpg);
	background-repeat: repeat-x;
	background-attachment: scroll;
	background-position: center top;
	height: 60px;
	width: 900px;
}
.oneColFixCtrHdr #navbar ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}
.oneColFixCtrHdr #navbar li {
	float: left;
	border-right: 1px solid #CCC;
	height: 60px;
	line-height: 60px;
}
.oneColFixCtrHdr #navbar a:link,
.oneColFixCtrHdr #navbar a:visited {
	display: block;
	width: 179px;
	height: 60px;
	font-weight: bold;
	color: #000;
	font-size: 14px;
	background-color: transparent;
	text-align: center;
	padding: 0px;
	text-decoration: none;
	text-transform: uppercase;
}
.oneColFixCtrHdr #navbar a:hover,
.oneColFixCtrHdr #navbar a:active {
	background-color: #CCC;
}

/* mainContent */
.oneColFixCtrHdr #mainContent {
	background-color: #FFF;
	padding: 40px 30px;
	text-align: justify; /* this overrides the text-align: center on the body element. */
	color: #000;
}
.oneColFixCtrHdr #mainContent h1 span {
	font-size: 12px;
	vertical-align: middle;
	text-transform: uppercase;
}
.oneColFixCtrHdr #mainContent a,
.oneColFixCtrHdr #mainContent a:link,
.oneColFixCtrHdr #mainContent a:visited {
	padding: 2px 2px 2px 2px;
	text-decoration: none;
	color: #000;
}
.oneColFixCtrHdr #mainContent a:hover,
.oneColFixCtrHdr #mainContent a:active {
	background-color: #F33;
	color: #FFF;
}
.oneColFixCtrHdr #mainContent table { 
	width: 100%;
	margin-bottom: 30px;
}
.oneColFixCtrHdr #mainContent hr {
	clear:both;
	background: #EEE;
	width: 100%;
	height: 2px;
	margin-bottom: 40px;
	border: 0px;
}


.oneColFixCtrHdr #contactusncontactform {
	margin-top: -10px;
}
.oneColFixCtrHdr #contactusncontactform #contactus {
	float: left;
	width: 420px;
	border-right:1px solid #EEE;
	padding-bottom: 30px;
}
.oneColFixCtrHdr #contactusncontactform #contactus h3 {
	margin-bottom:0px;
	padding-bottom:0px;
}
.oneColFixCtrHdr #contactusncontactform #contactus ul {
	margin: 0px;
	margin-bottom:40px;
	padding: 0px;
	list-style-type: none;
}
.oneColFixCtrHdr #contactusncontactform #contactus li {
	display: block;
	text-align: left;
	line-height: 20px;
}
.oneColFixCtrHdr #contactusncontactform #contactform {
	float: right;
	width: 380px;
}
.oneColFixCtrHdr #contactusncontactform #contactform h4 {
	font-size: 12px;
	margin-bottom:0px;
	padding-bottom:0px;
}
.oneColFixCtrHdr #contactusncontactform #contactform input[type=text],
.oneColFixCtrHdr #contactusncontactform #contactform textarea,
.oneColFixCtrHdr #contactusncontactform #contactform input[type=password] {
	margin-bottom:12px;
	width: 380px;
}
.oneColFixCtrHdr #contactusncontactform #contactform input.areacode,
.oneColFixCtrHdr #contactusncontactform #contactform input.prefix{
	width: 38px;
}
.oneColFixCtrHdr #contactusncontactform #contactform input.suffix{
	width: 60px;
}
.oneColFixCtrHdr #contactusncontactform #contactform textarea {
	color:#666;
	height: 150px;
	background-color: #FFF;
}
.oneColFixCtrHdr #contactusncontactform #contactform textarea:hover {
	background-color: #EEE;
}
/*.oneColFixCtrHdr #contactusncontactform #contactform select {
	width: 180px;
	color: #666;
	font-size:13px; font-weight:normal;
	height:24px;
	background-color: #FC9;
	border-style: solid;
}*/


.oneColFixCtrHdr #mainContent input[type=text],
.oneColFixCtrHdr #mainContent input[type=password] {
	/*position:relative;
	top:0px;*/
	color:#666;
	/*font-size:13px;*/
	height:20px;
	/*border:thin;*/
	border: 1px solid #999;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	background-color: #FFF;
}
.oneColFixCtrHdr #mainContent input[type=text]:hover,
.oneColFixCtrHdr #mainContent input[type=password]:hover {
	background-color: #EEE;
}
.oneColFixCtrHdr #mainContent .login {
	background-color: #FFF;
	background-image: url(../images/buttons/login.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left top;
	height: 33px;
    width: 175px;
    border: none;
	cursor:pointer;
	text-indent: -9999px;
}
.oneColFixCtrHdr #mainContent .login:hover {
	background-image: url(../images/buttons/login.jpg);
	background-repeat: no-repeat;
	background-position: -177px top;
}
.oneColFixCtrHdr #mainContent .save {
	background-color: #FFF;
	background-image: url(../images/buttons/save.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left top;
	height: 33px;
    width: 175px;
    border: none;
	cursor:pointer;
	text-indent: -9999px;
}
.oneColFixCtrHdr #mainContent .save:hover {
	background-image: url(../images/buttons/save.jpg);
	background-repeat: no-repeat;
	background-position: -177px top;
}
.oneColFixCtrHdr #mainContent .submit {
	background-color: #FFF;
	background-image: url(../images/buttons/submit.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left top;
	height: 33px;
    width: 175px;
    border: none;
	cursor:pointer;
	text-indent: -9999px;
}
.oneColFixCtrHdr #mainContent .submit:hover {
	background-image: url(../images/buttons/submit.jpg);
	background-repeat: no-repeat;
	background-position: -177px top;
}
.oneColFixCtrHdr #mainContent .reset {
	background-color: #FFF;
	background-image: url(../images/buttons/reset.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left top;
	height: 33px;
    width: 175px;
    border: none;
	cursor:pointer;
	text-indent: -9999px;
}
.oneColFixCtrHdr #mainContent .reset:hover {
	background-image: url(../images/buttons/reset.jpg);
	background-repeat: no-repeat;
	background-position: -177px top;
}
.oneColFixCtrHdr #mainContent .preview {
	background-color: #FFF;
	background-image: url(../images/buttons/preview.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: left top;
	height: 33px;
    width: 175px;
    border: none;
	cursor:pointer;
	text-indent: -9999px;
}
.oneColFixCtrHdr #mainContent .preview:hover {
	background-image: url(../images/buttons/preview.jpg);
	background-repeat: no-repeat;
	background-position: -177px top;
}
/*.oneColFixCtrHdr #mainContent input[type=button],
.oneColFixCtrHdr #mainContent input[type=submit],
.oneColFixCtrHdr #mainContent input[type=reset] {
	padding-top:3px;
	color:#999;
	text-transform:uppercase;
	font-size:12px; font-weight:bold;
	width:125px;
	height:24px;
	background-color:#666;
	border-style:groove;
	border-bottom: 1px solid #999;
}
.oneColFixCtrHdr #mainContent .button:hover {
	color:#FFF;
	text-transform:uppercase;
	font-size:12px; font-weight:bold;
	width:125px;
	height:24px;
	background-color:#F33;
	border-style:outset;
	border-bottom: 1px solid #999;
}*/
/*.oneColFixCtrHdr #mainContent input[type=image] {
	position:relative;
	top:0px;
	color:#006633;
	font-size:13px;
	height:20px;
	border:none;
}*/
/*.oneColFixCtrHdr #mainContent textarea { 
	position:relative;
	top:-5px;
	color:#000;
	font-size:12px; font-weight:bold;
	border-top: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
}*/
/*.oneColFixCtrHdr #mainContent input.btn {
	color:#666666;
	font-size:12px; font-weight:bold;
	width:125px;
	height:28px;
	background-color:#CCCCCC;
	border-bottom: 1px solid #000000;
}*/
/*.oneColFixCtrHdr #mainContent input[type=checkbox] { 
	position:relative;
	top:5px;
	right:2px;
	margin-bottom:12px;
	// margin-bottom:12px;
	// margin-left: 20px;
}
.oneColFixCtrHdr #mainContent input[type=radio] { 
	position:relative;
	top:6px;
	left:1px;
	margin-bottom:12px;
}*/
/*.oneColFixCtrHdr #mainContent input.checkbox {
	position:relative;
	top:6px;
	right:4px;
}*/
/*.oneColFixCtrHdr #mainContent select {
	color:#FFF;
	font-size:13px; font-weight:normal;
	height:24px;
	background-color:#036;
}*/
.oneColFixCtrHdr #mainContent p.alert {
	color: #F33;
	font-weight:bold;
}
.oneColFixCtrHdr #mainContent ul.alert {
	list-style-type:disc;
}
.oneColFixCtrHdr #mainContent ul.alert li {
	color: #F33;
	text-align: left;
}
.oneColFixCtrHdr #mainContent p.alert2 {
	color: #F33;
	font-weight:bold;
	text-transform:uppercase;
}


.oneColFixCtrHdr #mainContent_tinymce {
	margin-bottom: 30px;
}
.oneColFixCtrHdr #mainContent_tinymce a,
.oneColFixCtrHdr #mainContent_tinymce a:link,
.oneColFixCtrHdr #mainContent_tinymce a:visited {
	padding:0px;
	text-decoration: none;
	color: #000;
	border: 0px solid #EEE; /*#336699*/
}
.oneColFixCtrHdr #mainContent_tinymce a:hover,
.oneColFixCtrHdr #mainContent_tinymce a:active {
	background-color:#999;
	color: #FFF;
	border: 0px solid #F33; /*#336699*/
}
.oneColFixCtrHdr #mainContent_tinymce table { 
	background-color:#EEE;
	width: 100%;
	margin: 0px;
}
.oneColFixCtrHdr #mainContent_tinymce .mceStatusbar { 
	background-color:#999;
}
.oneColFixCtrHdr #mainContent_tinymce .mceStatusbar a,
.oneColFixCtrHdr #mainContent_tinymce .mceStatusbar a:link,
.oneColFixCtrHdr #mainContent_tinymce .mceStatusbar a:visited {
	padding: 2px 2px 2px 2px;
	text-decoration: none;
	color: #FFF;
}
.oneColFixCtrHdr #mainContent_tinymce .mceStatusbar a:hover,
.oneColFixCtrHdr #mainContent_tinymce .mceStatusbar a:active {
	background-color:#F33;
	color: #FFF;
}
.oneColFixCtrHdr #mainContent_tinymce table.mceLayout { 
	border:0px;
}
.oneColFixCtrHdr #mainContent_tinymce table.mceLayout tr.mceFirst td {
	border-top:0px solid #CCC
}
/* Black */
/*.o2k7SkinBlack .mceToolbar .mceToolbarStart span, .o2k7SkinBlack .mceToolbar .mceToolbarEnd span, .o2k7SkinBlack .mceButton, .o2k7SkinBlack .mceSplitButton, .o2k7SkinBlack .mceSeparator, .o2k7SkinBlack .mceSplitButton a.mceOpen, .o2k7SkinBlack .mceListBox a.mceOpen {background-image:url(img/button_bg_black.png)}
.o2k7SkinBlack table, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack .mceMenuItemTitle span.mceText, .o2k7SkinBlack .mceStatusbar div, .o2k7SkinBlack .mceStatusbar span, .o2k7SkinBlack .mceStatusbar a {background:#535353; color:#FFF}
.o2k7SkinBlack table.mceListBoxEnabled .mceText, o2k7SkinBlack .mceListBox .mceText {background:#FFF; border:1px solid #CBCFD4; border-bottom-color:#989FA9; border-right:0}
.o2k7SkinBlack table.mceListBoxEnabled:hover .mceText, .o2k7SkinBlack .mceListBoxHover .mceText, .o2k7SkinBlack .mceListBoxSelected .mceText {background:#FFF; border:1px solid #FFBD69; border-right:0}
.o2k7SkinBlack .mceExternalToolbar, .o2k7SkinBlack .mceListBox .mceText, .o2k7SkinBlack div.mceMenu, .o2k7SkinBlack table.mceLayout, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack table.mceLayout tr.mceFirst td, .o2k7SkinBlack table.mceLayout, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack table.mceLayout tr.mceLast td, .o2k7SkinBlack .mceIframeContainer {border-color: #535353;}
.o2k7SkinBlack table.mceSplitButtonEnabled:hover a.mceAction, .o2k7SkinBlack .mceSplitButtonHover a.mceAction, .o2k7SkinBlack .mceSplitButtonSelected {background-image:url(img/button_bg_black.png)}
.o2k7SkinBlack .mceMenu .mceMenuItemEnabled a:hover, .o2k7SkinBlack .mceMenu .mceMenuItemActive {background-color:#FFE7A1}*/







.oneColFixCtrHdr #mainContent p img.productDisplay_right {
	vertical-align: text-top;
	float: right;
	margin-left: 20px;
	margin-top: 6px;
	margin-bottom: 6px;
	border: 1px solid #000;
}
.oneColFixCtrHdr #mainContent p img.productDisplay_left {
	vertical-align: text-top;
	float: left;
	margin-right: 20px;
	margin-top: 6px;
	margin-bottom: 6px;
	border: 1px solid #000;
}


.oneColFixCtrHdr #mainContent div.products {
	margin-right:42px;
	margin-bottom:40px;
	border-bottom:1px solid #CCC;
	border-left:1px solid #CCC;
	background-color:#EEE;
	height:200px;
	width:250px;
	float:left;
	text-align:center;
}
.oneColFixCtrHdr #mainContent div.products img {
	display:inline;
	margin-top:10px;
	border:1px solid #000;
}
.oneColFixCtrHdr #mainContent div.products a img,
.oneColFixCtrHdr #mainContent div.products a:link img,
.oneColFixCtrHdr #mainContent div.products a:visited img {
	border:1px solid #000;
}
.oneColFixCtrHdr #mainContent div.products a:hover img,
.oneColFixCtrHdr #mainContent div.products a:active img{
	border:1px solid #F33;
}
.oneColFixCtrHdr #mainContent div.products a:hover.img,
.oneColFixCtrHdr #mainContent div.products a:active.img {
	background-color:transparent;
}
.oneColFixCtrHdr #mainContent div.products div.title {
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	width:250px;
	line-height:14px;
}



.oneColFixCtrHdr #mainContent div.distributors {
	margin-right: 30px;
	margin-bottom: 40px;
	border-bottom: 0px solid #CCC; /*#336699*/
	border-right: 1px solid #CCC;
	background-color: transparent;
	height: auto;
	width: 254px;
	float: left;
	line-height: 20px;
	font-size: 10px;
	text-align: left;
}
.oneColFixCtrHdr #mainContent div.distributors div.title {
	font-weight: bold;
	width: 254px;
}
.oneColFixCtrHdr #mainContent div.distributors hr {
	background: #EEE;
	width: 200px;
	height: 2px;
	margin-left: 0px;
	margin-bottom: 40px;
	border: 0px;
}


.oneColFixCtrHdr #mainContent table.schematics_details {
	border: 1px solid #CCC;
	background-color: #EEE;
}
.oneColFixCtrHdr #mainContent table.schematics_details th {
	background-color: #FFF;
	background-image: url(../images/interface/contactBar_bg.jpg);
	background-repeat: repeat-x;
	background-attachment: scroll;
	background-position: center top;
	height: 30px;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid #CCC;
	text-transform: uppercase;
}
.oneColFixCtrHdr #mainContent table.schematics_details td {
	vertical-align: top;
}
.oneColFixCtrHdr #mainContent table.schematics_details ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.oneColFixCtrHdr #mainContent table.schematics_details li {
	display: block;
	text-align: left;
	line-height: 30px;
}
.oneColFixCtrHdr #mainContent table.schematics_details .numbers li {
	color: #F33;
	text-align: right;
}


.oneColFixCtrHdr #mainContent table.gallery_main {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}
.oneColFixCtrHdr #mainContent table.gallery_main td.pic {
	vertical-align: top;
	width: 160px;
}
.oneColFixCtrHdr #mainContent table.gallery_main td.pic a img,
.oneColFixCtrHdr #mainContent table.gallery_main td.pic a:link img,
.oneColFixCtrHdr #mainContent table.gallery_main td.pic a:visited img {
	border: 1px solid #000;
}
.oneColFixCtrHdr #mainContent table.gallery_main td.pic a:hover img,
.oneColFixCtrHdr #mainContent table.gallery_main td.pic a:active img {
	border: 1px solid #F33;
}
.oneColFixCtrHdr #mainContent table.gallery_main td.pic a:hover,
.oneColFixCtrHdr #mainContent table.gallery_main td.pic a:active {
	background-color: transparent;
}
.oneColFixCtrHdr #mainContent table.gallery_main th.title {
	color: #F33;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 0px;
	padding-top: 6px;
	padding-left: 20px;
}
.oneColFixCtrHdr #mainContent table.gallery_main td.description {
	padding-left: 20px;
}


.oneColFixCtrHdr #mainContent table.gallery_header {
	background-color: #FFF;
	background-image: url(../images/interface/contactBar_bg.jpg);
	background-repeat: repeat-x;
	background-attachment: scroll;
	background-position: center top;
	border: 1px solid #CCC;
}
.oneColFixCtrHdr #mainContent table.gallery_header td.left {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: left;
	color: #000;
	width:20%;
	text-indent:12px;
	height: 30px;
}
.oneColFixCtrHdr #mainContent table.gallery_header td.right {
	font-size: 10px;
	text-transform: uppercase;
	text-align: right;
	padding-right:12px;
	height: 30px;
}
.oneColFixCtrHdr #mainContent table.gallery_album a img,
.oneColFixCtrHdr #mainContent table.gallery_album a:link img,
.oneColFixCtrHdr #mainContent table.gallery_album a:visited img {
	border:1px solid #000;
}
.oneColFixCtrHdr #mainContent table.gallery_album a:hover img,
.oneColFixCtrHdr #mainContent table.gallery_album a:active img{
	border:1px solid #F33;
}
.oneColFixCtrHdr #mainContent table.gallery_album td.pic a:hover,
.oneColFixCtrHdr #mainContent table.gallery_album td.pic a:active {
	background-color:transparent;
}
	

.oneColFixCtrHdr #mainContent table.administration {
	width: auto;
}
.oneColFixCtrHdr #mainContent table.administration th {
	text-transform: uppercase;
	font-weight: bold;
}


/* footer */
.oneColFixCtrHdr #footer {
	background-color: transparent;
	padding: 0px 10px;
}
.oneColFixCtrHdr #footer p {
	margin: 0px;
	padding: 10px 0px;
	text-align: center;
	font-size: 10px;
}
.oneColFixCtrHdr #footer a,
.oneColFixCtrHdr #footer a:link,
.oneColFixCtrHdr #footer a:visited {
	padding: 2px 2px 2px 2px;
	text-decoration: none;
	color: #FFF;
}
.oneColFixCtrHdr #footer a:hover,
.oneColFixCtrHdr #footer a:active {
	background-color: #FFF;
	color: #F33;
}


.defloater {
	clear:both;
	background-color:#F33;
	height:2px;
	width:100%;
}
