/*
-----------------------------------------------------------------
 Project:	poacher
 Module:	CSS

 Version Control
   $Id$

 Legal
   Copyright 2010  Andy Parkins

-----------------------------------------------------------------
*/

/* --- Overall page layout --- */

* {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	background: #e9e9cf;
	font-family: sans-serif;
}

div#body {
	background: #e9e9cf url('../../images/bg_fade.jpg') repeat-x;
	min-height: 100ex;
}

div.box {
	width: 810px;
	margin: 3ex auto;
}
div.boxtop {
	background: url('../../images/curve_top.gif') repeat-y;
	width: 810px;
	height: 18px;
}
div.boxmid {
	background: url('../../images/curve_mid.gif') repeat-y;
	width: 810px;
}
div.boxbot {
	background: url('../../images/curve_btm.gif') repeat-y;
	width: 810px;
	height: 18px;
	clear: both;
	content: " ";
}
div.boxmid > * {
	padding: 0 18px 0px 18px;
}

img.logo {
	margin: 2px;
	float: left;
}

div.address {
	float: right;
	text-align: right;
}

div#heading {
	padding-top: 18px;
	clear: both;
}
div#heading img {
	float: left;
}

div#headright {
	padding: 0;
	margin: 0;
	float: right;
	/* width = width_of_border_img - width_of_img - 18 - 18 - padding */
	/*       = 810                 - 532          - 18 - 18 - 4 */
	width: 238px;
	/* height = height_of_img */
	height: 297px;

	color: white;
	background: url('../../images/blackboard.jpg');
	font-family: Comic Sans MS, sans-serif;
	overflow: hidden;
	font-size: 14px;
}
div#headright h1 {
	padding: 4px 0px;
	font-weight: bold;
	font-size: 105%;
	text-decoration: underline;
	text-align: center;
}
div#headright ul {
	padding-left: 25px;
}
div#headright div.img {
	float: right;
	width: 100%;
	height: 100%;
	color: black;
}
div#headright div.img p {
	padding: 57px 10px;
	font-size: 17px;
	font-style: italic;
	text-align: center;
}

div#content {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;

	width: 510px;
	min-height: 30em;
}

div#content ul {
	margin: 6px 30px;
}

div#content p {
	margin: 6px 0;
}

div#content div#sectionlinks {
	width:          100%;
	text-align:     center;
	background:     black;
	padding-top:	5px;
	padding-bottom: 5px;
}

div#content div#sectionlinks a {
	color:			white;
	padding-left:	10px;
	padding-right:	10px;
	display:        inline;
}


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

/* Utility */

div.clear {
	clear: both;
	content: " ";
}

/* Text styles */

/* Site Menubar */

div.menubar {
	clear: both;
}

ul.menubar {
	margin: 0;
	padding:0;
	/* float so that we don't vanish when the li's are floated */
	float: left;
	width: 100%;
	background: #686868 url('../../images/menu_bg.jpg') repeat-x;
}

ul.menubar li {
	margin: 0;
	padding:0;
	/* convert the list elements into left-to-right boxes */
	display: inline;
	/* Set this equal to the 'a' height to vertically centre the text */
	line-height: 30px;
}

ul.menubar a {
	padding: 6px 10px 0px 10px;
	/* float them to turn them into block elements */
	float: left;
	width: auto;
	background: #686868 url('../../images/menu_bg.jpg') repeat-x;
	/* height = background_img_height - vertical_padding */
	height: 28px;

	/* style */
	text-decoration: none;
	font: bold 17px Arial, Helvetica, sans-serif;
	text-shadow: 2px 2px 2px #555;

	/* separation */
	border-right: 1px solid black;
}
ul.menubar li:last-child a {
	/* kill separation on last element */
	border-right: 0;
}
ul.menubar a:link,
ul.menubar a:visited {
	color: white;
}
ul.menubar a:hover,
ul.menubar a:focus {
	background-position: 0 -68px;
}
ul.menubar a:active,
ul.menubar a.selected {
	background-position: 0 -34px;
}

/* Sidebar */

div#sidebar {
	position: relative;
	float: right;
	padding-top: 18px;
}

/* Panels */

div.panel {
	background: #f0d0d0;
	width: 97%;
	margin-top: 10px;
	padding-bottom: 10px;
	text-align: justify;
	padding: 10px 10px 10px 10px;
	color: #303060;
}

div.panel h1 {
	letter-spacing: 1ex;
	text-transform: uppercase;
	text-align: center;
	font-size:24px;
	font-weight: normal;
	font-style: normal;
	font-family: times new roman, serif;
	color: #CC0000;
	padding-bottom: 1ex;
}

div.panel h2 {
	font-size: 100%;
	font-weight: bold;
	padding: 10px 0;
}

/* Restaurant Menu */

div.menu {
}
div.menu > div.section {
	background: url('../../images/hr.gif') no-repeat;
	padding-top: 20px;
	margin-top: 10px;
	text-align: center;
}
div.menu > div.section > span.name {
	font-size: 24px;
	font-weight: normal;
	font-family: times new roman;
	color: #CC0000;
}
div.menu > div.section > div.section_content {
	font-family: arial;
}
div.menu > div.section > div.section_content > div.description {
	font-weight: normal;
	font-size: 12px;
	color: #477122;
	padding-left: 1em;
}
div.menu > div.section > div.section_content > div.course {
	margin-top: 5px;
}
div.menu > div.section > div.section_content > div.course > span.name {
	font-size: 12px;
	font-weight: bold;
	color: #2D3B60;
}
div.menu > div.section > div.section_content > div.course > span.price {
	padding-left: 1em;
	color: #2D3B60;
	font-weight: normal;
}
div.menu > div.section > div.section_content > div.course > div.description {
	font-weight: normal;
	font-size: 12px;
	color: #477122;
	padding-left: 1em;
}

/* Plain text styles */

div.plain {
}

div.plain > h1 {
	padding: 12px 0 5px;
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
	font-size: 24px;
	font-style: italic;
	font-weight: bold;
}
div.plain h2 {
	padding: 6px 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: bold;
	color:#477122;
}
div.plain blockquote:before {
	float: left;
	font-size: 50px;
	content: "\201C";
	text-align: left;
	margin: -10px 10px 0 -10px;
	padding: 0;
}
div.plain blockquote:after {
	float: right;
	font-size: 50px;
	content: "\201D";
	text-align: right;
	margin: 0px -10px 0 10px;
	padding: 0;
}
div.plain blockquote {
	margin: 5px 10px;
	padding: 20px;
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-style: italic;
	background: #f0f0f0;
}

div.plain div.miniquote {
	font-family: Comic Sans MS, sans-serif;
	font-size: 16px;
	color: #c43a4d;
	padding: 6px 0px;
}

div.plain .emph {
	color:#C43A4D;
}

/* multi column */

div.plain div.column2 {
	text-align: justify;
	float: left;
	/* width = (base_width - 2*column_padding) / 2
	 *       = (510 - 2*(3+3)) / 2                 */
	width: 249px;
	padding: 6px 3px;
}

div.plain div.column2 div.columnhead {
	text-align: center;
	font-size:24px;
	font-weight:normal;
	font-family:times new roman;
	color:#CC0000;
}

/* Skittle alley column menus */

div.plain div.column2 div.columnmenu {
	text-align: center;
	font-size:12px;
	color:#2D3B60;
	margin-bottom: 15px;
}
div.plain div.column2 div.columnmenu span.menutitle {
	font-size:16px;
	font-weight:bold;
}
div.plain div.column2 div.columnmenu span.menuprice {
	padding-left:1em;
}
div.plain div.column2 div.columnmenu span.menucomment {
	color:#999;
	margin: 0;
	padding: 0;
}
div.plain div.column2 div.columnmenu ul {
	list-style: none;
	color:#2D3B60;
}
div.plain div.column2 div.columnmenu li {
	padding: 3px;
}

/* Picture styles */

div#bathroom {
	padding: 18px 18px 0 400px;
	background: #804c03 url('../../images/ensuite.jpg') no-repeat;
	font-size:12px;
	color: white;
	/* Width = width_of_backg - margin - padding - outside_padding */
	/*       = 810            -(18+18) - 418     - x */
	width: 356px;
	/* Height = height_of_back - padding */
	min-height: 282px;
}
div#bathroom h1 {
	color:white;
}

/* Forms */

form.contact_form {
	font-family:arial;
	font-size:12px;
}

form.contact_form div.contact_line {
	color: #f00000;
	background-color: #CEE9B6;
	padding: 5px 5px;
	margin: 5px 0;
}

form.contact_form div.label {
	font-weight: bold;
	color: #477122;
	float: left;
	width: 100px;
}

form.contact_form input,
form.contact_form textarea {
	width:300px;
	border-left: 1px solid #666;
	border-top: 1px solid #666;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;

	color: black;

}

form.contact_form input {
	height:20px;
}

form.contact_form textarea {
	height:100px;
}

/* --------------------- Print Mode -------------------- */
@media print {

div#body
{
	background: white;
}

div#heading,
div#menubar,
div#sidebar,
div#sectionlinks
{
	display: none;
}

div#content
{
	width: 90%;
}


} /* @media print */


