/*
Global Stylesheet

Common styles for all public pages.
*/

/*
-------------------------------------------------------------------
Page 
*/

body
{
	color: #000;
	margin: 0;
	padding: 0;
	background-color: #FFF;
	background-image: url(../../images/gui/bg.gif);
	background-repeat: no-repeat;
	background-position: right top;
	background-attachment: fixed;
}

* { font-family: arial,sans-serif; }
img { border: 0; }

form
{
	margin: 0;
	padding: 0;
}

.fb
{
	/*float break span*/
	clear:both;
	width: 100%;
	display: block;
	height: 0;
	overflow: hidden;
}

/*
-------------------------------------------------------------------
Fonts 
*/

p,td,div,input,select,textarea { font-size: 12px; }

p
{
	margin-top: 0;
	margin-bottom: 6px;
}

ul { list-style: square; }

ul
{
	margin-top: 0;
	margin-bottom: 4px;
}

li
{
	margin-top: 0;
	margin-bottom: 3px;
}

h1
{
	font-size: 30px;
	margin-top: 30px;
	margin-bottom: 12px;
	letter-spacing: -0.05em;
	line-height: 0.9;
}

h2
{
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 10px;
}

h3
{
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 8px;
}

h4
{
	font-size: 14px;
	margin-top: 8px;
	margin-bottom: 6px;
}

.noTopLeading { margin-top: 0; }
.noBottomLeading { margin-bottom: 0; }

.noLeading
{
	margin-top: 0;
	margin-bottom: 0;
}

.small { font-size: 9px; }

/*
-------------------------------------------------------------------
Layout table 
*/

table.layoutTable
{
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: auto;
}

table.layoutTable td
{
	padding: 0;
	vertical-align: top;
}

/*
-------------------------------------------------------------------
Links 
*/

a:link,a:visited
{
	color: #1963F7;
	text-decoration: none;
	background: transparent;
}

a:active,a:hover
{
	color: #1963F7;
	text-decoration: underline;
	background: transparent;
}

.linkTo
{
	padding-right: 8px;
	background-image: url(../../images/gui/link_to.gif) !important;
	background-repeat: no-repeat !important;
	background-position: center right !important;
}

.linkBack
{
	padding-left: 8px;
	background-image: url(../../images/gui/link_back.gif) !important;
	background-repeat: no-repeat !important;
	background-position: center left !important;
}

.linkTop
{
	padding-left: 10px;
	background-image: url(../../images/gui/link_top.gif) !important;
	background-repeat: no-repeat !important;
	background-position: center left !important;
}

/*
-------------------------------------------------------------------
Header
*/

#header
{
	height: 70px;
	overflow: hidden;
	width: 100%;
	background-image: url(../../images/gui/header_bg.gif);
	background-repeat: repeat-x;
	margin-bottom: 13px;
	position: absolute;
}

#top
{
	width: 300px;
	float: left;
}

#headerLeft
{
	width: 300px;
	float: left;
}

#headerRight
{
	float: right;
	margin-right: 4px;
	margin-top: 44px;
	width: 150px;
	text-align: right;
}

#header p
{
	float: right;
	padding-top: 44px;
	padding-right: 8px;
	padding-bottom: 0;
	margin: 0;
	width: 130px;
	text-align: right;
}

/*
-------------------------------------------------------------------
Content
*/

#content
{
	padding-top: 75px;
	padding-left: 155px;
}

#contentWidth
{
	/*Extra div on basic pages.*/
	width: 500px;
	padding-bottom: 20px;
}

.shortContent
{
	/*Since the nav is pos abs, this heightens content in a browser compatible way*/
	margin-bottom: 80px !important;
}

#pageTitle
{
	border-bottom: 1px solid #8F8F8F;
	width: 500px;
	padding: 0;
	margin-top: 0;
	margin-bottom: 12px;
	margin-left: 0;
	margin-right: 0;
}

#subTitle
{
	color: #363636;
	margin-top: 0;
}

/*
-------------------------------------------------------------------
Navigation
*/

#navigation
{
	position: absolute;
	left: 3px;
	top: 75px;
	width: 133px;
	margin-top: 3px;
	margin-left: 3px;
	background: #DE0C00 url(../../images/gui/navigation_logo.gif) no-repeat bottom right;
	border-width: 1px;
	border-style: solid;
	border-top-color: #DE0000;
	border-left-color: #DE0000;
	border-right-color: #910000;
	border-bottom-color: #910000;
}

#navigation a
{
	color: #FFF;
	display: block;
}

#navigation ul
{
	list-style: none;
	margin: 1px;
	padding: 2px;
	padding-bottom: 60px;
	border-width: 1px;
	border-style: solid;
	border-top-color: #DE0C00;
	border-left-color: #DE0C00;
	border-right-color: #910000;
	border-bottom-color: #910000;
}

#navigation li
{
	list-style: none;
	font-size: 12px;
	font-weight: bold;
	margin: 2px;
	margin-bottom: 12px;
	padding-bottom: 1px;
	padding-top: 3px;
	padding-left: 4px;
	padding-right: 3px;
	border-width: 1px;
	border-style: solid;
	border-top-color: #F6A19C;
	border-left-color: #F6A19C;
	border-right-color: #910F06;
	border-bottom-color: #910F06;
}

/*Product catalogue bread crumb navigation*/
#nav
{
	font-weight: bold;
	font-size: 14px;
}

#nav span
{
	padding-left: 4px;
	padding-right: 4px;
}

/*
-------------------------------------------------------------------
Alignments
*/

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

/*
-------------------------------------------------------------------
Floats
*/

.floatLeft { float: left; }
.floatRight { float: right; }
.clearBoth { clear: both; }
.clearLeft { clear: left; }
.clearRight { clear: right; }
.clear { clear: both; }

/*
-------------------------------------------------------------------
Visibility
*/

.noDisplay { display: none; }
.noVisible { visibility: hidden; }

/*
-------------------------------------------------------------------
Footer
*/

#footer
{
	clear: both;
	background: transparent;
	color: #000;
	height: 60px;
	padding-top: 10px;
	padding-left: 3px;
	border-top: 4px solid #DE0C00;
	margin-top: 3px;
	margin-left: 155px;
}

#footer p
{
	/*padding-left: 94px;*/
	margin: 0;
	padding-top: 4px;
}

#footer span { padding-right: 16px; }
