﻿/*
author: Daniel Friedrich
web: www.slide-and-scroll.com
*/


/*TABLE OF CONTENTS

I. general

II. "large" screen and projection (min-width: 1280px)
01 - global
02 - header
03 - main
04 - footer
05 - sidebar

III. "medium" screen and (min-width: 768px and max-width: 1279px)
01 - global
02 - header
03 - main
04 - footer
05 - sidebar

IV. "small" screen and (max-width: 767px)
01 - global
02 - header
03 - main
04 - footer
05 - sidebar

V. print
01 - global
02 - header
03 - main
04 - footer
05 - sidebar
*/

/*
_________________________________________________________________

I. general
_________________________________________________________________
*/
*[irrelevant=true]
{
	display: none;
}
*[irrelevant=false]
{
	display: inherit;
}
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6
{
	-webkit-text-size-adjust: none;
}
body
{
	width: 100%;
	height: auto;
}
div.floatClear
{
	width: 100%;
	height: auto;
	clear: both;
}
a.link
{
	color: rgb(117,120,49);
	text-decoration: none;
	transition: color 0.25s ease;
	-webkit-transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-o-transition: color 0.25s ease;
}
a.link:hover
{
	color: rgb(106,106,106);
}
a.linkNav
{
	color: rgb(158,55,22);
	text-decoration: none;
	transition: color 0.25s ease, background-color 0.25s ease;
	-webkit-transition: color 0.25s ease, background-color 0.25s ease;
	-moz-transition: color 0.25s ease, background-color 0.25s ease;
	-o-transition: color 0.25s ease, background-color 0.25s ease;
}
a.linkNav:hover
{
	color: rgb(255,52,37);
}
a.linkNav.active
{
	color: rgb(212,212,212);
	background-color: rgb(158,55,22);
}
b
{
	font-weight: bold;
}
i
{
	font-style: italic;
}
.fontScriptBl
{
	font-family: 'SCRIPTBL';
}
.fontLibreBaskerville
{
	font-family: 'Libre Baskerville', Georgia, serif;
}
.fontSansSerif
{
	font-family: Arial, Tahoma, sans-serif;
}
.colorTurquoise
{
	color: rgb(55,158,155);
}
.colorGreen
{
	color: rgb(117,120,49);
}
.colorDarkGreen
{
	color: rgb(69,70,26);
}
.colorRed
{
	color: rgb(255,52,37);
}
.colorDarkRed
{
	color: rgb(158,55,22);
}
.colorGold
{
	color: rgb(184,174,137);
}
.colorGreyOne
{
	color: rgb(37,37,37);
}
.colorGreyTwo
{
	color: rgb(48,48,48);
}
.colorGreyThree
{
	color: rgb(106,106,106);
}
.colorGreyFour
{
	color: rgb(184,184,184);
}
.colorGreyFive
{
	color: rgb(212,212,212);
}
.colorWhite
{
	color: rgb(255,255,255);
}
.backgroundTurquoise
{
	background-color: rgb(55,158,155);
}
.backgroundGreen
{
	background-color: rgb(117,120,49);
}
.backgroundDarkGreen
{
	background-color: rgb(69,70,26);
}
.backgroundRed
{
	background-color: rgb(255,52,37);
}
.backgroundDarkRed
{
	background-color: rgb(158,55,22);
}
.backgroundGold
{
	background-color: rgb(184,174,137);
}
.backgroundGreyOne
{
	background-color: rgb(37,37,37);
}
.backgroundGreyTwo
{
	background-color: rgb(48,48,48);
}
.backgroundGreyThree
{
	background-color: rgb(106,106,106);
}
.backgroundGreyFour
{
	background-color: rgb(184,184,184);
}
.backgroundGreyFive
{
	background-color: rgb(212,212,212);
}
.backgroundWhite
{
	background-color: rgb(255,255,255);
}



/*
_________________________________________________________________

II. "large" screen and projection (min-width: 1280px)
_________________________________________________________________
*/

/* 01 - global*/
.unnecessary_1280
{
	display: none;
}
div.placeholderImg
{
	width: 100%;
	height: auto;
}
div.placeholderImg
{
	width: 90%;
	height: auto;
	margin: auto;
	position: relative;
}
div.placeholderImgInner
{
	width: 120px;
	height: auto;
	margin: auto;
	padding-top: 60px;
	padding-bottom: 60px;
}
div.placeholderImgInner:before
{
	width: 40%;
	height: 1px;
	position: absolute;
	left: 0px;
	top: 50%;
	background-color: rgb(184,174,137);
	content: "";
}
div.placeholderImgInner:after
{
	width: 40%;
	height: 1px;
	position: absolute;
	right: 0px;
	top: 50%;
	background-color: rgb(184,174,137);
	content: "";
}
div.placeholderImgInner img
{
	width: 100%;
	height: auto;
}
div.imageSlider1,
div.imageSlider2
{
	z-index: 31;
}
.whileLoading
{
	background-image:url(images/loader.gif);
	background-repeat:no-repeat;
	background-position:50% 50%;
}
div.imageSlider1 img,
div.imageSlider2 img
{
	width: 1920px;
	height: 540px;
	position: absolute;
}
div#background
{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 10;
	background-image: url('images/pattern1.png');
	background-position: left top;
	background-repeat: repeat;
}
div#wrapper
{
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 20;
}
div#wrapperInner
{
	width: 100%;
	max-width: 1924px;
	height: auto;
	margin: auto;
}
div.wrapperInnerBorder
{
	border-left: 2px solid rgb(184,174,137);
	border-right: 2px solid rgb(184,174,137);
}

/* 02 - header							*/
div#header
{
	width: 100%;
	max-width: 1920px;
	height: auto;
	position: fixed;
	z-index: 50;
	border-bottom: 2px solid rgb(158,55,22);
}
div#headerInner
{
	width: 90%;
	height: auto;
	margin: auto;
}
div#headerLogo
{
	width: 72px;
	height: 72px;
	position: absolute;
	margin-top: 16px;
	margin-left: 16px;
	display: inline;
	float: left;
	border-bottom: 2px solid rgb(158,55,22);
	border-right: 2px solid rgb(158,55,22);
	background-color: #9E3716;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transition: background-color 0.25s ease;
	-webkit-transition: background-color 0.25s ease;
	-moz-transition: background-color 0.25s ease;
	-o-transition: background-color 0.25s ease;
}
.no-csstransforms div#headerLogo
{
	width: 104px;
	height: 104px;
	position: absolute;
	margin-top: 0px;
	margin-left: 0px;
	display: inline;
	float: left;
	border-bottom: 0;
	border-right: 0;
	background-color: transparent;
	background-image: url('images/icon.png');
	background-position: left top;
	background-repeat: no-repeat;
}
div#headerLogo.active
{
	background-color: rgb(158,55,22);
}
.no-csstransforms div#headerLogo.active
{
	background-color: transparent;
}
div#headerLogo a
{
	width: 52px;
	height: 52px;
	display: block;
	margin-top: 10px;
	margin-left: 10px;
	background-image: url('images/logo45-ws.png');
	background-position: left top;
	background-repeat: no-repeat;
	transition: background-image 0.25s ease;
	-webkit-transition: background-image 0.25s ease;
	-moz-transition: background-image 0.25s ease;
	-o-transition: background-image 0.25s ease;
}
.no-csstransforms div#headerLogo a
{
	width: 104px;
	height: 104px;
	display: block;
	background-image: none;
}
div#headerLogo.active a
{
	background-image: url('images/logo45-ws.png');
}
.no-csstransforms div#headerLogo.active a
{
	background-image: none;
}
div#headerNav
{
	width: auto;
	height: auto;
	float: right;
}
div#header ul,
div#headerNavMobile ul
{
	width: auto;
	height: auto;
	transition: margin-bottom 0.15s ease, margin-top 0.15s ease;
	-webkit-transition: margin-bottom 0.15s ease, margin-top 0.15s ease;
	-moz-transition: margin-bottom 0.15s ease, margin-top 0.15s ease;
	-o-transition: margin-bottom 0.15s ease, margin-top 0.15s ease;
}
div#header ul li,
div#headerNavMobile ul li
{
	width: auto;
	height: auto;
	display: inline;
	float: left;
}
div#header ul li a,
div#headerNavMobile ul li a
{
	width: auto;
	height: auto;
	display: inline-block;
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 24px;
}

/* 03 - main*/
div#main
{
	width: 100%;
	height: auto;
	z-index: 30;
}
div.section
{
	width: 100%;
	height: auto;
}
div.sectionTitle
{
	width: 90%;
	height: auto;
	margin: auto;
	padding-top: 120px;
	padding-bottom: 120px;
}
div.sectionTitle h1
{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 64px;
	line-height: 2em;
	border-top: 1px solid rgb(184,174,137);
	border-bottom: 1px solid rgb(184,174,137);
}
div.sectionContent
{
	width: 100%;
	height: auto;
}
div.introTop
{
	width: 90%;
	height: 120px;
	margin: auto;
	padding-top: 52px;
}
div.introTopInner
{
	width: auto;
	height: auto;
	padding-right: 40px;
	float: right;
}
div.introTopImg
{
	width: auto;
	height: auto;
	float: left;
	padding-top: 13px;
	padding-bottom: 13px;
	padding-right: 20px;
}
div.introTopImg img
{
	width: auto;
	height: 42px;
}
div.introTopSocialMedia
{
	width: auto;
	height: auto;
	float: right;
}
div.introTopSocialMedia a
{
	width: auto;
	height: auto;
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	font-size: 48px;
}
div.introPic
{
	width: 100%;
	height: auto;
	border-top: 2px solid rgb(158,55,22);
	border-bottom: 2px solid rgb(158,55,22);
}
div.introPic img
{
	width: 100%;
	height: auto;
}
div.introNav
{
	width: 100%;
	height: auto;
}
div.introNavInner
{
	width: 90%;
	height: auto;
	margin: auto;
	padding-top: 20px;
	padding-bottom: 22px;
}
div.introNavInnerJS
{
	width: auto;
	margin: 0;
	display: inline-block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
div.introNav ul
{
	width: auto;
	height: auto;
	transition: margin-bottom 0.15s ease, margin-top 0.15s ease;
	-webkit-transition: margin-bottom 0.15s ease, margin-top 0.15s ease;
	-moz-transition: margin-bottom 0.15s ease, margin-top 0.15s ease;
	-o-transition: margin-bottom 0.15s ease, margin-top 0.15s ease;
}
div.introNav ul li
{
	width: auto;
	height: auto;
	display: inline;
	font-size: 30px;
	color: rgb(212,212,212);
}
div.introNav ul li a
{
	width: auto;
	height: auto;
	display: inline-block;
	padding-top: 14px;
	padding-bottom: 14px;
	padding-left: 50px;
	padding-right: 50px;
	color: rgb(212,212,212);
	text-decoration: none;
	transition: color 0.25s ease;
	-webkit-transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-o-transition: color 0.25s ease;
}
div.introNav ul li a:hover
{
	color: rgb(69,70,26);
} 
div.introduce
{
	width: 100%;
	height: auto;
} 
div.introduceInner
{
	width: 90%;
	height: auto;
	margin: auto;
}
div.introduceInner h1
{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 64px;
	line-height: 2em;
}
div.introduceInner h3
{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 28px;
	line-height: 3em;
	letter-spacing: 0.1em;
}
div.introduceInner p
{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 20px;
	line-height: 2em;
	letter-spacing: 0.1em;
}
div.appointment
{
	width: 100%;
	height: 544px;
	position: relative;
	overflow: hidden;
	border-top: 2px solid rgb(158,55,22);
	border-bottom: 2px solid rgb(158,55,22);
}
div.appointment div
{
	width: 100%;
	height: 540px;
	position: absolute;
}
div.appointment div.appointmentBackground
{
	z-index: 31;
}
div.appointment div.appointmentBackground img
{
	width: 1920px;
	height: 540px;
	right: 0px;
	position: absolute;
}
div.appointment div.appointmentOverlay
{
	z-index: 32;
	background-image: url('images/overlay-4.png');
	background-position: left top;
	background-repeat: repeat;
}
div.appointment div.appointmentLabel
{
	z-index: 33;
}
div.appointment div.appointmentLabel div
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 50px;
	position: relative;
	clear: both;
}
div.appointment div.appointmentLabel div img
{
	width: auto;
	height: 440px;
}
div.headerStudioWrap,
div.headerContactWrap
{
	width: 100%;
	height: auto;
	border-top: 2px solid rgb(184,184,184);
	border-bottom: 2px solid rgb(184,184,184);
}
div.headerStudio,
div.headerContact
{
	width: 90%;
	height: auto;
	margin: auto;
}
div.headerStudio h2,
div.headerContact h2
{
	width: 100%;
	height: auto;
	padding-top: 25px;
	padding-bottom: 25px;
	text-align: center;
	font-size: 36px;
	line-height: 1.2em;
	text-transform: uppercase;
}
div.contentStudioWrap,
div.contentContactWrap
{
	width: 100%;
	height: auto;
	background-image: url('images/overlay-7.png');
	background-position: left top;
	background-repeat: repeat;
}
div.contentStudio,
div.contentContact
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 60px;
	padding-bottom: 60px;
	column-count: 3;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-width: 32.5%;
	-webkit-column-width: 32.5%;
	-moz-column-width: 32.5%;
	column-gap: 50px;
	-webkit-column-gap: 50px;
	-moz-column-gap: 50px;
}
div.contentStudio h5,
div.contentContact h5,
div.contactformInnerLeft h5
{
	width: 100%;
	height: auto;
	font-size: 20px;
	line-height: 2.5em;
}
div.contentStudio p,
div.contentContact p,
div.contactformInnerLeft p
{
	width: 100%;
	height: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 18px;
	line-height: 1.2em;
	text-align: justify;
}
div.hotline
{
	width: 100%;
	height: 544px;
	position: relative;
	overflow: hidden;
	border-top: 2px solid rgb(55,158,155);
	border-bottom: 2px solid rgb(55,158,155);
}
div.hotline div
{
	width: 100%;
	height: 540px;
	position: absolute;
}
div.hotline div.hotlineBackground
{
	z-index: 31;
}
div.hotline div.hotlineBackground img
{
	width: 1920px;
	height: 540px;
	right: 0px;
	position: absolute;
}
div.hotline div.hotlineOverlay
{
	z-index: 32;
	background-image: url('images/overlay-4.png');
	background-position: left top;
	background-repeat: repeat;
}
div.hotline div.hotlineLabel
{
	z-index: 33;
}
div.hotline div.hotlineLabel div
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 50px;
	position: relative;
	clear: both;
}
div.hotline div.hotlineLabel div img
{
	width: auto;
	height: 440px;
}
div.videoWrap,
div.videoWrapTrail
{
	width: 100%;
	max-width: 1920px;
	height: auto;
	display: none;
	overflow: hidden;
	border-top: 2px solid rgb(55,158,155);
	border-bottom: 2px solid rgb(55,158,155);
}
div.video
{
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 31;
}
div.video video,
div.video img
{
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
div.videoOverlayGrey
{
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 32;
	background-image: url('images/overlay-grey-150.png');
	background-position: left top;
	background-repeat: repeat;
}
div.videoOverlay
{
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 33;
	background-image: url('images/overlay-6.png');
	background-position: left top;
	background-repeat: repeat;
}
div.locationWrap
{
	width: 100%;
	height: auto;
}
div.location
{
	width: 100%;
	height: 400px;
	position: relative;
}
div#locationMap
{
	width: 100%;
	height: 400px;
	position: absolute;
	z-index: 31;
}
div#locationOverlay
{
	width: 100%;
	height: 400px;
	display: none;
	position: absolute;
	z-index: 32;
}
div.contentArtistsWrap
{
	width: 100%;
	height: auto;
}
div.contentArtists
{
	width: 50%;
	height: auto;
	margin: auto;
}
div.contentArtistsInner
{
	width: 100%;
	height: auto;
}
div.Artists
{
	width: 32.8%;
	height: auto;
	display: inline-block;
	vertical-align: top;
	padding-top: 40px;
	padding-bottom: 40px;
}
div.ArtistsPic
{
	width: 180px;
	height: 180px;
	margin: auto;
	position: relative;
}
div.ArtistsPic img
{
	width: 180px;
	height: 180px;
	position: absolute;
	z-index: 31;
	border: 2px solid rgb(184,174,137);
	border-radius: 90px 90px 90px 90px;
	-moz-border-radius: 90px 90px 90px 90px;
	-webkit-top-right-radius: 90px;
	-webkit-bottom-right-radius: 90px;
	-webkit-bottom-left-radius: 90px;
	-webkit-top-left-radius: 90px;
}
div.ArtistsPic a
{
	width: 180px;
	height: 180px;
	display: block;
	position: absolute;
	z-index: 32;
	padding-top: 82px;
	border-radius: 90px 90px 90px 90px;
	-moz-border-radius: 90px 90px 90px 90px;
	-webkit-top-right-radius: 90px;
	-webkit-bottom-right-radius: 90px;
	-webkit-bottom-left-radius: 90px;
	-webkit-top-left-radius: 90px;
	background-color: rgba(184,174,137, 0.85);
	opacity: 0;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.5s ease;
	-webkit-transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
}
.no-opacity div.ArtistsPic a b
{
	display: none;
}
div.ArtistsPic a.ArtistsPicJS
{
	cursor: pointer;
}
div.ArtistsPic a.ArtistsPicJS:hover
{
	opacity: 1;
}
div.ArtistsName
{
	width: 100%;
	height: auto;
}
div.ArtistsName h6
{
	width: 100%;
	height: auto;
	font-size: 22px;
	text-align: center;
	line-height: 2em;
}
div.ArtistsName p
{
	width: 100%;
	height: auto;
	font-size: 14px;
	text-align: center;
	line-height: 1.2em;
}
div.artistsAtWork
{
	width: 100%;
	height: 544px;
	position: relative;
	overflow: hidden;
	border-top: 2px solid rgb(158,55,22);
	border-bottom: 2px solid rgb(158,55,22);
}
div.artistsAtWork div,
div.question div
{
	width: 100%;
	height: 540px;
	position: absolute;
}
div.artistsAtWork div.artistsAtWorkOverlay
{
	z-index: 32;
	background-image: url('images/overlay-4.png');
	background-position: left top;
	background-repeat: repeat;
}
div.artistsAtWork div.artistsAtWorkLabel
{
	z-index: 33;
}
div.artistsAtWork div.artistsAtWorkLabel div
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 50px;
	position: relative;
	clear: both;
}
div.artistsAtWork div.artistsAtWorkLabel div img
{
	width: auto;
	height: 440px;
}
div.headerRelicsWrap
{
	width: 100%;
	height: auto;
	border-top: 2px solid rgb(212,212,212);
	border-bottom: 2px solid rgb(212,212,212);
}
div.headerRelics
{
	width: 90%;
	height: auto;
	margin: auto;
}
div.headerRelics h2
{
	width: 100%;
	height: auto;
	padding-top: 25px;
	padding-bottom: 25px;
	text-align: center;
	font-size: 36px;
	line-height: 1.2em;
	text-transform: uppercase;
}
div.contentRelicsWrap
{
	width: 100%;
	height: auto;
	background-image: url('images/overlay-7.png');
	background-position: left top;
	background-repeat: repeat;
}
div.contentRelics
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 60px;
	padding-bottom: 60px;
	column-count: 3;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-width: 32.5%;
	-webkit-column-width: 32.5%;
	-moz-column-width: 32.5%;
	column-gap: 50px;
	-webkit-column-gap: 50px;
	-moz-column-gap: 50px;
}
div.contentRelics h5
{
	width: 100%;
	height: auto;
	font-size: 20px;
	line-height: 2.5em;
}
div.contentRelics p
{
	width: 100%;
	height: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 18px;
	line-height: 1.2em;
	text-align: justify;
}
div.laser
{
	width: 100%;
	height: 544px;
	position: relative;
	overflow: hidden;
	border-top: 2px solid rgb(117,120,49);
	border-bottom: 2px solid rgb(117,120,49);
}
div.laser div
{
	width: 100%;
	height: 540px;
	position: absolute;
}
div.laser div.laserBackground
{
	z-index: 31;
}
div.laser div.laserBackground img
{
	width: 1920px;
	height: 540px;
}
div.laser div.laserOverlay
{
	z-index: 32;
	background-image: url('images/overlay-4.png');
	background-position: left top;
	background-repeat: repeat;
}
div.laser div.laserLabel
{
	z-index: 33;
}
div.laser div.laserLabel div
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 50px;
	position: relative;
	clear: both;
}
div.laser div.laserLabel div img
{
	width: auto;
	height: 440px;
}
div.resultWrap
{
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
}
div.result
{
	width: 840px;
	height: 370px;
	margin: auto;
	clear: both;
}
div.result div
{
	width: 400px;
	height: auto;
	display: inline-block;
}
div.result div h4
{
	width: 400px;
	height: auto;
	padding-top: 13px;
	padding-bottom: 13px;
	margin-bottom: 20px;
	font-size: 24px;
	text-align: center;
	letter-spacing: 3px;
}
div.result div img
{
	width: 400px;
	height: 300px;
	border: 2px solid rgb(117,120,49);
}
div.result div#resultBefore
{
	float: left;
}
div.result div#resultAfter
{
	float: right;
}
div.faqIntro
{
	width: 70%;
	height: auto;
	margin: auto;
}
div.faqIntro p
{
	width: 100%;
	height: auto;
	text-align: justify;
	font-size: 20px;
	line-height: 2em;
	letter-spacing: 0.1em;
}
div.faqContent,
div.careContent
{
	width: 100%;
	height: auto;
}
div.faqContent h1,
div.careContent h1
{
	width: 70%;
	height: auto;
	margin: auto;
	font-size: 36px;
	line-height: 1.1em;
	letter-spacing: 0.1em;
}
div.faqContent h3,
div.careContent h3
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 5px;
	padding-right: 5px;
	border-top: 1px solid rgb(184,174,137);
	font-size: 24px;
	line-height: 1.1em;
	letter-spacing: 0.1em;
	cursor: pointer;
}
div.faqContent h3.first,
div.careContent h3.first
{
	border-top: none;
}
div.faqContent p,
div.careContent p
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-bottom: 25px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: left;
	font-size: 18px;
	line-height: 1.6em;
	letter-spacing: 0.1em;
}
div.question
{
	width: 100%;
	height: 544px;
	position: relative;
	overflow: hidden;
	border-top: 2px solid rgb(158,55,22);
	border-bottom: 2px solid rgb(158,55,22);
}
div.question div
{
	width: 100%;
	height: 540px;
	position: absolute;
}
div.question div.questionBackground
{
	z-index: 31;
}
div.question div.questionBackground img
{
	width: 1920px;
	height: 540px;
	right: 0px;
	position: absolute;
}
div.question div.questionOverlay
{
	z-index: 32;
	background-image: url('images/overlay-4.png');
	background-position: left top;
	background-repeat: repeat;
}
div.question div.questionLabel
{
	z-index: 33;
}
div.question div.questionLabel div
{
	width: 70%;
	height: auto;
	margin: auto;
	padding-top: 50px;
	position: relative;
	clear: both;
}
div.question div.questionLabel div img
{
	width: auto;
	height: 440px;
}
div.contactformWrap,
div.contactformWrapTrail
{
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
}
div.contactform
{
	width: 70%;
	height: auto;
	margin: auto;
}
div.contactformInnerLeft
{
	width: 49.5%;
	height: auto;
	float: left;
	padding-right: 50px;
}
div.contactformInnerRight
{
	width: 49.5%;
	height: auto;
	float: right;
}
div.contactformInnerRight iframe
{
	width: 100%;
	height: 520px;
	border: 0px;
	overflow: hidden;
}

/* 04 - footer*/
div.footerTopSpace
{
	width: 100%;
	height: 52px;
	display: none;
}
div#footer
{
	width: 100%;
	height: auto;
	z-index: 40;
}
div.footerHeader
{
	width: 70%;
	height: auto;
	margin: auto;
	padding: 10px 0px 10px 0px;
}
div.footerHeaderLeft
{
	width: auto;
	height: auto;
	display:inline-block;
	float: left;
}
div.footerHeaderLeftInner
{
	width: auto;
	height: auto;
	display:inline-block;
}
div.footerHeaderLeftLogo
{
	width: auto;
	height: auto;
	display:inline-block;
	vertical-align: top;
}
div.footerHeaderLeftLogo img
{
	width: 50px;
	height: 50px;
	border: none;
}
div.footerHeaderLeftCopyright
{
	width: auto;
	height: auto;
	display:inline-block;
	vertical-align: top;
	padding: 19px 0px 0px 20px;
}
div.footerHeaderLeftCopyright p
{
	width: auto;
	height: auto;
	font-size: 12px;
}
div.footerHeaderLeftNav
{
	width: auto;
	height: auto;
	display: inline-block;
	vertical-align: top;
	padding: 19px 0px 0px 0px;
}
div.footerHeaderLeftNav a
{
	width: auto;
	height: auto;
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	color: rgb(184,184,184);
	text-decoration: none;
	transition: color 0.25s ease;
	-webkit-transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-o-transition: color 0.25s ease;
}
div.footerHeaderLeftNav a:hover
{
	color: rgb(212,212,212);
}
div.footerHeaderRight
{
	width: auto;
	height: auto;
	display: inline-block;
	vertical-align: top;
	float: right;
}
div.footerHeaderRightInner
{
	width: auto;
	height: auto;
	display: inline-block;
	vertical-align: top;
}
div.footerHeaderRightImg
{
	width: auto;
	height: auto;
	float: left;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 15px;
}
div.footerHeaderRightImg img
{
	width: auto;
	height: 30px;
}
div.footerHeaderRightSocialMedia
{
	width: auto;
	height: auto;
	display: inline-block;
	vertical-align: top;
	float: right;
}
div.footerHeaderRightSocialMedia a
{
	width: auto;
	height: auto;
	display: inline-block;
	vertical-align: top;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	font-size: 30px;
	text-decoration: none;
	color: rgb(184,184,184);
	transition: color 0.25s ease;
	-webkit-transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-o-transition: color 0.25s ease;
}
div.footerHeaderRightSocialMedia a:hover
{
	color: rgb(212,212,212);
}
div.footerHeaderRightSocialMedia a i
{
	vertical-align: top;
}
div.footerContent
{
	width: 70%;
	height: auto;
	margin: auto;
}
div.footerContentInner
{
	width: 100%;
	height: auto;
}
div.footerContent h6
{
	width: 100%;
	height: auto;
	font-size: 14px;
	font-weight: 700;
	line-height: 2em;
}
div.footerContent p
{
	width: 100%;
	height: auto;
	font-size: 12px;
	line-height: 1.2em;
}
div.footerContent a
{
	width: auto;
	height: auto;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: rgb(184,184,184);
	text-decoration: none;
	transition: color 0.25s ease;
	-webkit-transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-o-transition: color 0.25s ease;
}
div.footerContent a:hover
{
	color: rgb(212,212,212);
}
div.footerImprint
{
	width: 100%;
	height: auto;
	padding: 30px 0px 30px 0px;
	border-top: 1px solid rgb(106,106,106);
}
div.footerImprintLeft
{
	width: 37%;
	height: auto;
	display:inline-block;
	float: left;
}
div.footerImprintRight
{
	width: 60%;
	height: auto;
	display:inline-block;
	float: right;
}
div.footerCreator
{
	width: 120px;
	height: auto;
	margin: auto;
}
div.footerCreator a
{
	width: auto;
	height: auto;
	display: block;
}
div.footerCreator a img
{
	width: 120px;
	height: 40px;
	border: none;
}

/* 05 - sidebar*/



/*
_________________________________________________________________

III. "medium" screen and (min-width: 768px and max-width: 1279px)
_________________________________________________________________
*/
@media only screen and (max-width: 1279px)
{
/* 01 - global*/
.unnecessary_1280
{
	display: block;
}
.unnecessary_768
{
	display: none;
}
div.placeholderImgInner
{
	padding-top: 40px;
	padding-bottom: 40px;
}
div.placeholderImgInner:before
{
	width: 35%;
}
div.placeholderImgInner:after
{
	width: 35%;
}
div.imageSlider1 img,
div.imageSlider2 img
{
	width: 1280px;
	height: 360px;
}

/* 02 - header*/

/* 03 - main*/
div.sectionTitle h1
{
	font-size: 56px;
}
div.introNavInner
{
	padding-top: 20px;
	padding-bottom: 22px;
}
div.introNav ul li
{
	font-size: 24px;
}
div.introNav ul li a
{
	padding-top: 14px;
	padding-bottom: 14px;
	padding-left: 20px;
	padding-right: 20px;
}
div.introduceInner h1
{
	font-size: 48px;
}
div.introduceInner h3
{
	font-size: 22px;
}
div.introduceInner p
{
	font-size: 14px;
}
div.appointment
{
	height: 364px;
}
div.appointment div
{
	height: 360px;
}
div.appointment div.appointmentBackground img
{
	width: 1280px;
	height: 360px;
}
div.appointment div.appointmentLabel div
{
	padding-top: 30px;
}
div.appointment div.appointmentLabel div img
{
	height: 300px;
}
div.headerStudio h2,
div.headerContact h2
{
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 28px;
}
div.contentStudio,
div.contentContact
{
	column-count: 2;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-width: 49.5%;
	-webkit-column-width: 49.5%;
	-moz-column-width: 49.5%;
	column-gap: 30px;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
}
div.contentStudio h5,
div.contentContact h5,
div.contactformInnerLeft h5
{
	font-size: 18px;
}
div.contentStudio p,
div.contentContact p,
div.contactformInnerLeft p
{
	font-size: 16px;
}
div.hotline
{
	height: 364px;
}
div.hotline div
{
	height: 360px;
}
div.hotline div.hotlineBackground img
{
	width: 1280px;
	height: 360px;
}
div.hotline div.hotlineLabel div
{
	padding-top: 30px;
}
div.hotline div.hotlineLabel div img
{
	height: 300px;
}
div.contentArtists
{
	width: 75%;
}
div.artistsAtWork
{
	height: 364px;
}
div.artistsAtWork div,
div.question div
{
	height: 360px;
}
div.artistsAtWork div.artistsAtWorkLabel div
{
	padding-top: 30px;
}
div.artistsAtWork div.artistsAtWorkLabel div img
{
	height: 300px;
}
div.headerRelics h2
{
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 28px;
}
div.contentRelics
{
	column-count: 2;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-width: 49.5%;
	-webkit-column-width: 49.5%;
	-moz-column-width: 49.5%;
	column-gap: 30px;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
}
div.contentRelics h5
{
	font-size: 18px;
}
div.contentRelics p
{
	font-size: 16px;
}
div.laser
{
	height: 364px;
}
div.laser div
{
	height: 360px;
}
div.laser div.laserBackground img
{
	width: 1280px;
	height: 360px;
}
div.laser div.laserLabel div
{
	padding-top: 30px;
}
div.laser div.laserLabel div img
{
	height: 300px;
}
div.resultWrap
{
	padding-top: 50px;
	padding-bottom: 50px;
}
div.result
{
	width: 630px;
	height: 275px;
}
div.result div
{
	width: 300px;
}
div.result div h4
{
	width: 300px;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-bottom: 16px;
	font-size: 18px;
	letter-spacing: 2px;
}
div.result div img
{
	width: 300px;
	height: 225px;
}
div.faqIntro p
{
	font-size: 16px;
}
div.faqContent h1,
div.careContent h1
{
	font-size: 32px;
}
div.faqContent h3,
div.careContent h3
{
	font-size: 20px;
}
div.faqContent p,
div.careContent p
{
	font-size: 14px;
}
div.question
{
	height: 364px;
}
div.question div
{
	height: 360px;
}
div.question div.questionBackground img
{
	width: 1280px;
	height: 360px;
}
div.question div.questionLabel div
{
	padding-top: 30px;
}
div.question div.questionLabel div img
{
	height: 300px;
}
div.contactformInnerLeft
{
	padding-right: 20px;
}

/* 04 - footer*/

/* 05 - sidebar*/
}



/*
_________________________________________________________________

IV. "small" screen and (max-width: 767px)
_________________________________________________________________
*/
@media only screen and (max-width: 767px)
{
/* 01 - global*/
.unnecessary_1280
{
	display: block;
}
.unnecessary_768
{
	display: block;
}
.unnecessary_480
{
	display: none;
}
div.placeholderImgInner
{
	padding-top: 30px;
	padding-bottom: 30px;
}
div.placeholderImgInner:before
{
	width: 25%;
}
div.placeholderImgInner:after
{
	width: 25%;
}
div.imageSlider1 img,
div.imageSlider2 img
{
	width: 768px;
	height: 216px;
}

/* 02 - header*/
div#header i
{
	width: auto;
	height: auto;
	display: inline-block;
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 24px;
	text-align: right;
	cursor: pointer;
}
div#headerNavMobile
{
	width: 100%;
	height: auto;
	padding-top: 52px;
	margin: auto;
	position: fixed;
	z-index: 49;
}
div#headerNavMobile ul
{
	width: auto;
	height: auto;
}
div#headerNavMobile ul li
{
	width: 100%;
	height: auto;
	display: block;
}
div#headerNavMobile ul li a
{
	width: 100%;
	height: auto;
	margin: auto;
	display: block;
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 0px;
	padding-right: 0px;
	font-size: 32px;
	text-align: center;
}

/* 03 - main*/
div.sectionTitle h1
{
	font-size: 48px;
}
div.introTopInner
{
	padding-right: 20px;
}
div.introTopImg
{
	padding-top: 18px;
	padding-bottom: 18px;
}
div.introTopImg img
{
	height: 32px;
}
div.introTopSocialMedia a
{
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 38px;
}
div.introNav ul li
{
	display: block;
}
div.introNav ul li.li_unnecessary
{
	display: none;
}
div.introduceInner h1
{
	font-size: 32px;
}
div.introduceInner h3
{
	font-size: 16px;
}
div.introduceInner p
{
	font-size: 12px;
}
div.appointment
{
	height: 220px;
}
div.appointment div
{
	height: 216px;
}
div.appointment div.appointmentBackground img
{
	width: 768px;
	height: 216px;
}
div.appointment div.appointmentLabel div
{
	padding-top: 20px;
}
div.appointment div.appointmentLabel div img
{
	height: 176px;
}
div.headerStudio h2,
div.headerContact h2
{
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 20px;
}
div.contentStudio,
div.contentContact
{
	width: 90%;
	column-count: 1;
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-width: 100%;
	-webkit-column-width: 100%;
	-moz-column-width: 100%;
	column-gap: 0px;
	-webkit-column-gap: 0px;
	-moz-column-gap: 0px;
}
div.hotline
{
	height: 220px;
}
div.hotline div
{
	height: 216px;
}
div.hotline div.hotlineBackground img
{
	width: 768px;
	height: 216px;
}
div.hotline div.hotlineLabel div
{
	padding-top: 20px;
}
div.hotline div.hotlineLabel div img
{
	height: 176px;
}
div.Artists
{
	width: 100%;
	display: block;
}
div.artistsAtWork
{
	height: 220px;
}
div.artistsAtWork div,
div.question div
{
	height: 216px;
}
div.artistsAtWork div.artistsAtWorkLabel div
{
	padding-top: 20px;
}
div.artistsAtWork div.artistsAtWorkLabel div img
{
	height: 176px;
}
div.headerRelics h2
{
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 20px;
}
div.contentRelics
{
	width: 90%;
	column-count: 1;
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-width: 100%;
	-webkit-column-width: 100%;
	-moz-column-width: 100%;
	column-gap: 0px;
	-webkit-column-gap: 0px;
	-moz-column-gap: 0px;
}
div.laser
{
	height: 220px;
}
div.laser div
{
	height: 216px;
}
div.laser div.laserBackground img
{
	width: 768px;
	height: 216px;
}
div.laser div.laserLabel div
{
	padding-top: 20px;
}
div.laser div.laserLabel div img
{
	height: 176px;
}
div.resultWrap
{
	padding-top: 50px;
	padding-bottom: 50px;
}
div.result
{
	width: 280px;
	height: 570px;
}
div.result div
{
	width: 280px;
	display: block;
}
div.result div h4
{
	width: 280px;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-bottom: 18px;
	font-size: 16px;
	letter-spacing: 2px;
}
div.result div img
{
	width: 280px;
	height: 210px;
}
div.result div#resultBefore
{
	float: none;
	margin-bottom: 50px;
}
div.result div#resultAfter
{
	float: none;
}
div.faqIntro
{
	width: 90%;
}
div.faqIntro p
{
	font-size: 14px;
}
div.faqContent h1,
div.careContent h1
{
	width: 90%;
	font-size: 26px;
}
div.faqContent h3,
div.careContent h3
{
	width: 90%;
	font-size: 18px;
}
div.faqContent p,
div.careContent p
{
	width: 90%;
	font-size: 12px;
}
div.question
{
	height: 220px;
}
div.question div
{
	height: 216px;
}
div.question div.questionBackground img
{
	width: 768px;
	height: 216px;
}
div.question div.questionLabel div
{
	padding-top: 20px;
}
div.question div.questionLabel div img
{
	height: 176px;
}
div.contactform
{
	width: 90%;
	height: auto;
	margin: auto;
}
div.contactformInnerLeft
{
	width: 100%;
	height: auto;
	float: none;
	padding-right: 0px;
}
div.contactformInnerRight
{
	width: 100%;
	height: auto;
	float: none;
}

/* 04 - footer*/
div.footerHeader
{
	width: 90%;
}
div.footerHeaderLeft
{
	width: 100%;
	padding-bottom: 10px;
	display: block;
	float: none;
}
div.footerHeaderLeftInner,
div.footerHeaderRightInner
{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
div.footerHeaderRight
{
	width: 100%;
	padding-top: 10px;
	border-top: 1px solid rgb(106,106,106);
	display: block;
	float: none;
}
div.footerContent
{
	width: 90%;
}
div.footerImprintLeft
{
	width: 100%;
	display: block;
	float: none;
}
div.footerImprintRight
{
	width: 100%;
	display: block;
	float: none;
}

/* 05 - sidebar*/
}



/*
_________________________________________________________________

V. print
_________________________________________________________________
*/
@media only print
{
/* 01 - global*/
.unnecessary_print
{
	display: none;
}

/* 02 - header*/

/* 03 - main*/

/* 04 - footer*/

/* 05 - sidebar*/
}