html {
  	-webkit-font-smoothing: antialiased;
  	text-rendering: optimizeLegibility;
}

body {
	margin:0px;
	padding:0px;
	font-size:16px;
	min-width:900px;
}

/* @group Fonts */

@font-face {
    font-family: 'P22CezanReg';
    src: url('../fonts/P22CezanReg.eot');
    src: url('../fonts/P22CezanReg.eot?#iefix') format('embedded-opentype'),
    url('../fonts/P22CezanReg.woff') format('woff'),
    url('../fonts/P22CezanReg.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family:"HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
}

i, em {
	font-family:"HelveticaNeue-LightItalic", "Helvetica Neue Light Italic", "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
	font-style:italic;
}

b, strong {
	font-family:"HelveticaNeue-Regular", "Helvetica Neue Regular", "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
	font-weight:bold;
}

h1, h2, h3, h4 {
	margin-top:2em;
	margin-bottom:0.5em;
}

h1.first-child, h1:first-child, h2:first-child, h3:first-child, h4:first-child {
	margin-top:0em;
}

h1, h2, h3, h4, .article-date {
	font-family:"HelveticaNeue-Regular", "Helvetica Neue Regular", "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
	font-weight:bolder;
}

h1 {
	font-size:24px;
}

h2 {
	font-size:20px;
}

h3 {
	font-size:18px;
}

h4 {
	font-size:16px;
}

/* @end */

/* @group Standard Elements & Colours */

html, body {
  background-color: #000;
  color: #ddd;
}

a {
	border-bottom:1px solid #ddd;
	color:#fff;
	font-weight:bold;
	text-decoration:none;
	-webkit-transition-property:color, border-color;
	-webkit-transition-timing-function:fade-out;
	-webkit-transition-duration:0.5s;
	-moz-transition-property:color, border-color;
	-moz-transition-timing-function:fade-out;
	-moz-transition-duration:0.5s;
}

a:hover {
	color:#ecc978;
	border-bottom-color:#ecc978;
}

.strike {
	text-decoration:line-through;
}

#top-of-the-page-to-ya,
#bottom-of-the-page-to-ya {
	height:0;
	display:inline;
	visibility:hidden;
}

#body,
#header,
#footer,
#grungy-browser-warning {
	width:920px;
	padding:0px;
	margin:0px auto 0px auto;
	box-shadow:0px 0px 2px rgba(9,0,0,0.36);
	-moz-box-shadow:0px 0px 2px rgba(9,0,0,0.36);
	-webkit-box-shadow:0px 0px 2px rgba(9,0,0,0.36);
}

.typoelement {
	font-family:Baskerville, Georgia, serif;
	font-size:140%;
	font-weight:bold;
	color:#ddd;
	color:rgba(255,255,255,0.5);
}

.clear {
	clear:both;
}

.small {
	color:rgba(255,255,255,0.7);
	font-size:12px;
}

ul, ol {
	margin-bottom:2em;
}

ul li,
ol li {
	margin-bottom:1.5em;
}

/* @end */

/* @group Form Styles */

form {
	display:block;
}

form label {
	display:block;
	margin-left:6px;
	margin-bottom:-2px;
	color:#888;
	color:rgba(0,0,0,0.5)
}

form label.required {
	font-weight:bold;
}

form label.required:after,
form label.optional:after {
	font-weight:normal;
	vertical-align:super;
	font-size:12px;
}

form label.required:after {
	content:" – required";
}

form label.optional:after {
	content:" – optional";
}

form textarea {
	height:180px;
}

form input,
form textarea {
	font-family:"HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
	font-weight:300;
	width:580px;
	padding:5px;
	font-size:18px;
	border:1px solid #ddd;
	margin-bottom:10px;
	line-height:22px;
	outline-style:none;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	-webkit-transition-property:background-color, background-image, color, border-color;
	-webkit-transition-timing-function:fade-out;
	-webkit-transition-duration:0.5s;
	-moz-transition-property:background-color, background-image, color, border-color;
	-moz-transition-timing-function:fade-out;
	-moz-transition-duration:0.5s;
}

form input:focus,
form textarea:focus {
	border-color:#000;
	border-color:rgba(0,0,0,0.8);
	background-color:#f4f4f4;
	background-image:-moz-linear-gradient(
		center top,
		#f4f4f4 0%,
		#ffffff 100%
	);
	background-image:-webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#f4f4f4),
		to(#ffffff)
	);
}

form input[type='submit'] {
	display:block;
	width:592px;
	margin:0px;
	font-size:18px;
	text-shadow:0px 1px 1px rgba(255,255,255,0.7);
	text-align:center;
	padding:5px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	background-color:#eee;
	border:1px solid #ddd;
	background-image:-moz-linear-gradient(
		center top,
		rgba(255,255,255,0.5) 0%,
		rgba(255,255,255,0.01) 100%
	);
	background-image:-webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(255,255,255,0.5)),
		to(rgba(255,255,255,0.01))
	);
}

form input[type='submit']:hover {
	cursor:default;
	border-color:#ccc;
	background-color:#ccc;
}

form input[type='submit']:active {
	border-color:#999;
	background-color:#fffff0;
	background-image:-moz-linear-gradient(
		center top,
		rgba(255,255,255,0.4) 0%,
		rgba(255,255,255,0.01) 100%
	);
	background-image:-webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(255,255,255,0.4)),
		to(rgba(255,255,255,0.01))
	);
	padding-top:6px;
	padding-bottom:4px;
}

form h2 {
	margin-top:40px;
	margin-bottom:2px;
	border-bottom:1px dashed #eee;
}

form p {
	margin-top:5px;
}

form .validation-summary ul {
	margin-top:-10px;
}

form .validation-summary ul li label {
	display:inline;
	padding:0px;
	margin:0px;
}

form .validation-summary.error {
	color:#770000;
}

form .validation-summary.error ul li label {
	font-weight:bold;
	color:#330000;
}

form .validation-summary.success {
	color:#007700;
}

/* @end */

/* @group Grungy Browser Warning */

#grungy-browser-warning {
	display:none;
	visibility:hidden;
}

/* @end */


/* @group Site Styles */

#header,
#content,
#footer {
	display:block;
	width:1000px;
	margin:0px auto 0px auto;
	padding:0px auto 0px auto;
	background-repeat:no-repeat;
	background-position:top left;
}

#header #pagetitle {
	margin:0px; padding:0px;
	background-image:url(../img/bottles_page_head.jpg);
	background-position:top right;
	background-repeat:no-repeat;
}

#header #pagetitle a {
	display:block;
	width:400px;
	height:154px;
	background-image:url(../img/drc_logo_top_left.jpg);
	background-position:center center;
	background-repeat:no-repeat;
	border-width:0px;
	text-indent:-5000px;
}

ul#menu,
ul#menu li {
	list-style-type:none;
}

ul#menu {
	float:right;
	clear:both;
	font-size:17px;
	display:inline-block;
	overflow:visible;
	padding:20px 0px;
	margin:0px;
	min-width:580px;
}

ul#menu li {
	display:inline;
}

ul#menu li a {
	font-weight:500;
	border-bottom:1px solid #000;
	width:auto;
	display:inline-block;
	margin-right:25px;
}

ul#menu li a.active {
	font-weight:bold;
}

ul#menu li a:hover {
	border-bottom-color:#ecc978;
}

#page-header {
	clear:both;
	margin:0px;
	padding: 10px 0px 10px 420px;
	color: #000;
	vertical-align:middle;
	border-width:0px;
	background-image:url(../img/gold_header.jpg);
	background-repeat:no-repeat;
	background-position:center center;
	background-image:-moz-radial-gradient(
		center 45deg,
		circle farthest-side,
		#f2d072 0%,
		#532e14 80%
	);
	background-image:-webkit-gradient(
		radial,
		50% 50%, 0,
		50% 50%, 400,
		from(#f2d072),
		to(#532e14)
	);
	box-shadow: inset 0px 10px 10px rgba(0, 0, 0, 0.36);
	-moz-box-shadow: inset 0px 10px 10px rgba(0, 0, 0, 0.36);
	-webkit-box-shadow: inset 0px 10px 10px rgba(0, 0, 0, 0.36);
}

#page-header h1,
#page-header h2 {
	display:inline-block;
	padding:0px;
	margin:0px;
	zoom:1; *display: inline;
}

#page-header h2,
#page-header h2 a {
	font-size:24px;
	font-family:"HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
	font-weight:normal;
}

#page-header h2 {
	margin-right:.25em;
}

#page-header h1 a,
#page-header h2 a {
	border-bottom-color:#000;
	border-bottom-width:0;
	text-decoration:none;
	color:#000;
}

#page-header h1 a:hover,
#page-header h2 a:hover {
	border-bottom-width:1px;
}

#page-menu {
	float:left;
	list-style-type:none;
	margin:-20px 0px 0px -420px;
	padding:285px 30px 0px 0px;
	width:335px;
	min-height:150px;
	text-align:right;
	background-image:url(../img/sidebar_mask.png);
	background-position: left top;
	background-repeat:no-repeat;
}

#page-menu li {
	display:block;
	margin:0em;
}

#page-menu li a {
	display:inline-block;
	font-weight:normal;
	border-bottom-color:#000;
	margin-bottom:0.25em;
	zoom:1; *display: inline;
}

#page-menu li a:hover {
	border-bottom-color:#ecc978;
}

#page-menu li a.active {
	font-weight:bold;
}

#page-menu li a.section-title {
	font-size:110%;
	border-bottom:1px solid #3f3f3f;
	margin-bottom:.5em;
}

#pagebody {
	font-family:"HelveticaNeue-Regular", "Helvetica Neue Regular", "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
	display:block;
	min-height:260px;
	margin:0px 50px 0px 420px;
	padding-top:20px;
	line-height:26px;
}

#pagebody blockquote {
  font-style: italic;
}

#pagebody img {
	display:block;
	margin:2.5em auto;
}

#pagebody img.left {
	display:inline-block;
	margin-left:0px;
	margin-right:0px;
	margin-top:1.5em;
	margin-bottom:0px;
}

#pagebody .bottle-shot {
	float:left;
	margin-left:-415px;
	width:400px;
	text-align:center;
}

#pagebody .bottle-shot img {
	padding-bottom:0px;
}

#pagebody .bottle-shot p {
	margin:0px;
}

#pagebody dl.wine-details {
	margin-bottom:1em;
}

#pagebody dl.wine-details dt {
	display:inline-block;
	min-width:9em;
	max-width:9em;
	text-align:right;
	float:left;
	border-bottom:1px solid #222;
}

#pagebody dl.wine-details dd {
	border-bottom:1px solid #222;
	font-weight:bold;
	margin:0;
	padding-left:10em;
	clear:right;
}

#pagebody ul.old-news {
	line-height:200%;
	list-style-type:none;
	padding-left:0;
}

#pagebody ul.old-news li {
	margin-bottom:0;
}

#pagebody .description blockquote {
	margin-top: -16px;
	margin-left: 32px;
	margin-bottom: 16px;
}

dl.classical-quote dt {
    margin-top: 1.4rem;
    font-family: "P22CezanReg";
    font-size: 2.4rem;
    line-height: 2.4rem;
    color: #f1d787;
    white-space:nowrap;
}

dl.classical-quote dt p {
    display: inline;
    margin: 0;
    padding: 0;
}

dl.classical-quote dt:before {
    content: "\201C";
}

dl.classical-quote dt:after {
    content: "\201D";
}


dl.classical-quote dd {
    font-family: "Helvetica";
    font-weight: 200;
    color: #777;
    font-size: 0.8rem;
    text-align: center;
    left: 2.4rem;
    position: relative;
    top: 0.8rem;
}

#footer {
	clear:both;
	font-size:10pt;
	color:#666;
	border-top:1px solid #222;
	margin-top:3em;
}

#footer ul {
	float:right;
	clear:both;
	display:inline-block;
	overflow:visible;
	padding:5px 0px;
	margin:0px;
	min-width:580px;
	zoom:1; *display: inline;
}

#footer ul li {
	display:inline-block;
	border-left:1px solid #222;
	padding:0px 0px 0px 20px;
	margin-left:20px;
	zoom:1; *display: inline;
}

#footer ul li:first-child {
	border-left-width:0px;
	margin-left:0;
	padding-left:0;
}

/* @end */

/* @group Custom Elements */

.gold {
	margin:0px;
	border-width:0px;
	color: #000;
	background-color: #000;
	height:4px;
	background-image:url(../img/gold_header.jpg);
	background-repeat:no-repeat;
	background-position:center center;
	background-image:-moz-radial-gradient(
		center 45deg,
		circle farthest-side,
		#f2d072 0%,
		#532e14 80%
	);
	background-image:-webkit-gradient(
		radial,
		50% 50%, 0,
		50% 50%, 400,
		from(#f2d072),
		to(#532e14)
	);
}

.page-field p:first-child {
	margin-top:0px;
}

.page-field ul li a:first-child {
  font-weight: normal;
}

#links .page-field ul li a {
  color: #999;
  border-color: #999;
}

#links .page-field ul li a:hover {
  color: #ecc978;
  border-color: #ecc978;
}

#wine-list {
	display:block;
	width:650px;
}

#wine-list dl {
	margin-top:2.5em;
	padding-right:10px;
	vertical-align:top;
	display:inline-block;
	width:300px;
	zoom:1; *display: inline;
}

#wine-list dl dt {
	font-weight:bold;
}

#wine-list dl dt img {
	float:left;
	margin:0px;
	padding-right:1em;
}

#wine-list dl dd {
	margin-left:0em;
}

#wine-list dl dd.description {
	margin-bottom:0.5em;
}

#wine-list dl dd a {
	font-weight:normal;
}

#flickr-gallery ul.flickr-photos {
	list-style-type:none;
	padding:0px;
	margin:0px;
	width:555px;
	*width:auto;
}

#flickr-gallery ul.flickr-photos li {
	margin:2px 4px 2px 0px;
	width:88px;
	list-style-type:none;
	display:inline-block;
	zoom:1; *display: inline;
}

#flickr-gallery ul.flickr-photos a {
	display:inline-block;
	vertical-align:top;
	border:1px solid #333;
	padding:5px;
	zoom:1; *display: inline;
}

#flickr-gallery ul.flickr-photos a:hover {
	background-color:#000;
	border-color:#666;
}

#flickr-gallery ul.flickr-photos a img {
	border-width:0px;
	padding:0px;
	margin:0px;
	background-image:url(../img/ajax-loader.gif);
	background-repeat:no-repeat;
	background-position:center center;
	zoom:1; *display: inline;
}

#fancybox-wrap a {
	border-width:0px;
}

ul.paginator {
	list-style-type:none;
	margin:10px 0px;
	text-align:center;
	font-size:36px;
	font-family:Baskerville, serif;
	font-weight:bold;
	color:#444;
	border-top:1px dotted #222;
	padding:5px 0px;
	width:555px;
	*width:auto;
}

ul.paginator li {
	list-style-type:none;
	display:inline;
}

ul.paginator li a {
	vertical-align:middle;
	*vertical-align:baseline;
	display:inline-block;
	border-bottom-width:0px;
	text-decoration:none;
	color:#999;
	margin:8px 15px;
	padding:0px;
	zoom:1; *display: inline;
}

ul.paginator li.arrow a {
	margin-bottom:14px;
}

ul.paginator li a:hover {
	color:#eee;
}

ul.paginator li a.disabled,
ul.paginator li a.disabled:hover {
	cursor:pointer;
	color:#444;
}


.page-field .butler-icon,
.page-field .mail-icon {
	margin: 1em 0em 2em 0em;
	background-repeat:no-repeat;
	background-position:left center;
	position:relative;
}

.page-field .butler-icon .align-bottom,
.page-field .mail-icon .align-bottom {
	position:absolute;
	display:inline-block;
}

.page-field .butler-icon .align-bottom {
	bottom:0;
}

.page-field .mail-icon .align-bottom {
	top:10%;
}

.page-field .butler-icon {
	background-image:url(../img/order_guy.png);
	height:199px;
	padding-left:125px;
}

.page-field .mail-icon {
	background-image:url(../img/email_icon.png);
	height:113px;
	padding-left:125px;
}

#news ul li,
#news ol li {
	margin-bottom:0em;
}

/* @end */

/* @group Homepage */
#unfortunately-necessary-container {
	width:1000px;
	padding:0px;
	margin:0px auto 0px auto;
	background-image:url(../img/home_bg.jpg);
	background-repeat:no-repeat;
	background-position:120% 1.5em;
	min-height:724px;
}

#home-page #header,
#home-page #content,
#home-page #footer {
	margin:0;
	padding:0;
}

#home-page #header #pagetitle {
	background-image:none;
}

#home-page #header #pagetitle a {
	padding:25px 30px;
	background-image:url(../img/drc_page_header_logo.gif);
}


#home-page #pagebody {
	margin-left:90px;
	margin-right:240px;
	line-height:150%;
}

#home-page dl.classical-quote {
    position: relative;
    left: -1rem;
}

#home-page dl.classical-quote dt {
    transform: rotate(-7.5deg);
    -webkit-transform: rotate(-7.5deg);
    -moz-transform: rotate(-7.5deg);
    -o-transform: rotate(-7.5deg);
    -ms-transform: rotate(-7.5deg);
    font-size: 3.8rem;
}

#home-page dl.classical-quote dd {
    top: 3rem;
    left: 2.4rem;
}


#home-page div.gold {
	height:150px;
	background-image:url(../img/gold_strip.jpg);
	background-repeat:repeat-y;
	border-width:0;
}
#home-page div.gold span {
	display:block;
	height:144px;
	background-image:url(../img/homepage_banner.jpg);
	background-repeat:no-repeat;
	background-position:0px 6px;
}

#home-page .page-field {
	font-size:15px;
}

#home-page #content {
	margin-top:10px;
}

#home-page #content img {
	margin-top:1em;
	margin-left:-1.5em;
}
/* @end */
