* {
	margin:0px;
	padding:0;
	font-size:9pt;
	font-family: Arial, Helvetica, sans-serif;
	color:#333;
}
body, html {
	color: #000;
	text-align: center; /*** Centers the design in old IE versions ***/
	height: 100%;
}
img {
	border:0;
}
hr {
	size:1px;
	color:#900;
	margin-bottom:7px;
}
body {
	background:#111;
}
h1 {
	font-size:12pt;
}
h2 {
	font-size:10pt;
}
h3 {
	font-size:9pt;
}
h1, h2, h3 {
	font-weight: bold;
	padding-bottom: 5px;
}
p {
	padding: 7px 0 7px 0;
}
label {
	float: left;
	text-align: left;
	margin: 0px;
	width: 150px;
}
input, textarea {
	font-family:Tahoma;
	color:#5C5C5C;
	margin:1px;
}
a:link {
	/*text-decoration:none;*/
	color:#000;
}
/*a:visited {
	text-decoration:none;
	color:#666666;
}*/
a:hover {
	/*text-decoration:underline;*/
	color:#666666;
}
.clear {
	clear: both;
}
#mainContainer {
	width: 960px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 100%;
	background: #FFF; /*** This is our faux columns ***/
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
	padding:0 10px 0 10px;
}
* html #mainContainer {
	height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	height:280px;
}
#header input {
	font-size:11px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
/*padding-left: 180px;*/
}
* html .outer {
/*padding-right: 180px;*/ /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
	width: 960px;
	/*width: 780px; ** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
	padding-bottom: 65px;
}
* html .inner {
	width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
	float: left;
	width:960px;/*width: 770px;*/
	/*margin-left: -180px; ** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
	float: right;
	width:760px;
	/*width: 580px;*/
	background: #fff;
}
#fck {
	float:none;
	width:100%;
	background:#fff;
	text-align:left;
	padding: 1px;
}

#fck ol, #fck ul {
	margin: 3px 0 5px 35px;
}
#fck li {
	padding-bottom: 2px;
}

* html #content {
	position: relative;  /*** IE needs this  ***/
}
.contentWrap {
	padding: 5px 10px;
}
.contentWrap ol, .contentWrap ul {
	margin: 3px 0 5px 35px;
}
.contentWrap li {
	padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 180px;
	padding: 5px;
	padding-left:0;
}
* html #left {
	position: relative;  /*** IE needs this  ***/
}
#left * {
	font-size:11px;
}
#left ul {
	list-style: none;
	padding-bottom: 4px;
}
#left li {
	padding-bottom: 2px;
}
#left h1 {
	font-size:12px;
	color:#900;
	text-transform:uppercase;
}
#left h2 {
	font-size:11px;
}
#left p {
	text-align:justify;
}
/*************************
RIGHT COLUMN
**************************/
#right {
	float: right;
	width: 180px;
	padding: 5px;
	padding-right:0;
	margin-top:-30px;
	margin-right:-10px;
}
* html #right {
	position: relative;  /*** IE needs this  ***/
	margin-right: -180px; /*** IE gets this margin. ***/
}
#right * {
	font-size:11px;
}
#right ul {
	list-style: none;
	padding-bottom: 4px;
}
#right li {
	padding-bottom: 2px;
}
#right h1 {
	font-size:12px;
	color:#900;
	text-transform:uppercase;
}
#right h2 {
	font-size:11px;
}
/**************************
FOOTER
**************************/
#footer {
	width: 960px;
	height: 65px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin: 0 auto;
	margin-top: -65px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
	text-align: left;
	background:url(/www/images/layout/footerBg.gif) top right no-repeat;
}
#footer * {
	font-size:10px;
}
/**************************
LOADING
**************************/
#loading {
	position:absolute;
	left:45%;
	top:40%;
	padding:2px;
	z-index:20001;
	height:auto;
	width:140px;
	display:none;
}
#loading img {
	margin-bottom:5px;
	margin-top:5px;
}
#loading .loading-indicator {
	background:white;
	color:#000;
	font:bold 13px arial, helvetica;
	padding:10px;
	margin:0;
	text-align:center;
	height:auto;
}
/**************************
TABLES
**************************/
.table {
	background:#CCC;
	border: none;
}
.table td, .table th {
	background-color:#FFF;
	padding:1px 2px 1px 3px;
	vertical-align:top;
}
.table th {
	font-weight:bold;
}
/**************************
PRICE & CART
**************************/
.price *, .cart *, .archive * {
	font-size:10px;
}
.price th, .cart th, .archive th {
	font-size:11px;
	background-color:#DFDFDF;
	text-align:center;
	vertical-align:middle;
}
.price .searchRow td {
	padding:0px;
}
.price .searchRow input {
	width:90%;
	padding:2px;
	margin:1px;
	border:none 0px;
	background-color:#DFDFDF;
}
.price .searchRow input.btn {
	width:70px;
}
.price img.btn, .cart img.btn {
	cursor:pointer;
	margin-top:4px
}

.cart .summary *, .orderDetails .summary *{
	font-weight:bold;
	font-size:11px;
}

/**************************
MAIN MENU
**************************/
.nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 189px;
}
.nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: right;
	cursor: pointer;
	width: 189px;
	height:30px;
}
.nav ul li a {
	display: block;
	width:189px;
	height:30px;
	padding:0;
	background: url(/www/images/layout/navBtn.gif) no-repeat right;
	text-decoration:none;
}
.nav a:hover {
	text-decoration:underline;
}
.nav span {
	display: block;
	font-size:12px;
	/*font-weight:bold;*/
	text-transform: uppercase;
	text-align:right;
	text-decoration:none;
	color:#7f7f7f;
	padding:9px 34px 0 0;
}

/**************************
USER MENU
**************************/
.userNav ul {
	width: 178px;
}
.userNav ul li {
	width: 178px;
	height:auto;
}
.userNav ul li a {
	width: 178px;
	height:auto;
	background: none;
}
.userNav a:hover {
	
}
.userNav span {
	text-align:left;
	font-size:12px;
	padding:2px 0 0 5px;
}
.userNav span.left {
	width:140px;
}
.userNav span.right {
	width:25px;
	text-align:right;
	float:right;
	padding-left:8px;
}

/**************************
CURVES
**************************/

.curved {
	background: transparent;
	width:100%;
}
.curved .b1, .curved .l1, .curved .r1 {
	display:block;
	overflow:hidden;
	height:1px;
	margin:0 5px;
	background:#BBB;
	font-size:1px;
}
.curved .b2, .curved .l2, .curved .r2 {
	display:block;
	overflow:hidden;
	height:1px;
	margin:0 3px;
	background:#FFF;
	border-left:2px solid #BBB;
	border-right:2px solid #BBB;
	font-size:1px;
}
.curved .b3, .curved .l3, .curved .r3 {
	display:block;
	overflow:hidden;
	height:1px;
	margin:0 2px;
	background:#FFF;
	border-left:1px solid #BBB;
	border-right:1px solid #BBB;
	font-size:1px;
}
.curved .b4, .curved .l4, .curved .r4 {
	display:block;
	overflow:hidden;
	height:2px;
	margin:0 1px;
	background:#FFF;
	border-left:1px solid #BBB;
	border-right:1px solid #BBB;
	font-size:1px;
}
.curved .bcontent, .curved .lcontent, .curved .rcontent {
	display:block;
	border:0 solid #BBB;
	border-width:0 1px;
	background:#FFF;
}
.curved .l1, .curved .l2, .curved .l3, .curved .l4, .curved .lcontent {
	border-right:none
}
.curved .r1, .curved .r2, .curved .r3, .curved .r4, .curved .rcontent {
	border-left:none;
}
.curved .l1 {
	margin-right:0;
}
.curved .r1 {
	margin-left:0;
}
/**************************
PAGINATOR SECTION
**************************/
.pg {
	clear: both;
	margin: 2em 0px 2em 10px;
	color: #000;
	height: 2em;
}
.pg a {
	border-right: #000 1px solid;
	padding-right: 8px;
	border-top: #000 1px solid;
	display: block;
	padding-left: 8px;
	float: left;
	padding-bottom: 1px;
	margin: 0px 5px 0px 0px;
	border-left: #000 1px solid;
	color: #000;
	padding-top: 1px;
	border-bottom: #000 1px solid;
	text-align: center;
	text-decoration: none;
}
.pg strong {
	border: #000 1px solid;
	padding-right: 8px;
	display: block;
	padding-left: 8px;
	float: left;
	padding-bottom: 1px;
	margin: 0px 5px 0px 0px;
	color: #000;
	padding-top: 1px;
	text-align: center;
	text-decoration: none;
}
.pg a:hover {
	border-left-color: #000;
	background: #eee;
	border-bottom-color: #000;
	color: #000;
	border-top-color: #000;
	border-right-color: #000
}
.pg strong {
	border-top-width: 0px;
	padding-right: 6px;
	padding-left: 6px;
	font-weight: bold;
	border-left-width: 0px;
	font-size: 107%;
	border-bottom-width: 0px;
	padding-bottom: 2px;
	color: #000;
	padding-top: 2px;
	border-right-width: 0px;
	color:#000;
}
.pg-next {
	border-top-width: 2px;
	margin-top: -2px;
	border-left-width: 2px;
	border-bottom-width: 2px;
	padding-bottom: 0px;
	font: 107% tahoma, helvetica, sans-serif;
	padding-top: 0px;
	border-right-width: 2px;
	_margin-top: -2px;
}
.pg-prev {
	border-top-width: 2px;
	margin-top: -2px;
	border-left-width: 2px;
	border-bottom-width: 2px;
	padding-bottom: 0px;
	font: 107% tahoma, helvetica, sans-serif;
	padding-top: 0px;
	border-right-width: 2px;
	_margin-top: -2px;
}
.pg-next {
	margin-left: 9px
}
.pg-prev {
	margin-right: 14px
}
/**************************
NEWS SECTION
**************************/
.newsItem {
	padding:7px;
}
.newsItem * {
	font-size:11px;
}
.newsItem .date {
	font-family:Verdana, Geneva, sans-serif;
}
.newsItem .title {
	font-weight:bold;
}
.newsItem .content {
/*text-align:justify;*/
}
.newsItem .url {
}
/**************************
COMMON
**************************/
.pad5 {
	padding:5px;
}
.printBtn{
	margin-top:10px;
	padding:1px 5px 1px 25px;
	background:url(/www/images/icons/printer.png) no-repeat scroll 5px 1px;
	border: 1px solid;
}
