

/*
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/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/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/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/fancy_title_left.png') repeat-x;
}

#fancybox-title-main {
	font-weight: bold;
	line-height: 29px;
	background: transparent url('../images/fancy_title_main.png') repeat-x;
	color: #FFF;
}

#fancybox-title-right {
	padding-left: 15px;
	background: transparent url('../images/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/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/fancy_nav_left.png') no-repeat;
}

#fancybox-right-ico {
	background: transparent url('../images/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/fancy_shadow_n.png') repeat-x;
}

div#fancy-bg-ne {
	top: -20px;
	right: -20px;
	width: 20px;
	height: 20px;
	background: transparent url('../images/fancy_shadow_ne.png') no-repeat;
}

div#fancy-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	width: 20px;
	background: transparent url('../images/fancy_shadow_e.png') repeat-y;
}

div#fancy-bg-se {
	bottom: -20px;
	right: -20px;
	width: 20px;
	height: 20px;
	background: transparent url('../images/fancy_shadow_se.png') no-repeat;
}

div#fancy-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: transparent url('../images/fancy_shadow_s.png') repeat-x;
}

div#fancy-bg-sw {
	bottom: -20px;
	left: -20px;
	width: 20px;
	height: 20px;
	background: transparent url('../images/fancy_shadow_sw.png') no-repeat;
}

div#fancy-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	width: 20px;
	background: transparent url('../images/fancy_shadow_w.png') repeat-y;
}

div#fancy-bg-nw {
	top: -20px;
	left: -20px;
	width: 20px;
	height: 20px;
	background: transparent url('../images/fancy_shadow_nw.png') no-repeat;
}

html {
	width				: 100%;
	height				: 100%;
	background-repeat	: no-repeat;
}
body {

	font-family			: verdana;
	font-size			: 11px;
	line-height			: 18px;
	height				: 100%;
}
a {
	text-decoration		: underline;
	outline				: none;
}
strong {
	font-weight			: bold
}
em {
	font-style			: italic;
}
#wrapper_1 {
	float				: left;
	position			: relative;
	min-width			: 864px;
	max-width			: 1280px;
	width				: 100%;
	overflow			: hidden;
	min-height			: 100%;
}
#wrapper_2 {
	float				: left;
	width				: 1280px;
	margin				: 227px 0 0;
}
#wrapper_3 {
	float				: left;
	width				: 986px;
	margin				: 0 0 40px 42px;
	position			: relative;
}
#link_box {
	position			: absolute;
	left				: 15px;
	bottom				: -20px;
}
#link_box a {
	text-decoration		: none;
}
#link_box a:hover {
	text-decoration		: underline;
}
#logo a {
	position			: absolute;
	text-indent			: -999em;
}

/*         _____________
__________/ Column Left \___________________________________________________________
--------------------------------------------------------------------------------------- */
#column_left {
	float				: left;
	width				: 252px;
	padding				: 0 0 42px;
}
#column_left .top {
	float				: left;
	width				: 252px;
}
#column_left .title {
	position			: relative;
	float				: left;
	width				: 252px;
	height				: 97px;
}
#column_left .title p {
	position			: absolute;
	font-size			: 16px;
	font-family			: arial;
	text-transform		: uppercase;
	line-height			: 19px;
	top					: 17px;
	left				: 82px;
}
#column_left .infobox {
	float				: left;
	position			: relative;
	padding				: 0 0 0 83px;
	margin				: -2px 0 0;
	width				: 168px;
	line-height			: 13px;
}
#column_left .infobox h2 {
	font-size			: 12px;
	font-family			: arial;
	text-transform		: uppercase;
	line-height			: 12px;
	padding				: 0 0 8px;
}
#background_01,
#background_02 {
	position			: absolute;
}
#background_01 {
	height				: 1px;
	width				: 252px;
	top					: 74px;
}
#background_02 {
	height				: 30px;
	width				: 1px;
	top					: 22px;
	left				: 61px;
}

/*         ____________
__________/ Navigation \____________________________________________________________
--------------------------------------------------------------------------------------- */
#navigation {
	float				: left;
	width				: 191px;
	margin				: 0 0 0 61px;
	background-repeat	: no-repeat;
}
#navigation ul {
	float				: left;
	padding				: 13px 0 0;
}
#navigation li {
	float				: left;
	display				: block;
	padding				: 5px 0 18px 18px;
	background-repeat	: no-repeat;
	background-position	: 9px 9px;
}
#navigation a {
	float				: left;
	display				: block;
	width				: 172px;
	padding				: 1px 0 0 1px;
	text-decoration		: none;
	text-transform		: uppercase;
	height				: 16px;
	line-height			: 12px;
	font-size			: 12px;
	font-family			: arial;
}
#navigation span {
	float				: left;
	padding				: 1px 3px 2px;
}
#navigation ul ul {
	width				: 173px;
	padding				: 10px 0 1px;
	margin				: 0 0 4px;
}
#navigation ul li.active ul li {
	padding				: 0 0 9px 10px;
	background-image	: none;
}
#navigation ul li.active ul li a {
	width				: 162px;
	background-color	: transparent;
}
#navigation ul li.active ul li a span {
	background-color	: transparent;
}

/*         _________
__________/ Content \_______________________________________________________________
--------------------------------------------------------------------------------------- */
#content {
	position			: relative;
	float				: left;
	width				: 510px;
	padding				: 0 42px 42px 18px;
}
#content h1 {
	float				: left;
	line-height			: 53px;
	font-size			: 24px;
	font-family			: arial;
	padding				: 0 16px 0 18px;
	margin				: 0 0 0 -18px;
	text-transform		: uppercase;
}
#content .csc-textpic {
	float				: left;
	margin				: 0 -10px 0 0;
	padding				: 6px 0 0;
}
#content .csc-textpic img {
	float				: left;
	border				: 2px solid;
	margin				: 0 10px 10px 0;
}
#content h2 {
	font-weight			: bold;
}
#content ul {
	padding				: 3px 0 5px;
	margin				: 6px 0 4px;
}
#content li {
	padding				: 0 0 0 20px;
	background-repeat	: no-repeat;
	background-position	: 8px 6px;
}
#content .one_column {
	margin				: 0 0 -8px;
}
#content .slideshow ,
#content .one_column,
#content .two_columns {
	float				: left;
	padding				: 11px 0 0;
	width				: 510px;
}
#content .slideshow {
	position			: relative;
	height				: 168px;
	margin				: 11px 0 -8px;
	padding				: 0;
}
#content .slideshow .csc-textpic {
	position			: absolute;
	left				: 0;
	top					: 0;
}
#content .left {
	float				: left;
	width				: 250px;
	padding				: 0 5px 0 0;
}
#content .right {
	float				: right;
	width				: 250px;
	padding				: 0 0 0 5px;
}

/*         _________
__________/ Contact \_______________________________________________________________
--------------------------------------------------------------------------------------- */
#contact label {
	float				: left;
}
#contact input {
	float				: left;
	width				: 244px;
	height				: 20px;
	line-height			: 20px;
	border				: 1px solid transparent;
	margin				: 1px 0 13px;
	padding				: 0 2px;
}
#contact textarea {
	float				: left;
	width				: 244px;
	height				: 70px;
	line-height			: 20px;
	border				: 1px solid transparent;
	margin				: 1px 0 5px;
	padding				: 0 2px;
}
#contact button {
	float				: right;
	width				: 57px;
	height				: 17px;
	border				: 0;
	text-indent			: -999em;
	cursor				: pointer;
	outline:none;
}
#contact button::-moz-focus-inner {
	border				: none;
}

/*         __________
__________/ Twinsite \______________________________________________________________
--------------------------------------------------------------------------------------- */
#twinsite {
	bottom:8px;
	display:block;
	font-size:11px;
	right:10px;
	line-height:13px;
	position:absolute;
	text-decoration:none;
}

html {
	background-image	: url(../natalie-feustel-hairdesign.de/bg_html.jpg);
	background-color	: #ffffff;
}
body {
	color				: #000000;
}
#column_left .top {
	background-image	: url(../natalie-feustel-hairdesign.de/bg_column_left_top.jpg);
}
#wrapper_3 {
	background-image	: url(../natalie-feustel-hairdesign.de/bg_wrapper_3.jpg);
}
#link_box a {
	color				: #a7a7a7;
}
#logo a {
	width				: 230px;
	height				: 75px;
	left				: 161px;
	top					: 75px;
}
a {
	color				: #000000;
}
/*         _____________
__________/ Column Left \___________________________________________________________
--------------------------------------------------------------------------------------- */
#column_left #navigation {
	background-image	: url(../natalie-feustel-hairdesign.de/bg_navigation.jpg);
}
#background_01,
#background_02 {
	background-color	: #b60618;
}
#column_left .title p {
	color				: #ffffff;
}
#column_left .title .detail {
	color				: #a7a7a7;
}
#column_left .infobox {
	color				: #ffffff;
}

/*         ____________
__________/ Navigation \____________________________________________________________
--------------------------------------------------------------------------------------- */
#navigation li.active {
	background-image	: url(../natalie-feustel-hairdesign.de/bg_nav.png);
}
#navigation a {
	color				: #000000;
}
#navigation .active a,
#navigation a:hover {
	background-color	: #b60618;
	color				: #b60618;
}
#navigation .active span,
#navigation a:hover span {
	background-color	: #f3f3f1;
}
#navigation ul ul {
	background-color	: #e3e3e3;
}
#navigation ul li.active ul li a {
	color				: #000000;
}
#navigation ul li.active ul li.active a,
#navigation ul li.active ul li a:hover {
	background-color	: #b60618;
	color				: #b60618;
}
#navigation ul li.active ul li.active span,
#navigation ul li.active ul li a:hover span {
	background-color	: #f3f3f1;
}

/*         _________
__________/ Content \_______________________________________________________________
--------------------------------------------------------------------------------------- */
#content .csc-textpic img {
	border-color		: #b60618;
}
#content h1 {
	color				: #000000;
	background-color	: #e3e3e3;
}
#content h1 .detail {
	color				: #b60618;
}
#content h2 {
	color				: #b60618;
}
#content ul {
	background-color	: #d3d3d3;
}
#content li {
	background-image	: url(../natalie-feustel-hairdesign.de/list_bullet.png);
}

/*         _________
__________/ Contact \_______________________________________________________________
--------------------------------------------------------------------------------------- */
#contact input,
#contact textarea {
	background-color	: #ffffff;
	border-color		: #ffffff;
}
#contact input.error,
#contact textarea.error {
	border-color		: #b60618;
}
#contact button {
	background-image	: url(../natalie-feustel-hairdesign.de/bg_button_send.png);
}

/*         __________
__________/ Twinsite \______________________________________________________________
--------------------------------------------------------------------------------------- */
#twinsite {
	color				: #a7a7a7;
}

