

/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 3.0.0
build: 1549
*/
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html{
	color:#000;
	background:#FFF;
}
/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF. 
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,
img {
	border:0;
}
/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style:normal;
	font-weight:normal;
}
/*
	TODO Figure out where this list-style rule is best set. Hedger has a request to investigate.
*/
li {
	list-style:none;
}

caption,
th {
	text-align:left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,
q:after {
	content:'';
}
abbr,
acronym {
	border:0;
	font-variant:normal;
}
/* to preserve line-height and selector appearance */
sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}
input,
textarea,
select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
/*to enable resizing for IE*/
input,
textarea,
select {
	*font-size:100%;
}
/*because legend doesn't inherit in IE */
legend {
	color:#000;
}

/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 3.0.0
build: 1549
*/
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
	font:13px/1.231 arial,helvetica,clean,sans-serif;
	*font-size:small; /* for IE */
	*font:x-small; /* for IE in quirks mode */
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */ 
select,
input,
button,
textarea {
	font:99% arial,helvetica,clean,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
	font-size:inherit;
	font:100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
	font-family:monospace;
	*font-size:108%;
	line-height:100%;
}

/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Copyright (c) 20010 Janis Skarnelis
 * Examples and documentation at: http://fancybox.net
 *
 * Version: 1.3.0 (02/02/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
 
#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	height: 40px;
	width: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	background: transparent;
	z-index: 1104;
	display: none;
}

* html #fancybox-loading {	/* IE6 */
	position: absolute;
	margin-top: 0;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background: transparent url('../images/fancybox/fancy_loading.png') no-repeat;
}

#fancybox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #000;
	z-index: 1100;
	display: none;
}

* html #fancybox-overlay {	/* IE6 */
	position: absolute;
	width: 100%;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 20px;
	z-index: 1101;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #FFF;
}

#fancybox-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: 0;
	outline: none;
	overflow: hidden;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 32px;
	height: 32px;
	background: url('../images/fancybox/fancy_close.png') top left no-repeat;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox_error {
	color: #444;
	font: normal 12px/20px Arial;
}

#fancybox-content {
	height: auto;
	width: auto;
	padding: 0;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
	-ms-interpolation-mode: bicubic;
}

#fancybox-frame {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-title {
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: Arial;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding: 10px 0;
	text-align: center;
	color: #333;
}

.fancybox-title-outside {
	padding-top: 5px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
}

.fancybox-title-over {
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background: url('../images/fancybox/fancy_title_over.png');
	display: block;
}

#fancybox-title-wrap {
	display: inline-block;
}

#fancybox-title-wrap span {
	height: 32px;
	float: left;
}

#fancybox-title-left {
	padding-left: 15px;
	background: transparent url('../images/fancybox/fancy_title_left.png') repeat-x;
}

#fancybox-title-main {
	font-weight: bold;
	line-height: 29px;
	background: transparent url('../images/fancybox/fancy_title_main.png') repeat-x;
	color: #FFF;
}

#fancybox-title-right {
	padding-left: 15px;
	background: transparent url('../images/fancybox/fancy_title_right.png') repeat-x;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background-image: url('../images/fancybox/blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background: transparent url('../images/fancybox/fancy_nav_left.png') no-repeat;
}

#fancybox-right-ico {
	background: transparent url('../images/fancybox/fancy_nav_right.png') no-repeat;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible;    /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

div.fancy-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	z-index: 1001;
}

div#fancy-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: transparent url('../images/fancybox/fancy_shadow_n.png') repeat-x;
}

div#fancy-bg-ne {
	top: -20px;
	right: -20px;
	width: 20px;
	height: 20px;
	background: transparent url('../images/fancybox/fancy_shadow_ne.png') no-repeat;
}

div#fancy-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	width: 20px;
	background: transparent url('../images/fancybox/fancy_shadow_e.png') repeat-y;
}

div#fancy-bg-se {
	bottom: -20px;
	right: -20px;
	width: 20px;
	height: 20px;
	background: transparent url('../images/fancybox/fancy_shadow_se.png') no-repeat;
}

div#fancy-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: transparent url('../images/fancybox/fancy_shadow_s.png') repeat-x;
}

div#fancy-bg-sw {
	bottom: -20px;
	left: -20px;
	width: 20px;
	height: 20px;
	background: transparent url('../images/fancybox/fancy_shadow_sw.png') no-repeat;
}

div#fancy-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	width: 20px;
	background: transparent url('../images/fancybox/fancy_shadow_w.png') repeat-y;
}

div#fancy-bg-nw {
	top: -20px;
	left: -20px;
	width: 20px;
	height: 20px;
	background: transparent url('../images/fancybox/fancy_shadow_nw.png') no-repeat;
}

html {
	width:100%;
	height:100%;
	background-repeat:repeat;
}
body {
	width:100%;
	height:100%;
	background-repeat:repeat-x;
	font-family:Lucida Sans, Sans-serif;
	font-size:12px;
	line-height:16px;
}
a {
	text-decoration:underline;
	outline:none;
}
a.button_continue {
	width:48px;
	height:21px;
	text-indent:-999em;
	background-position:-728px -10px;
	display:block;
}
strong {
	font-weight:bold
}
em {
	font-style:italic;
}
h1 {
	font-size:18px;
	line-height:18px;
	text-transform:uppercase;
}
h2 {
	font-weight:bold;
}
h3 {
	font-size:14px;
	font-weight:bold;
}
h4 {
	font-size:10px;
	text-transform:uppercase;
	line-height:14px;
}
img { -ms-interpolation-mode:bicubic; }
.wrapper_1 {
	float:left;
	width:990px;
	position:relative;
	min-height:100%;
	margin:0 0 -24px;
	padding:0 0 24px;
	background-repeat:repeat-y;
	
	padding:0;
	overflow:hidden;
}
.wrapper_2 {
	position:relative;
	float:left;
	width:990px;
	min-height:844px;
/*	overflow:hidden;*/
	background-position:-10px -1431px;
	background-repeat:no-repeat;
	
	
	padding:0 0 24px;
}

/***************************************
*********** Column Left ****************
***************************************/
.column_left {
	float:left;
	width:237px;
	position:relative;
	padding:224px 0 0 35px;
}
.column_left .logo {
	position:absolute;
	width:272px;
	height:197px;
	left:0;
	top:0;
}
.column_left .logo a {
	width:170px;
	height:120px;
	margin:50px 0 0 51px;
	display:block;
	background-position:-10px -735px;
	text-indent:-999em;
}
/* Sub Navigation */
.column_left .sub_navigation {
	float:left;
	width:272px;
	margin:0 0 0 -35px;
}
.column_left .sub_navigation ul {
	float:left;
	padding:0 0 27px;
}
.column_left .sub_navigation li {
	float:left;
	margin:2px 0 0;
}
/* Level 0 */
.column_left .sub_navigation ul a {
	text-decoration:none;
	text-transform:uppercase;
	line-height:27px;
	float:left;
	height:27px;
	width:229px;
	padding:0 0 0 43px;
	background-position:-10px -326px;
}
.column_left .sub_navigation ul a:hover {
	background-position:-10px -698px;
}
.column_left .sub_navigation ul .active a {
	background-position:-10px -363px;
}
/* Level 1 */
.column_left .sub_navigation ul ul {
	padding:0 35px;
}
.column_left .sub_navigation ul ul .inactive a {
	width:194px;
	padding:0 0 0 8px;
	background-position:-10px -400px;
}
.column_left .sub_navigation ul ul .active a,
.column_left .sub_navigation ul ul a:hover {
	width:194px;
	padding:0 0 0 8px;
	background-position:-10px -437px;
}
/* Level 2 */
.column_left .sub_navigation .bg_nav_before,
.column_left .sub_navigation .bg_nav_after {
	float:left;
	width:202px;
	height:5px;
}
.column_left .sub_navigation .bg_nav_before {
	background-position:-10px -474px;
	margin:2px 0 0;
}
.column_left .sub_navigation .bg_nav_after {
	background-position:-10px -489px;
}
.column_left .sub_navigation ul ul ul {
	padding:2px 9px 4px;
	margin:7px 0 5px;
	background-repeat:repeat-y;
}
.column_left .sub_navigation ul ul ul .inactive a {
	width:176px;
	padding:0 0 0 8px;
}
.column_left .sub_navigation ul ul ul .active a,
.column_left .sub_navigation ul ul ul a:hover {
	width:176px;
	padding:0 0 0 8px;
	background-position:-10px -504px;
}
/* Column Left Content */
.column_left .bg_top,
.column_left .bg_bottom {
	float:left;
	width:202px;
	height:5px;
}
.column_left .bg_top {
	background-position:-10px -541px;
}
.column_left  .bg_bottom {
	background-position:-10px -556px;
}
.column_left .content {
	float:left;
	width:170px;
	background-repeat:repeat-y;
	padding:8px 16px 3px;
}
.column_left .content_block {
	float:left;
	border-top:1px solid;
	margin:2px -16px 0 0;
	padding:12px 16px 16px 0;
}
.column_left .content_block a.button_continue {
	float:right;
	margin:4px 0 0;
}

/***************************************
*********** Column Center **************
***************************************/
.column_center {
	float:left;
	width:348px;
	padding:116px 8px 0 0;
	position:relative;
	
	
/*	padding:116px 8px 16000px 0;
	margin:0 0 -16000px 0;*/
}
.column_center .headline {
	float:left;
	height:27px;
	width:333px;
	padding:0 0 0 15px;
}
/* Column Center Sub */
.column_center .content {
	float:left;
	width:316px;
	padding:0 24px 16004px 16px;
	margin:16px -8px -16000px 0;
	background-repeat:repeat-y;
}
.column_center_image_wide {
	width:316px;
	height:165px;
	margin:0 0 14px;
}
.column_center_image_wide .mask {
	width:316px;
	height:165px;
	background-position:-370px -784px;
}

.column_center .content h3 {
	border-bottom:1px solid;
	margin:0 -16px 14px 0;
	padding:0 0 1px;
}
.column_center .bg_list_before,
.column_center .bg_list_after {
	float:left;
	width:316px;
	height:5px;
}
.column_center .bg_list_before {
	background-position:-10px -296px;
	margin:5px 0 0;
}
.column_center .bg_list_after {
	background-position:-10px -311px;
	margin:0 0 4px;
}
.column_center ul {
	float:left;
	width:316px;
	background-repeat:repeat-y;
	margin:10px 0 9px;
	padding:0 0 1px;
}
.column_center li {
	padding:0 8px 0 24px;
	background-position:9px 5px;
	background-repeat:no-repeat;
}
.separator {
	width:332px;
	margin:16px -16px 16px 0;
	border-bottom:1px solid;
}
.column_center .contact {
	float:left;
}
.column_center .contact label {
	float:left;
	clear:both;
}
.column_center .contact .input_wrapper {
	float:left;
	clear:both;
	background-position:-728px -165px;
	margin:5px 0 20px;
}
.column_center .contact .input_wrapper.error {
	background-position:-728px -198px;
}
.column_center .contact input {
	float:left;
	border:0;
	width:308px;
	height:23px;
	line-height:23px;
	padding:0 4px;
	background-color:transparent;
}
.column_center .contact .textarea_wrapper {
	float:left;
	clear:both;
	background-position:-728px -231px;
	margin:5px 0 0;
}
.column_center .contact .textarea_wrapper.error {
	background-position:-728px -463px;
}
.column_center .contact textarea {
	float:left;
	border:0;
	width:308px;
	height:214px;
	padding:4px;
	background-color:transparent;
}
.column_center .contact button.submit {
	float:right;
	border:0;
	width:54px;
	height:23px;
	background-position:-728px -72px;
	cursor:pointer;
	text-indent:-999em;
	margin:8px 0 0 262px;
}

.column_center .content .csc-textpic {
	float:left;
	width:324px;
	margin:0 -8px 0 0;
}
.column_center .content .csc-textpic a {
	float:left;
	display:block;
	position:relative;
	width:316px;
	height:234px;
	margin:0 8px 8px 0;
	overflow:hidden;
}
.column_center .content .csc-textpic a img {
	position:relative;
	float:left;
	margin:0 -316px 0 0;
	width:316px;
}
.column_center .content .csc-textpic a .mask {
	float:left;
	position:relative;
	width:316px;
	height:234px;
	background-position:-370px -959px;
}

.cag_pagebrowser {
	float:left;
	width:316px;
	height:21px;
}
.cag_pagebrowser a {
	float:left;
	width:158px;
	height:21px;
	text-indent:-999em;
}
.cag_pagebrowser .previous a {
	background-position:-728px -41px;
}
.cag_pagebrowser .next a {
	background-position:-886px -41px;
}


/* Column Center Home */
/* Top */
body.Home .column_center .content_top {
	float:left;
	width:348px;
	height:263px;
	position:relative;
}
body.Home .column_center .sub_headline {
	float:left;
	width:348px;
	height:40px;
}
body.Home .column_center .sub_headline h4 {
	text-align:center;
	padding:0 75px;
	margin:-1px 0 0;
}
body.Home .column_center .content_top .csc-textpic {
	position:absolute;
	width:316px;
	width:324px;
	height:234px;
	margin:16px 0 0 16px;
}
body.Home .column_center .content_top .csc-textpic a {
	float:left;
	display:block;
	position:relative;
	width:154px;
	height:113px;
	margin:0 8px 8px 0;
	overflow:hidden;
}
body.Home .column_center .content_top .csc-textpic a img {
	position:relative;
	float:left;
/*	margin:0 0 -113px;*/
	margin:0 -154px 0 0;
	width:154px;
/*	height:113px;*/
}
body.Home .column_center .content_top .csc-textpic a .mask {
	float:left;
	position:relative;
	width:154px;
	height:113px;
	background-position:-370px -1203px;
}
/* Bottom */
body.Home .column_center .content_bottom {
	float:left;
	width:316px;
	height:337px;
	padding:40px 16px 0;
}
body.Home .column_center .content_bottom h1 {
	border-bottom:1px solid;
	margin:0 -16px 12px 0;
	padding:0 0 2px;
}
body.Home .column_center .content_bottom .csc-textpic {
	float:left;
	width:324px;
	margin:0 -8px 0 0;
	padding:13px 0 0;
}
body.Home .column_center .content_bottom .csc-textpic a {
	float:left;
	display:block;
	position:relative;
	width:100px;
	height:74px;
	margin:0 8px 8px 0;
	overflow:hidden;
}
body.Home .column_center .content_bottom .csc-textpic a img {
	position:relative;
	float:left;
	margin:0 -100px 0 0;
	width:100px;
}
body.Home .column_center .content_bottom .csc-textpic a .mask {
	float:left;
	position:relative;
	width:100px;
	height:74px;
	background-position:-534px -1203px;
}

/***************************************
*********** Column Right ***************
***************************************/
.column_right {
	float:left;
	width:348px;
}
/* Main Navigation */
.column_right .main_navigation {
	float:left;
	width:356px;
	height:124px;
	margin:0 -8px 0 0;
	padding:81px 0 0;
}
.column_right .main_navigation li {
	float:left;
	padding:0 8px 8px 0;
}
.column_right .main_navigation a {
	display:block;
	float:left;
	width:170px;
	height:54px;
	text-indent:-999em;
}
.column_right .main_navigation a.Home {
	background-position:-10px -10px;
}
.column_right .main_navigation a.Angebot {
	background-position:-10px -74px;
}
.column_right .main_navigation a.Beispiele {
	background-position:-10px -138px;
}
.column_right .main_navigation a.Agentur {
	background-position:-10px -202px;
}
.column_right .main_navigation .active a.Home,
.column_right .main_navigation a.Home:hover {
	background-position:-190px -10px;
}
.column_right .main_navigation .active a.Angebot,
.column_right .main_navigation a.Angebot:hover {
	background-position:-190px -74px;
}
.column_right .main_navigation .active a.Beispiele,
.column_right .main_navigation a.Beispiele:hover {
	background-position:-190px -138px;
}
.column_right .main_navigation .active a.Agentur,
.column_right .main_navigation a.Agentur:hover {
	background-position:-190px -202px;
}
/* Lists */
.column_right .bg_list_before,
.column_right .bg_list_after {
	float:left;
	width:316px;
	height:5px;
}
.column_right .bg_list_before {
	background-position:-10px -266px;
	margin:5px 0 0;
}
.column_right .bg_list_after {
	background-position:-10px -281px;
	margin:0 0 4px;
}
.column_right .content_top ul,
.column_right .content_bottom ul {
	float:left;
	width:316px;
	background-repeat:repeat-y;
	margin:10px 0 9px;
	padding:0 0 1px;
}
.column_right .content_top li,
.column_right .content_bottom li {
	padding:0 8px 0 24px;
	background-position:9px 5px;
	background-repeat:no-repeat;
}
/* Content Top */
.column_right .content_top {
	float:left;
	width:316px;
	height:209px;
	padding:32px 16px 0;
}
.column_right .content_top h1 {
	border-bottom:1px solid;
	margin:0 -16px 12px 0;
	padding:0 0 2px;
}
.column_right_top_image {
	width:348px;
	height:222px;
	margin:-13px -16px 0;
}
.column_right_top_image .mask {
	width:348px;
	height:222px;
	background-position:-370px -10px;
}
/* Content Bottom */
.column_right .content_bottom {
	float:left;
	width:316px;
	height:339px;
	padding:32px 16px 0;
}
.column_right_bottom_image_large {
	width:348px;
	height:344px;
	margin:-5px -16px 0;
}
.column_right_bottom_image_large .mask {
	width:348px;
	height:344px;
	background-position:-370px -242px;
}
.column_right_bottom_image_wide {
	position:relative;
	width:348px;
	height:178px;
	margin:-5px -16px 0;
}
.column_right_bottom_image_wide .image {
	position:absolute;
	width:348px;
	height:165px;
	left:0;
	top:0;
}
.column_right_bottom_image_wide .mask {
	position:absolute;
	width:348px;
	height:178px;
	left:0;
	top:0;
	background-position:-370px -596px;
}
.column_right .content_bottom h1 {
	border-bottom:1px solid;
	margin:0 -16px 12px 0;
	padding:8px 0 2px;
}
/* Links */
.column_right .links {
	float:left;
	width:301px;
	padding:31px 0 0 15px;
	height:19px;
	background-position:-728px -105px;
	position:relative;
}
.column_right .links li {
	float:left;
	padding:0 10px 0 0;
}
.column_right .links a {
	float:left;
	display:block;
	font-size:11px;
	text-decoration:none;
	text-transform:uppercase;
}

/***************************************
*********** Footer *********************
***************************************/
.footer {
	float:left;
	clear:both;
	position:relative;
	width:990px;
	width:628px;
	height:24px;
	background-position:-10px -1397px;
}
body.Home .footer {
	background-position:-10px -1431px;
}

/***************************************
*********** Flash of Unstyled Content **
***************************************/
/* .js .sub_navigation, */
.js .mask,
.js body.Home .column_center .content_top .csc-textpic,
.js .column_center .content .csc-textpic,
.js .column_center .content * { 
	display: none;
}



html {
	background-color:#f7f4e4;
	background-image:url(../images/bg_html.png);
}
body {
	background-image:url(../images/bg_body.png);
	color:#5a5149;
}
a {
	color:#5a5149;
	text-decoration:underline;
	outline:none;
}
.column_center .content li a,
li a {
	color:#8e2c23;
}
h1 {
	color:#968475;
}
h2 {
	color:#8e2c23;
}
h3 {
	color:#f7f5e5;
}
h4 {
	color:#ffffff;
}
span.detail {
	color:#8e2c23;
}
.separator {
	border-color:#b06c65;
}
body.Home .footer {
	background-image:none;
}

/***************************************
*********** Column Left ****************
***************************************/
.column_left .content_block {
	border-color:#cac0b0;
}
.column_left .sub_navigation ul a {
	color:#8e2c23;
}
.column_left .sub_navigation ul .active a,
.column_left .sub_navigation ul a:hover {
	color:#ffffff;
}
.column_left .sub_navigation ul ul .inactive a {
	color:#8e2c23;
}
.column_left .sub_navigation ul ul .active a,
.column_left .sub_navigation ul ul a:hover {
	color:#ffffff;
}
.column_left .sub_navigation ul ul ul .inactive a {
	color:#8e2c23;
	background-image:none;
}
.column_left .sub_navigation ul ul ul .active a,
.column_left .sub_navigation ul ul ul a:hover {
	color:#8e2c23;
}

/***************************************
*********** Column Center **************
***************************************/
.column_center .content {
	color:#ffffff;
}
.column_center .content a {
	color:#ffffff;
}
body.Home .column_center .content_bottom h1 {
	border-color:#cac0b0;
}
.column_center .content h3 {
	border-color:#b06c65;
}
.column_center li {
	color:#5a5149;
}
.column_center li a {
	color:#5a5149;
}
.column_center .contact input,
.column_center .contact textarea {
	color:#5a5149;
}
.column_center .contact .error input,
.column_center .contact .error textarea {
	color:#ffffff;
}

/***************************************
*********** Column Right ***************
***************************************/
.column_right .content_top h1 {
	border-color:#cac0b0;
}
.column_right .content_bottom h1 {
	border-color:#cac0b0;
}
body.Home .column_right .links {
	background-image:none;
}
.column_right .links a {
	color:#8e2c23;
}

/***************************************
*********** Images *********************
***************************************/
.wrapper_2,
a.button_continue,
.footer,
.column_left .logo a,
.column_left .bg_top,
.column_left .bg_bottom,
.column_center .content .csc-textpic a .mask,
body.Home .column_center .content_top .csc-textpic a .mask,
body.Home .column_center .content_bottom .csc-textpic a .mask,
.column_right .main_navigation a,
.column_right .bg_list_before,
.column_right .bg_list_after,
.column_right_bottom_image_wide .mask,
.column_right .links,
.column_center_image_wide .mask,
.column_center .bg_list_before,
.column_center .bg_list_after,
.column_left .sub_navigation ul a,
.column_left .sub_navigation ul ul ul .active a,
.column_left .sub_navigation ul ul ul a:hover,
.column_left .sub_navigation .bg_nav_before,
.column_left .sub_navigation .bg_nav_after,
.column_right_top_image .mask,
.column_right_bottom_image_large .mask,
.column_center .contact .input_wrapper,
.column_center .contact .textarea_wrapper,
.column_center .contact button.submit,
.cag_pagebrowser a {
	background-image:url(../images/spritemap.png);
}
html {
	background-image:url(../images/bg_html.png);
}
body {
	background-image:url(../images/bg_body.png);
}
.wrapper_1 {
	background-image:url(../images/bg_wrapper_1.png);
}
.column_left .content {
	background-image:url(../images/bg_column_left.png);
}
.column_left .sub_navigation ul ul ul {
	background-image:url(../images/bg_sub_navigation.png);
}
.column_center .content {
	background-image:url(../images/bg_column_center.png);
}
.column_center ul {
	background-image:url(../images/bg_list_column_center.png);
}
.column_center li {
	background-image:url(../images/bg_list_bullet_column_center.png);
}
.column_right .content_top ul,
.column_right .content_bottom ul {
	background-image:url(../images/bg_list_column_right.png);
}
.column_right .content_top li,
.column_right .content_bottom li {
	background-image:url(../images/bg_list_bullet_column_right.png);
}










