body {
	margin:0px;
	padding:0px;
	font: 12px/16px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #422101;
	background-color: #FFFFFF;
	background-image: url(../images/bg.gif);
	background-repeat: repeat;
}
h1 {
	font-size: 13px;
	color: #F46E1D;
	font-weight: bold;
	line-height: 14px;
}
h2 {
	font-size: 13px;
	color: #F46E1D;
	font-weight: bold;
}
h3 {
	font-size: 11px;
	color: #F46E1D;
	font-weight: bold;
}
h4 {
	font-size: 10px;
	color: #F46E1D;
	font-weight: bold;
}
a:link {
	color: #666600;
	text-decoration: none;
	font-weight: bold;
}
a:visited {
	text-decoration: none;
	color: #DA782F;
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
	color: #F46E1D;
	font-weight: bold;
}
a:active {
	text-decoration: underline;
	color: #F46E1D;
	font-weight: bold;
}
#wrapper {
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFFFFF;
	position: relative;
	border-right: 1px dashed #D4CEB6;
	border-bottom: 1px dashed #D4CEB6;
	border-left: 1px dashed #D4CEB6;
}
div#header {
	width:770px;
	background-color:#FFFFFF;
	height: 75px;
	background-repeat: no-repeat;
	background-image: url(../images/header.gif);
}
#logo {
	background-color: #FFFFFF;
	position: absolute;
	height: 100px;
	width: 150px;
}
#navbar {
	background-color: #E0DCCD;
	height: 23px;
	width: 100%;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dashed;
	border-bottom-style: dashed;
	border-top-color: #D4CEB6;
	border-bottom-color: #D4CEB6;
}
#navbar-home {
	position: absolute;
	height: 23px;
	width: 62px;
	left: 184px;
}
#navbar-products {
	position: absolute;
	height: 23px;
	width: 103px;
	left: 246px;
}
#navbar-stores {
	position: absolute;
	height: 23px;
	width: 85px;
	left: 349px;
}
#navbar-contact {
	position: absolute;
	height: 23px;
	width: 98px;
	left: 434px;
}
div#contentarea {
	width:770px;
	background-color:#FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #D4CEB6;
}
div#column1 {
	width:150px;
	background-color:#FFFFFF;
	float:left;
	padding-top: 40px;
}
/************ sectionLinks styles **************/

#sectionLinks {
	margin: 0px;
	padding: 0px;
}
.sectionSubLink {
	text-decoration: underline;
	margin-left: 20px;
}

#sectionLinks h3{
	padding: 10px 0px 2px 10px;
}

#sectionLinks a:link, #sectionLinks a:visited {
	display: block;
	padding: 3px 0px 3px 10px;
	color: #666600;
	background-color: #FFFFFF;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dashed;
	border-bottom-style: dashed;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
}

#sectionLinks a:hover{
	background-color: #F4F3EE;
	background-image: none;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #D4CEB6;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #D4CEB6;
	color: #663300;
}
#col1-feature {
	padding-left: 20px;
	font-size: 11px;
	line-height: 14px;
}
#sub-footer {
	width: 770px;
	margin-right: auto;
	margin-left: auto;
}
#sub-footer-content {
	margin-left: 180px;
	font-size: 11px;
}


div#column2 {
	width:436px;
	background-color:#FFFFFF;
	float:left;
	border-left-width: 1px;
	border-left-style: dashed;
	border-left-color: #D4CEB6;
	border-right-width: 1px;
	border-right-style: dashed;
	border-right-color: #D4CEB6;
	padding-top: 40px;
	padding-right: 10px;
	padding-left: 20px;
	background-image: url(../images/bg_blend.jpg);
	background-repeat: no-repeat;
}
#luggagehome {
	padding: 5px;
	border: 1px solid #F46E1D;
}
div#column3 {
	width:140px;
	background-color:#FFFFFF;
	float:left;
	padding-top: 40px;
	font-size: 11px;
	line-height: 14px;
	padding-right: 5px;
	padding-left: 5px;
}
div#footer {
	background-color:#E0DCCD;
	font-size: 11px;
	line-height: 16px;
	width: 770px;
	clear: both;
}
.footer-text {
	margin-left: 180px;
}


/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */


.orange {
	color: #F46E1D;
}
.img-border_floatleft {
	border: 1px solid #F46E1D;
	padding: 5px;
	float: left;
	margin-right: 10px;
}
.img-border_floatright {
	border: 1px solid #F46E1D;
	padding: 5px;
	float: right;
	margin-left: 10px;
}
#special01, #special02, #special03, #special04, #special05, #special06 {
	padding: 5px;
	height: 50px;
	width: 410px;
	position: absolute;
	top: 75px;
	color: #422101;
	visibility: hidden;
	right: 10px;
	font-size: 11px;
	line-height: 14px;
	background-color: #FFFFFF;
	border: 1px solid #FF6600;
}#special04 {
	padding: 5px;
	height: 50px;
	width: 410px;
	position: absolute;
	top: 45px;
	color: #422101;
	visibility: hidden;
	right: 10px;
	font-size: 11px;
	line-height: 14px;
	background-color: #FFFFFF;
	border: 1px solid #FF6600;
}
#special03 {
	height: 50px;
}
#special04 {
	height: 260px;
	width: 425px;
}
#special05 {
	height: 120px;
}
