/* TOC
	1) DEFAULTS
		1.1) Resets
		1.2) Baseline
		1.3) Tables
		1.4) Forms
		1.5) Links
		1.6) Special Classes
			1.6.1) CMS
	2) SITE SPECIFIC
		2.1) Elements
		2.2) Classes
		2.3) ID's
	3) PAGE TYPE SPECIFIC
	4) SECTION SPECIFIC
	5) PAGE SPECIFIC

	HACKS:
		IE6:
		* html #ie6 { background-color: red; }

		IE7:
		*:first-child+html #ie7 { background-color: blue; }

		Safari2:
		body:last-child:not(:root:root) #safari2 { background-color: yellow; }

	"Modern" browsers:
		html>body #modern { background-color: pink; }

		Safari 3:
		html*:first-of-type #safari3 { background-color: orange; }
		html*#id_of_body:first-of-type to target the body

		Safari 2/3:
		html* #safari2and3 { background-color: gray; }
		html*#id_of_body to target the body

		Safari 4&chrome:
		@media screen and (-webkit-min-device-pixel-ratio:0) {
			#safari4chrome { background-color: green; }
		}
*/

/* 1) DEFAULTS ---------------------------------------------------------- */
	/* 1.1) Resets ---------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	list-style: none;
	}

input, textarea {
	font-family: inherit;
	}
	/* /Resets ------------------------------------------------- */

	/* 1.2) Baseline ------------------------------------------- */
html {
	overflow-y: scroll;
	/*height: 100%;*/
	}

body	{
	font-family: sans-serif;
	font-size: 100%;
	}
	/* /Baseline ----------------------------------------------- */

	/* 1.3) Tables --------------------------------------------- */
table	{ /* tables still need cellspacing=0 in the markup */
	border-spacing: 0;
	}

	/* /Tables ------------------------------------------------- */

	/* 1.4) Forms ---------------------------------------------- */
input[type='text'],
input[type='password'],
textarea,
select	{
	padding: 1px;
	}
	/* /Forms -------------------------------------------------- */

	/* 1.5) Links ---------------------------------------------- */
	/* /Links -------------------------------------------------- */
	/* 1.6) Special Classes ------------------------------------ */
.clear	{
	clear: both !important;
	font-size: 0 !important;
	line-height: 0 !important;
	visibility: hidden !important;
	float: none !important;
	padding: 0 !important;
	display: block !important;
	}

		/* 1.6.1) CMS ------------------------------------ */
.cms p	{
	margin: 0 0 1em 0;
	}
	
.cms h1 {
	font-size: 3em;
	margin: 0 0 .5em 0;
	font-weight: bold;
	}
	
.cms h2 {
	font-size: 2em;
	margin: 0 0 .5em 0;
	font-weight: bold;
	}

.cms h3 {
	font-size: 1.5em;
	margin: 0 0 .5em 0;
	font-weight: bold;
	}

.cms h4 {
	font-size: 1.2em;
	margin: 0 0 .5em 0;
	font-weight: bold;
	}

.cms h5 {
	font-size: 1em;
	margin: 0 0 .5em 0;
	font-weight: bold;
	}

.cms h6 {
	font-size: 1em;
	margin: 0 0 .5em 0;
	font-weight: bold;
	}

.cms blockquote {
	margin: 0 0 1.5em 1.5em;
	}
	
.cms ul,
.cms ol {
	margin: 0 0 1.5em 3em;
	}
	
.cms ul,
.cms ul li {
	list-style-type: disc;
	}

.cms ol,
.cms ol li {
	list-style-type: decimal;
	}

.cms dl {
	margin: 1.5em 0;
	}

.cms dl dt {
	font-weight: bold;
	}

.cms strong {
	font-weight: bold;
	}

.cms .center {
	text-align: center;
	}

.cms table {
	margin: 1.5em 0;
	border-top: 1px solid black;
	border-left: 1px solid black;
	}

.cms table th {
	font-size: 1.2em;
	font-weight: bold;
	padding: .25em;
	border-bottom: 1px solid black;
	border-right: 1px solid black;
	}

.cms table td {
	font-size: 1em;
	padding: .25em;
	border-bottom: 1px solid black;
	border-right: 1px solid black;
	}

.cms .image_right {
	clear: right;
	float: right;
	margin: 0;
	padding: 0 0 0 5px;
	}

.cms .image_right img {
	display: block;
	}
		/* /CMS ------------------------------------------ */
	/* /Special Classes ---------------------------------------- */
/* /DEFAULTS ------------------------------------------------------------ */

/* 2) SITE SPECIFIC ----------------------------------------------------- */
	/* 2.1) Elements ------------------------------------------- */
html {
	height: 100%;
	}

body {
	background: #fff url(../images/global_bg.gif) repeat-x;
	border-bottom: 140px solid #000;
	min-height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	}

h1 * {
	display: block;
	}
	/* /Elements ----------------------------------------------- */

	/* 2.2) Classes -------------------------------------------- */
	/* /Classes ------------------------------------------------ */

	/* 2.3) ID's ----------------------------------------------- */
#page {
	width: 944px;
	margin: auto;
	background: url(../images/global_main_bg.gif) left 60px repeat-x;
	position: relative;
	}

#page .n {
	background: url(../images/global_header_items.jpg) right top no-repeat;
	padding-top: 60px;
	}

#contact {
	position: absolute;
	right: -17px;
	top: 63px;
	}

#contact * {
	display: block;
	}

#content {
	margin-left: -27px;
	background: url(../images/global_left_items.gif) left 152px no-repeat;
	padding: 51px 0 0 157px;
	}

#content h3 {
	font-size: 14px;
	}

#content em {
	text-decoration: underline;
	}

#about {
	width: 298px;
	padding-top: 56px;
	float: left;
	}

#visit {
	width: 431px;
	height: 184px;
	float: left;
	margin-top: -22px;
	padding: 0 0 257px 85px;
	background: url(../images/home_right_items.jpg) right bottom no-repeat;
	}

#visit a img {
	float: left;
	}

#visit h3 {
	padding-left: 20px;
	}

#visit h3 img {
	display: block;
	}

#address {
	clear: both;
	padding: 100px 0;
	}

#address h3 {
	float: left;
	}

#address p {
	float: left;
	padding-left: 35px;
	}

#modal_container .t1 {
	background: url(../images/t1.png) no-repeat;
	height: 20px;
	width: 20px;
	}
* html #modal_container .t1 {
	background: #fff;
	}

#modal_container .t2 {
	background: url(../images/t2.png) repeat-x;
	height: 20px;
	}
* html #modal_container .t2 {
	background: #fff;
	}

#modal_container .t3 {
	background: url(../images/t3.png) no-repeat;
	height: 20px;
	width: 20px;
	}
* html #modal_container .t3 {
	background: #fff;
	}

#modal_container .m1 {
	background: url(../images/m1.png) repeat-y;
	width: 20px;
	}
* html #modal_container .m1 {
	background: #fff;
	}

#modal_container .m2 {
	background: #fff;
	}

#modal_container .m3 {
	background: url(../images/m3.png) repeat-y;
	width: 20px;
	}
* html #modal_container .m3 {
	background: #fff;
	}

#modal_container .b1 {
	background: url(../images/b1.png) no-repeat;
	height: 20px;
	width: 20px;
	}
* html #modal_container .b1 {
	background: #fff;
	}

#modal_container .b2 {
	background: url(../images/b2.png) repeat-x;
	height: 20px;
	}
* html #modal_container .b2 {
	background: #fff;
	}

#modal_container .b3 {
	background: url(../images/b3.png) no-repeat;
	height: 20px;
	width: 20px;
	}
* html #modal_container .b3 {
	background: #fff;
	}

#modal_overlay {
	background: #000;
	}

#modal_container .input_text {
	background: #fff;
	border: 1px solid #ccc;
	width: 120px;
	font-size: 14px;
	padding: 5px;
	font-weight: normal;
	}

#modal_container textarea {
	background: #fff;
	border: 1px solid #ccc;
	width: 380px;
	height: 105px;
	font-size: 14px;
	padding: 5px;
	font-weight: normal;
	}

#modal_container .empty {
	font-style: italic;
	color: #999;
	font-weight: bold;
	}

#modal_container p {
	padding-bottom: 10px;
	}

#modal_container h3 {
	padding: 10px 0 30px 0;
	text-align: center;
	}

#submit span {
	vertical-align: text-top;
	line-height: 44px;
	vertical-align: text-bottom;
	color: #999;
	}

#submit a {
	color: #999;
	}

#close {
	text-align: right;
	}
	/* /ID's --------------------------------------------------- */
/* /SITE SPECIFIC ------------------------------------------------------- */

/* 3) PAGE TYPE SPECIFIC ------------------------------------------------ */
/* /PAGE TYPE SPECIFIC -------------------------------------------------- */


/* 4) SECTION SPECIFIC -------------------------------------------------- */
	/* SECTION --------------------------------------------- */
	/* /SECTION -------------------------------------------- */
/* /SECTION SPECIFIC ---------------------------------------------------- */


/* 5) PAGE SPECIFIC ----------------------------------------------------- */
	/* HOME --------------------------------------------------- */

	/* /HOME -------------------------------------------------- */
/* /PAGE SPECIFIC ------------------------------------------------------- */
