/* CSS Document */

body {
	/* Font Style */
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #000;
	line-height: 1.4;
	
	margin: 0px;
	padding: 0px;
	
	/* Background */
	/*background-color: #FFDFD0;*/
	background-color: #333;
}



/****************************************************************?
/* Table Style*/
td, th {
	padding-left: 0.5em;
	font-size: 12px;
}
td.cell_title{
	font-variant:small-caps;
	font-weight:bold;
}

/* List Style */
ul {
	list-style-type: square;
	list-style-position: outside;
}
ol {
	list-style-type: decimal;
	list-style-position: outside;
}



/****************************************************************?
/* Various font style class */
.small {
	font-size: 10px;
}
.big {
	font-size: 16px;
}
.xbig {
	font-size: 18px;
}
.title {
	/* Big + Bold + uppercasex*/
	display:block;
	font-size: 16px;
	font-weight:bold;
	text-transform:uppercase;
	margin:0px 0 20px 0;
	color: #000;
}
.subtitle {
	/* Big + Bold + lowercase*/
	display:block;
	font-size: 16px;
	font-weight:bold;
/*	text-transform: lowercase;*/
	font-variant:small-caps;
	margin:0px 0 12px 0;
	color: #000;
}
.expanded {
	font-size: 12px;
	line-height: 24px;
	letter-spacing: 2px;
}

/* company highlight */
.gtamps {color:#ff5300; font-weight:bold;}

.price {color:#ff5300; font-weight:bold; font-size:16px;}


/* Centering for a blcok */
.centering {
	display:block;
	text-align:center;
}

/* Separator */
.separator { 
	background-color:#bbbcbf;
	margin:12px 0 12px 0;
	height:1px;width:auto; 
	display:block;
}

/****************************************************************?
/* Link Styles */
/* Text link underline when hover */
a.text_link:link, a.text_link:visited {
	text-decoration: none;
	color: #FFffff;
}
a.text_link:hover, a.text_link:active {
	text-decoration: underline;
	color:#FFffff;
}
/* Text link without decoration */
a.text_link_with_decoration {
	text-decoration: underline;
	color:#ffffff;
}
/* Image link without border */
.image_link {
	border:none;
}
a.email:link, a.email:visited {
	text-decoration: none;
	color: #000;
}
a.email:hover, a.email:active {
	text-decoration: underline;
	color:#000;
}

/****************************************************************?
/* proper clear float implementation */
.clear_flow:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
	overflow: hidden;
    visibility: hidden;
}

.clear_flow {display: inline-block;}

/* Hides from IE-mac \*/
* html .clear_flow {height: 1%;}
.clear_flow {display: block;}
/* End hide from IE-mac */
/* Proper clear float implementation ends */


/****************************************************************?
/* navigation Horizontal */
#navigation {
	position:absolute;
	top:0px;
	left:50%;
	margin-left:-360px;
	margin-top: 190px;
	width:740px;
	text-align:left;
	z-index:1;
}
* html #navigation {margin-left:-370px;}
#navigation ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#navigation li {
	float:left;
	white-space:nowrap;
	height:12px;
	margin: 0px 10px 0px 10px;
	background-color:#fdfdf2;
	border-top:1px solid #000;
	border-right:1px solid #000;
	border-left:1px solid #000;
	padding: 10px 10px 3px 10px;
}
* html #navigation li {	padding: 8px 10px 0px 10px;}
#navigation a:link, #navigation a:visited {
	/*font style */
	font-size:12px;
	text-transform:uppercase;
	font-weight:bold;
	color:#555;
	display:block;
	text-decoration: none;
} 
#navigation a:hover, #navigation a:active {
	/*font style */
	font-size:12px;
	text-transform:uppercase;
	color: #70a5e7;
	display:block; 
	text-decoration: none;
}
/* Navigation -- End -- */



/****************************************************************?
/* Image Float Left */
.img_float_left {
	float:left;margin-right:20px;
	padding:4px; border:4px solid #bbbcbf;
}
.img_float_left_noborder {float:left;margin-right:20px;}

/* Image Float right */
.img_float_right {
	float:right;margin-left:20px;
	padding:4px; border:4px solid #bbbcbf;
}