/* THE TEA COMPANY CSS */

html, body	{
	padding: 0;
	margin: 0;
}
body	{
	margin: 0 auto;
	background: #F9F7F4;
	text-align: center; /*Used to centre the page, but text-align: left; added within #wrapper to stop all content from being centre aligned */
}
body, p, input	{
	color: #3C2E2A;
	font-family: Georgia, serif, Times;
	font-size: 13px;
	line-height: 1.5em;
}
p	{
	margin: 0 0 1em 0; /* Re-instating default margin behaviour for p */
	/*letter-spacing: -0.015em;*/
}
#headercontainer	{
	position: fixed;
	width: 100%;
}
#header	{
	width: 900px;
	height: 139px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	background: #3C2E2A;
	color: #FAF6EF;
}
#logo	{
	width: 900px;
	/*height: 65px;*/
	float: left;
	padding: 30px 0 15px 26px;
	text-transform: uppercase;
}
h1.logo	{
	width: 247px;
	padding: 37px 0 0 0;
	height: 0;
	background: url('../images/the-tea-company.png') no-repeat;
	overflow: hidden;
}
/*#header h1	{
	letter-spacing: 0.05em;
	font-family: 'Brandon Grotesque', Georgia, serif, Times;
	font-size: 1.9em;
	font-weight: 100;
	line-height: 1em;
	margin: 0;
	padding: 0;
}
#header .tagline	{
	letter-spacing: 0.05em;
	font-family:  'Brandon Grotesque', Georgia, serif, Times;
	font-size: 1.2em;
	font-weight: 100;
	line-height: 1em;
}*/
#header h1 a:link, #header h1 a:visited, #header .tagline a:link, #header .tagline a:visited	{
	text-decoration:none;
	color: #FAF6EF;
}
#header h1 a:hover, #header h1 a:active, #header .tagline a:hover, #header .tagline a:active	{
	text-decoration: none;
	color: #FAF6EF;
}
#nav	{
/*	All nav code is within the ddsmoothmenu code below */
}
#bodycontainer	{
	width: 900px;
	min-height: 500px;
	background: #fff;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	padding-top: 139px;
	margin-bottom: 0px;
}
#main	{
	width: 600px;
	text-align: left;
	padding: 26px 13px 13px 24px;
	margin-top: 0;
}
#main h1	{
	margin-top: 0;
	padding-top: 0;
	text-transform: uppercase;
}
#main2	{
	width: 237px;
	padding: 26px 13px 13px 13px;
}
#footer	{
	width: 900px;
	height: 5px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	color: #3C2E2A;
	float: left;
	padding-top: 0;
	position: fixed;
	bottom: 0px;
	background: #3C2E2A;
}
a:link, a:visited	{
	color: #000;
	text-decoration: underline;
}
a:hover, a:active	{
	color: #000;
	text-decoration: none;	
}
/* Email Anti-SPAM technique */
.displaynone	{
	display:none;
}
table	{
	border-collapse: collapse;	
}
.button	{
	border: 1px solid #000;
	background-color: #666;
	padding: 6px 10px;
	margin: 0;
	line-height: 2.2em;
}
a.button:link, a.button:visited	{
	color: #fff;
	text-decoration: none;
}
a.button:hover, a.button:active	{
	color: #fff;
	background-color: #000;
	text-decoration: none;
}
h1	{
	font-size: 1.3em;
	font-weight: 100;
}
h2	{
	font-size: 1.3em;
	font-weight: 100;
}
h3	{
	font-size: 1.2em;
	font-weight: 100;
}
h4	{
	font-size: 1.15em;
	font-weight: 100;
}
.no-border	{
	border: 0;
}




/* ####################################################### */
/*                                                         */
/* DD SMOOTH MENU - DO NOT REMOVE ANYTHING BELOW THIS LINE */
/*                                                         */
/* ####################################################### */

.ddsmoothmenu{
background: #3C2E2A; /*background of menu bar (default state)*/
width: 900px;
margin-left: 0px;
text-transform: uppercase;
}

.ddsmoothmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display: block;
height: 21px;
background: #3C2E2A; /*background of menu items (default state)*/
padding: 7px 26px 6px 26px;;
border-right: 1px solid #FAF6EF;
border-top: 1px solid #FAF6EF;
color: #FAF6EF;
text-decoration: none;
text-align: center;
font-weight: 400;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
color: #FAF6EF;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #FAF6EF; 
color: #3C2E2A;
}

.ddsmoothmenu ul li a:hover{
background: #FAF6EF; /*background of menu items during onmouseover (hover state)*/
color: #3C2E2A;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
background-color: #FAF6EF;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
width: 150px; /*width of sub menus*/
padding: 7px 26px 6px 26px;;
margin: 0;
text-align: left;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
/*top: 12px;
right: 7px;*/
}

.rightarrowclass{
position: absolute;
/*top: 6px;
right: 5px;*/
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: ; /* silver, #F0EBDD */
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}
