@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
/*	padding: 0 1em; */
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 1.8em;
}
h2
{
	font-size: 1.6em;
}
h3
{
	font-size: 150%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
	color:#dc7d47;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 25px 4%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border: solid 1px #e1efa2;
	border-width: 5 5px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border-bottom: 1px solid #e1efa2;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
	z-index: 0;
	background-color: #fff;
/*	background-image:url(/Images/Claire_Thomas_sml.jpg); */
    background-image: none;
	background-repeat:no-repeat;
}
#masthead h1
{
    font-size: 2.3em;
	font-weight:bold;
	background:#fff;
	padding: 0px 0px 0px 0px;
/*	margin: 0px 200px 103px 200px; */
	font-family: Verdana, Arial, Helvetica, sans-serif;
    color:#339933;
}
#masthead .bannerimg
{
/*	padding: 10px 0px 0px 10px; */
/*	z-index: 0; */
	margin: 15px 0px 0px 0px; 
}
#masthead h1.banner
{
    font-size: 3em;
	font-weight:bold;
	background:#fff;
	margin:-10px 0px 0px 0px; 
/*	margin:13px 200px 10px 200px; */
	color:#DE4945;
	font-family:"Lucida Grande","Lucida Sans Unicode",arial,sans-serif; 
	letter-spacing:1px;
/*	padding: 0px 0px 5px 10px; */

}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 16em #fff;
	border-right: solid 14em #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	padding: 0px 0px 0px 0px;
	margin: 0 0 0 -1px;
	width: 100%;
    line-height:1.6em;
	color:#003300;
    font-size:1.1em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
/*	font-family:"Lucida Grande","Lucida Sans Unicode",arial,sans-serif; */
	letter-spacing:1px;

}
#middleColumn .inside {
    padding: 0px 0px 0px 5px;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -16em;
	width: 16em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 0;
	padding: 0;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 1px #fff;
	border-top-width: 0;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 10px;
	font-size: 110%;
    color:#72a12d;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
	text-align: center;
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
.hnav ul li span.divider
{
	display: none;
}
* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #565;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background:#fdfef0;
	color: #2C91A3;
	font-family: Verdana, Arial, Helvetica, sans-serif;
/*	font-family: "Trebuchet MS", arial, sans-serif;*/
}
#pageWrapper
{
	font-size: 62.5%;	/* set your default font size here. */
}
#logo
{
	background-color: #fff;
	background-image:url(/Images/TWBLOGO.gif);
	background-repeat:no-repeat;
	background-position:left;
}

.hnav
{
	background-color: #fff;
}
#outerColumnContainer
{
	border-left-color: #fff;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
/*	background-color: #cdc; */
	background-color: #fff;
	color: #dc7d47;
	font-weight: bold;
	margin: 0px 0px 0px 5px;
}
#leftColumn {
	line-height:1.6em;
	color:#dc7d47;
	font-size:1.1em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
/*	font-family:"Lucida Grande","Lucida Sans Unicode",arial,sans-serif; */
	letter-spacing:1px;
}

#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
/*	background-color: #898; */
	color: #39581f;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	font: bold 11px/16px Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	vertical-align:middle;
}
.hnav ul li a:hover
{
	background-color: #990000;
	color: #fff;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
    background-color:#C7EBBE;
	color: #b8ce83;
	text-align: center;
	font-weight:bold;
/*	font-size:0.8em; */
/*	letter-spacing:2px;*/
}
#footer a:hover {
    background-color:#C7EBBE;
}

p{
    line-height:1.8em;
}
#masthead h3{
	color:#339933;
	font-family: Verdana, Arial, Helvetica, sans-serif;
/*	font-family:geneva,arial,sans-serif; */
	text-transform:uppercase;
	word-spacing:4px;
	letter-spacing:3px;
	font-size:1.1em;
	font-weight:bold;
	margin: -10px 0px 0px 0px;
	padding: 0px 0px 0px 0px; 
/*	margin:-100px 200px 50px 200px; */
/*	padding: 0px 0px 0px 10px; */
}
h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
/*	font-family:"Lucida Grande","Lucida Sans Unicode",arial,sans-serif; */
	font-size:1.4em;
/*	margin:10px 0 0 0;*/
	text-transform:capitalize;
}

h2 span{
	background:#fff;
	padding:5px 50px 10px 0;
	margin:30px 5px 5px 30px;
	line-height:2em;
}
a{
	text-decoration:none;
	color:#72a12d;
}

a:hover{
	color:#39581f;
	background-color:#fcfded;
}

#masthead h4 {
	font-size:0.9em;
	margin:-40px 0px 20px 10px;
}
#masthead h5{
/*	color:#DE4945;
	letter-spacing:1px;
    font-size: 2.2em;
	font-weight:bold;
	padding: 0px 0px 5px 10px;
	margin:-35px 0px 0px 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
*/
    font-size: 2.2em;
	font-weight:bold;
	background:#fff;
	color:#DE4945;
	font-family:"Lucida Grande","Lucida Sans Unicode",arial,sans-serif; 
	letter-spacing:1px;
	margin: 5px 0px 0px 0px; 
	padding: 0px 0px 0px 0px; 
/*	margin:-45px 200px 0px 200px;  */
/*	padding: 0px 0px 5px 10px; */
}
#leftColumn .inside
{
/*    padding: 0px 0px 0px 15px;
	margin: 0px 0px 0px 0px;
*/
}
#leftColumn h1
{
background-color:#C7EBBE;
border-bottom:1px solid #2A4776;
border-right:1px solid #2A4776;
border-left:1px solid #2A4776;
    font-size: 1.2em;
	font-weight:bold;
	padding: 0px 6px 0px 10px;
	margin: -1px 0px 1px 15px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
/*	font-family:"Trebuchet MS",arial,sans-serif;*/
	color: #39581f;
}
.designs_container {margin:0 auto; width:auto;text-align:center;}
.preview {float:left;margin:10px 0px;width:33.2%;text-align:center;}
ul.design{width:auto;}ul,li {list-style:none;}ul.detail{padding-bottom:2px;} ul.detail li{display:inline;}.levelone a {border:0;text-align:center;} 

.links_container {float:left;margin:0 auto; width:auto;text-align:center;}
.linkimages {float:left;margin:5px 0px;width:20%;text-align:center; vertical-align:middle}
.linkimages h5 {overflow:hidden;margin:0px 0px;font-size:1em; color:#930209;font-weight:bold;text-align:center;}
ul.linkimage{width:20%; vertical-align:middle;}
ul,li {list-style:none;}
.linkimg a {width:20%;border:0px;text-align:center; vertical-align:middle;} 
.linkimg a:hover {width:20%;border:0px;text-align:center; vertical-align:middle;} 

.menu {
    background-color:#C7EBBE;
    border-bottom:1px solid #2A4776;
    border-right:1px solid #2A4776;
    border-left:0px;
    float:none;
    margin:-1px 0px 15px 16px;
    padding:0 5px;
    width: auto;
}
.menu-list {
    list-style-type:none;
    margin:0;
    padding:2px;
}

.menu li {
	color:#dc7d47;
    display:block;
    font-size:1.1em;
    margin:0;
    padding:3px;
    text-decoration:none;
}

.menu li a, .menu li a:visited {
    border-left: 2px solid #dc7d47;
  	color:#dc7d47;
    font-size:0.9em;
    margin:0;
    padding-left:5px;
    padding-right:9px;
    text-decoration:none;
}

.menu li a:hover {
    border-left:2px solid #39581f;
    padding-left:13px;
    padding-right:9px;
    text-decoration:none;
    background-color:#C7EBBE;
	color: #39581f;
}

#nav, #nav ul {
    background-color:#C7EBBE;
	float: right; 
/*	width: 100%;*/
	list-style: none;
	line-height: 2;
/*	background-color: #ff6633;*/
	font-weight: bold;
	padding: 3px 0px 3px 0px;
	border: solid #565;
	border-width: 0px 1px 1px 1px;
	margin: 0px 0px 0px 0px; 
}

#nav a {
/*	display: block; */
    display: inline;
	width: 12em;
	w\idth: 10em;
/*	color: #fff; */
	text-decoration: none;
	padding: 0 1em 0 1em;
	font-size: 1.5em;
/*	text-transform:uppercase; */
}
#nav a:hover {
background-color:#C7EBBE;
}

#nav a.daddy {
	background: url(/Templates/images/rightarrow2.gif) center right no-repeat;
}

#nav li {
	float: right;
	padding: 0;
/*	width: 10em; */
}

#nav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 13.4em;
	w\idth: 12.9em;
	font-weight: normal;
	border-width: 1px;
	margin: 0;
}

#nav li li {
    padding-right: 0.5em;
	width: 14em;
}

#nav li ul a {
	width: 14em;
	w\idth: 12.5em;
	border-bottom: 1px solid #999999;
}

#nav li ul ul {
	margin: -1.75em 0 0 14.5em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
}

#nav li:hover, #nav li.sfhover {
/*	background-color: #990000; */
	color: #ff6633;

}
DIV.base-layer {
  margin: 0.5em 12px 0.5em 12px;
  padding: 0;
  width: auto;
}

DIV.table-row {
  background: none #ffffcc;
  border: solid #000000 1px;
  color: #000000;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding: 0;
/*  text-align: center; */
  width: 100%;
}

DIV.left-container2 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 25%;
}

DIV.right-container2 {
  border: none;
  float: right;
/*  margin: 0;
  padding: 0;
*/
  width: auto;
}

DIV.container-row {
/*  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
*/
/*  padding: 0; */
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  width: 100%;
  text-align:center;
}
DIV.container1of1 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 100%; 
}
DIV.container1of2 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 25%; 
}
DIV.container2of2 {
  border: none;
  float: right;
/*  margin: 0;*/
  padding: 0px 5px 0px 0px;
  width: auto;
}
DIV.container1of3 {
  border: none;
  float: left;
/*  margin: 0;*/
  padding: 0px 0px 0px 0px;
  width: 33%; 
}
DIV.container2of3 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  padding: 0px 0px 0px 0px;
  width: 34%; 
}
DIV.container3of3 {
  border: none;
  float: right;
/*  margin: 0;*/
  padding: 0px 20px 0px 0px;
  width: auto;
}

DIV.container1of4 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 25%;
}
DIV.container2of4 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 25%;
}
DIV.container3of4 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 25%;
}
DIV.container4of4 {
  border: none;
  float: right;
/*  margin: 0;*/
  padding: 0px 35px 0px 0px;

  width: auto;
}

DIV.container1of5 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 18%;
}
DIV.container2of5 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 18%;
}
DIV.container3of5 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 18%;
}
DIV.container4of5 {
  border: none;
  float: left;
/*  margin: 0;
  padding: 0;
*/
  width: 18%;
}
DIV.container5of5 {
  border: none;
  float: right;
/*  margin: 0;*/
  padding: 0px 2px 0px 0px;

  width: auto;
}

DIV.space-line {
  clear: both;
/*  margin: 0;
  padding: 0;
*/
  width: auto;
}

H4.table-caption {
  background: transparent;
  color: #3333cc;
  font-family: sans-serif;
  font-size: 1em;
  font-style: italic;
  font-weight: bold;
  margin: 0;
  padding: 0.3em;
  text-align: center;
  width: auto;
}

H5.colhdr {
  background: none #ffffcc;
  border: solid #3333cc 1px;
  color: #993333;
  font-family: sans-serif;
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  margin: 0;
  padding: 0.3em 0.3em 0 0.3em;
  text-align: center;
  width: auto;
}

P.text {
/*  border: solid #3333cc 1px; */
  margin: 0;
  padding: 0.3em 0.3em 0 0.3em;
  font-style: normal;
  font-size: 1em;
/*  text-align: center; */
  text-indent: 0;
  width: auto;
}
#leftColumn p.fontsize-set
{
    padding: 0px 0px 0px 15px;
	text-align: center;
}
#leftColumn p.fontsize-set img
{
	border-width: 0;
}
DIV.container-form {
/*    width: 100%;*/
    text-align:center;
    border: solid #000000 1px;
    color: #000000;
}
DIV.form-row {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
	border: solid #000000 1px;
    background-color: #FFFFCC;
    color: #000000;
	
}
/* Hides from IE5-mac \*/
* html .form-row {height: 1%;}
/* End hide from IE5-mac */

DIV.formcol1of2 {
    border: none;
    float: left;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 28%; 
}
DIV.formcol2of2 {
    border: none;
    float: left;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: auto;
}
P.form-text {
/*  border: solid #3333cc 1px; */
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 10px;
  font-style: normal;
  font-size: 1em;
}
.right {
float:right;
margin:-1px 0px 15px 10px;
padding:0 5px;
width: auto;
}
.alert {
    color: #FF0000;
	font-weight:bold;
}
#bottom_menu
{
	border-top: solid 1px #000000;
    background-color:#FFFFFF;
	text-align:center;
}

.smalltextred {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: normal;
	color: #CC0000;
	text-decoration: none;
}
.smalltextgreen {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: normal;
	color: #336600;
	text-decoration: none;
}
DIV.container-links {
/*    width: 100%;*/
    border: solid #FFFFFF 1px;
    background-color: #FFFFFF;
    color: #000000;
}
/* Hides from IE5-mac \*/
* html .sitemap-row {height: 1%;}
/* End hide from IE5-mac */

DIV.sitemapcol1of2 {
    border: none;
    float: left;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 50%;
}
DIV.sitemapcol2of2 {
    border: none;
    float: left;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: auto;
}
/* Hides from IE5-mac \*/
* html .links-row {height: 1%;}
/* End hide from IE5-mac */

div.links-row {
clear:both;
}
DIV.linkscol1of2 {
    border: none;
    float: left;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 25%;
}
DIV.linkscol2of2 {
    border: none;
    float: left;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 70%;
}
.copyright {
	color: #336633;
}
.conditions {
}
