/**
 * jazzle.co.uk
 * @version: $Id: screen.css 65 2010-08-18 19:49:42Z jezmck $
 */
html {
	background-color: #ffffff;
	color: #3B2813;
	padding: 15px 0;
}

body {
	font-family: "Century Gothic", "Apple Gothic", sans-serif;
}

p {
	font-size: 125%;
	line-height: 1.5;
	margin-bottom: 0.5em;
}

strong {
	font-weight: bolder;
}

em {
	font-style: italic;
}

a:link {
	color: #3B2813;
	font-weight: bold;
}

a:visited {
	color: #222222;
}

a:hover {
	color: #000000;
}

a:active {
	background-color: #eeeeee;
}

li {
	margin: 0 0 .25em 2em;
}

ul li {
	list-style-type: disc;
}

ol li {
	list-style-type: lower-roman;
}

h1,h2,h3,h4,h5 { /*font-family: Garamond, Georgia, serif;*/
	font-weight: bolder;
}

h1 {
	font-size: 300%;
}

h2 {
	font-size: 200%;
}

h3 {
	font-size: 150%;
}

h4 {
	font-size: 125%;
}

h5 {
	font-size: 110%;
}

address {
	display: block;
	text-align: center;
	margin: 0.25em 0.25em 1em;
	font-style: italic;
}

form {
	margin: 0.5em;
}

input,
textarea {
	margin: 0.25em auto;
	padding: 0.25em;
	border: 2px solid #6b3800;
	overflow: auto;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

.result {
	margin: 0.5em;
	padding: 0.5em;
	border: 1px solid #222222;
	background-color: orange;
	color: #222222;
	text-align: center;
}

.success {
	background-color: #ffffff;
}

.error {
	background-color: #9c1913 !important;
}

.width100 {
	width: 100%;
}

#header-inner,
#middle-inner,
#footer-inner {
	width: 974px;
	margin: 0 auto;
}

#header {
	border: 0 solid #222222;
	border-width: 2px 0;
	background: #9c1913 url(bg-header.png) left center repeat-x;
	color: #ffffff;
	height: 200px;
	text-shadow: 2px 2px 5px #000000;
}

#header a {
	text-decoration: none;
	color: #ffffff;
}

#header a:hover {
	background-color: transparent;
}

#logo {
	float: left;
	width: 200px;
	height: 200px;
	margin-right: 25px;
}

#header-inner h1 {
	padding-top: 10px;
}

#header-inner h2 {
	margin-top: 50px;
}

#middle {
	margin: 25px 0;
	min-height: 250px;
}

#sidebar {
	float: left;
	width: 200px;
	text-align: center;
	font-size: 125%
}

#menu {
	text-align: center;
	border-top: 1px solid #222222;
}

#menu li {
	margin: 0;
	list-style-type: none;
}

#menu li a {
	display: block;
	width: 100%;
	color: #222222;
	font-weight: normal;
	text-decoration: none;
	padding: 5px 0;
	border-bottom: 1px solid #222222;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

#menu li a:hover {
	background-color: #9c1913;
	color: #ffffff;
}

#menu li.current {
	background: #9c1913 url(bg-header.png) left center repeat-x;
	text-shadow: 1px 1px 2px #000000;
}

#menu li.current a {
	color: #ffffff;
}

#content {
	float: right;
	width: 750px;
	margin-bottom: 1em;
}

#content a {
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}
#content a:hover {
	text-shadow: 2px 2px 5px #555555;
}

ul.portfolio {
	margin: 0 !important;
}

ul.portfolio li {
	list-style-type: none;
	margin: 0 0 1em;
	padding: 1em;
	background-color: #ffffff;
	border: 1px solid #222222;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
}

input:hover,
textarea:hover,
ul.portfolio li:hover {
	border-color: #9c1913;
	background-color: #fad7d6;
}

ul.portfolio li .title {
	/*font: 1.25em/1.5 italic Garamond, Georgia, serif;*/
	display: block;
	margin-bottom: 0.5em;
}

ul.portfolio li a {
	font-weight: bold;
	text-decoration: none;
	border-bottom: 1px solid #111111;
}

ul.portfolio li img {
	float: right;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	border: 1px solid #ffffff;
}

ul.portfolio li:hover img {
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	border-color: #222222;
}

#footer {
	clear: both;
	border: 0 solid #222222;
	border-width: 2px 0;
	background: #9c1913 url(bg-header.png) left center repeat-x;
	color: #ffffff;
	text-align: right;
}

#footer-inner {
	padding: 5px 0;
}

#footer p {
	margin: 0;
}

#footer a {
	color: #ffffff;
}

/* ************************************************************************* */

/* new clearfix */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
