/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing:border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*- - - - - - - - -- - - - - - - - - - END OF CSS RESET - - - - - - - - - - - - - - --*/



/*- - - - - - - - -- - - - - - - - - - HIGH LEVEL STYLES - - - - - - - - - - - - - - --*/

html{
	position: relative;
	width: 100vw;
}

body{
	position: relative;
	width: 100%;
	overflow:auto;
}

section{
	position:relative;
	width:100%;
	overflow:auto;
}

div{
	position:relative;
	width:100%;
	overflow:auto;
}

/*- - - - - - - - -- - - - - - - - - - GENERIC FONT STYLES   - - - - - - - - - - - - - - --*/

      /* 

font-family: 'Great Vibes', cursive;
font-weight: 400;
font-style: none;


font-family: 'Gabriela', serif;
font-weight: 400
font-style: none


font-family: 'Playfair Display' serif;
font-weight: 400
font-style:none

font-family: 'Playfair Display', serif;
font-weight: 400;
font-style: Italic;

font-family: 'Playfair Display', serif;
font-weight: 500;
font-style: none;

font-family: 'Playfair Display', serif;
font-weight: 600;
font-style: Semibold;

font-family: 'Playfair Display', serif;
font-weight: 600;
font-style: Italic Semibold;

font-family: 'Playfair Display', serif;
font-weight: 800;
font-style: Extrabold;

font-family: 'Playfair Display', serif;
font-weight: 900;
font-style: Black Italic;


font-family: 'Playfair Display SC', serif;
font-weight: 400;
font-style: none;

font-family: 'Playfair Display SC', serif;
font-weight: 700;
font-style: Bold;

font-family: 'Playfair Display SC', serif;
font-weight: 900;
font-style: Black;

       */

h1{
	font-family: 'Playfair Display SC', serif;
	font-size:;
	font-weight: 700;
	font-style: Bold;
	text-decoration:;
	text-alignment:;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
}

h2{
	font-family: 'Playfair Display', serif;
	font-size:;
	font-weight: 500;
	font-style: none ;
	text-decoration:;
	text-alignment:;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
}

h3{
	font-family: 'Playfair Display SC', serif;
	font-size:;
	font-weight: 700;
	font-style: Bold;
	text-decoration:;
	text-alignment:;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
}

li{
	font-family: 'Playfair Display SC', serif;
	font-size:;
	font-weight: 400;
	font-style: none;
	text-decoration:;
	text-alignment:;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
}

p{
	font-family: 'Gabriela', serif;
	font-size:;
	font-weight: 400;
	font-style: none;
	text-decoration:;
	text-alignment:;
	color:;
	line-height:;
	word-spacing:.3vw;
	letter-spacing:;
}

a{
	text-decoration:none;
	color:black;
}

a:link{
	text-decoration:none;
	color:black;

}

a:visited{
	text-decoration:none;
	color:black;
	opacity:.5;
}


/*- - - - - - - - -- - - - - - - - - -  HEADER  - - - - - - - - - - - - - - --*/
.HEADER{
	position:relative;
	width:100%;
	min-height:8vw;
	overflow:hidden;
	background-color:#242324;
}

#VaLogo{
	position:relative;
	width:28vw;
	padding-top:.5vw;
	padding-left:.5vw;
	overflow:hidden;
}

#hamburgerLines{
	position:relative;
	height:4vw;
	float:right;
	background-color: white;
	border-radius:1vw;
	overflow:hidden;
}

nav{
	position:absolute;
	left:96vw;
	top:0vw;
	height:22vw;
	width:20vw;
	transition:left .6s ease-in-out;
	padding-left:4vw;
}

nav:hover{
	left:80vw;
	transition:left 1s ease-in-out;
}

/*#AVATAR{
	position:absolute;
	top:7.8vw;
	right:0;
	z-index:10;

	width:26vw;
	height:13vw;

	border-bottom-left-radius:13vw;
	border-bottom-right-radius:13vw;
}
*/

nav ul{
	background-color:white;
}

nav ul li{
	font-family: 'Playfair Display SC', serif;
	font-size:3.5vw;
	font-weight: 400;
	font-style: none;
	text-decoration:underline;
	text-alignment:;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
}

/*- - - - - - - - -- - - - - - - - - -  HERO  - - - - - - - - - - - - - - --*/

.HERO{
	position:relative;
	width:100%;
	min-height:40vw;
	overflow:auto;

	padding:5vw 1vw 2vw;

	background-color:#242324;
}

.HERO h1{
	font-size:4.1vw;
	color:white;
	text-align:center;
	position:relative;

}

#HorizontalLine{
	position:relative;
	border-top:1.5vw;
	color:white;
	width:35%;
	left:3vw;
}

.HERO ul{
	padding:3.7vw;
	width:45%;
	float:left;
	color:white;
}

.HERO li{
	font-family: 'Great Vibes', cursive;
	font-weight: 400;
	font-style: none;
	font-size:4.5vw;
	font-decoration:;
	text-align:center;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
	bottom:3vw;
}

#VerticalLine{
	position:relative;
	width:.0001vw;
	height:23vw;
	float:left;
	left:39vw;
}


.HERO p{
	font-size:2.2vw;
	width:45%;
	color:white;`
	text-align:left;
	float:left;
	padding:2vw;
}

/*- - - - - - - - -- - - - - - - - - -  CURRENT STYLES - - - - - - - - - - - - - - -- */

.EXHIBITIONS{
	position:relative;
	width:100%;
	min-height:35vw;
	overflow:auto;

	padding:5vw;
	padding-top:3vw;

	background-color:black;
}


#current{
	position:relative;
	overflow:hidden;
}

#CurrentHr1{
	position:absolute;
	width:100%;
	z-index:10;
	top:35vw;
	transform:rotate(55deg);
	left:35vw;
}

#CurrentHr2{
	position:absolute;
	width:55%;
	z-index:10;
	top:3vw;
	left:0vw;
	transform:rotate(-25deg)

}

#CurrentHr3{
	position:absolute;
	width:95%;
	z-index:10;
	top:80vw;
	right:2vw;
	transform:rotate(55deg);
}

#CurrentHr4{
	position:absolute;
	width:80%;
	z-index:10;
	top:65vw;
	right:30vw;
	transform:rotate(-25deg);
}

#CurrentHr5{
	position:absolute;
	width:110%;
	z-index:10;
	top:131vw;
	right:-7vw;
	transform:rotate(-25deg);
}

#CurrentHr6{
	position:absolute;
	width:120%;
	z-index:10;
	top:140vw;
	right:25vw;
	transform:rotate(55deg);

}


#current h1{
	font-family: 'Great Vibes', cursive;
	font-weight: 400;
	font-style: none;
	font-size:8vw;
	text-decoration:;
	text-alignment:;
	color:white;
	line-height:;
	word-spacing:;
	letter-spacing:;
	float:right;
	padding-bottom:2vw;
}


#current .show{
	background-color:white;
	padding:1vw;
	margin-bottom:15vw;
	border-radius: 2vw;
	width:100%;
	overflow:hidden;
	position:relative;
	z-index:200;
}

#Captain{
	position:relative;
	overflow:hidden;
	height:40vw;
}

#Captain h2{
	position:relative;
	width:65%;
	float:left;
	padding-left:2vw;
	padding-top:2vw;
}

#Captain h3{
	position:relative;
	left:20vw;
	width:50%;
	padding-left:2vw;
}

#Captain p{
	position:relative;
	width:65%;
	text-align:left;
	padding-left:2vw;
	padding-top:4vw;
	word-spacing:1vw;
}

#BurmaPic{
	position:relative;
	width:30%;
	float:right;
	bottom:29.5vw;
	right:2vw;
}

#Luxury{
	position:relative;
	overflow:hidden;
	height:40vw;
	padding:2vw;
	
}
#Luxury h2{
	position:relative;
	width:55%;
	right:2vw;
	text-align:right;
	float:right;
	padding-right:2vw;
	padding-top:3vw;
}

#Luxury h3{
	position:relative;
	width:50%;
	right:4vw;
	float:right;
}

#Luxury p{
	position:relative;
	left:40vw;
	text-align:left;
	top:4vw;
	width:45%;
	padding-top:5vw;
	padding-right:1vw;
	float:right;
}

#LuxuryPic{
	width:35%;
	position:relative;
	left:2vw;
	float:left;
	bottom:26.5vw;
}

#Shoes{
	position:relative;
	height:40vw;

}

#Shoes h2{
	position:relative;
	width:60%;
	float:left;
	padding-left:2vw;
	padding-top:2vw;
}

#Shoes h3{
	position:relative;
	left:20vw;
	width:50%;
	padding-left:2vw;
}

#Shoes p{
	position:relative;
	width:50%;
	text-align:left;
	padding-left:2vw;
	float:left;
	padding-top:5vw;
}

#ShoesPic{
	right:1vw;
	position:relative;
	float:right;
	bottom:1vw;
	width:45%;

}

#current .show h2{
	font-family: 'Playfair Display SC', serif;
	font-size:3vw;
	font-weight: 400;
	font-style: none;
	padding-bottom:1vw;
}


#current .show h3{
	font-size:2.5vw;
	padding-bottom:3vw;
}


#current .show p{
	font-family: 'Gabriela', serif;
	font-size:2vw;
	font-weight: 400;
	font-style: none ;
	padding-bottom:3vw;
	word-spacing:.5vw;
	line-height:2.5vw;
}



/*- - - - - - - - -- - - - - - - - - -  FUTURES STYLES - - - - - - - - - - - - - - -- */

#future{
	background-color:#242324;
	position:relative;
	overflow:hidden;
	width:100%;
	height:150vw;
}

.circleThing{
	position:absolute;
	width: 40vw;
	height: 40vw;
	background:transparent;
	border-radius: 50%;
	border: 2px solid white;
	z-index:10;
}

#tl{
	position:absolute;
	left:-5vw;
	top:-18vw;
	float:left;
}

#tr{
	position:absolute;
	right:2vw;
	float:right;
}

#m{
	position:absolute;
	left:17vw;
	top:50vw;
}

#bl{
	position:absolute;
	top:115vw;
	float:left;
}

#br{
	position:absolute;
	right:1vw;
	top:90vw;
	float:right;

}


#future h1{
	font-family: 'Great Vibes', cursive;
	font-weight: 400;
	font-style: none;
	font-size:8vw;
	text-decoration:;
	text-alignment:;
	color:white;
	line-height:;
	word-spacing:;
	letter-spacing:;
	padding-top:3vw;
	padding-left:5vw;
	overflow:hidden;
	
}

#future .show{
	border-radius: 8vw;
	width:33%;
	height:18vw;
	position:relative;
	margin:3vw;
	z-index:15;
	overflow:hidden;
}

.single{
	position:relative;
	width:100%;
	left:30vw;
	height:22vw;
	overflow:hidden;
	text-align:center;
}

.doublew{
	position:relative;
	width:100%;
	height:22vw;
	overflow:hidden;
	margin-bottom:2vw;

}

.doublen{
	position:relative;
	width:100%;
	height:22vw;
	overflow:hidden;
}

.s{
	position:absolute !important;
	top:0;
	padding-top:6vw;
	overflow:hidden;
}

.s2{
	position:absolute !important;
	top:0;
	padding-top:3vw;
	overflow:hidden;
}

.ls{
	position:absolute !important;
	top:0;
	left:2vw;
	padding-top:4vw;
	overflow:hidden;

}

.ls2{
	position:absolute !important;
	top:0;
	left:2vw;
	padding-top:2vw;
	overflow:hidden;

}

.rs{
	position:absolute !important;
	top:0;
	right:2vw;
	padding-top:4vw;
	overflow:hidden;
}

.rs2{
	position:absolute !important;
	top:0;
	right:2vw;
	padding-top:3vw;
	overflow:hidden;
}

.ll{
	position:absolute !important;
	top:0;
	left:10vw;
	padding-top:4vw;
	overflow:hidden;
}

.rl{
	position:absolute !important;
	top:0;
	right:6vw;
	padding-top:5vw;
	overflow:hidden;
}

.single .show{
	position:relative;

}

.doublew .show{
	position:relative;

}

.doublen .show{
	position:relative;
}


#future .show h2{
	position:relative;
	font-family: 'Playfair Display SC', serif;
	font-size:2.6vw;
	font-weight: 400;
	font-style: none;
	text-decoration:;
	text-align:center;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
	top:0;
}

#future .show h3{
	position:relative;
	text-align:center;
	font-size:1.5vw;
	line-height:2vw;
	padding-top:.5vw;
}

#future .show p{
	position:relative;
	font-family: 'Playfair Display', serif;
	font-size:2vw;
	font-weight: 700;
	font-style: none ;
	text-decoration:;
	text-alignment:;
	color:;

}

#Fabric{
	background-color:#fae4dc;
}

#Julia{
	background-color:white;
}

#Treasures{
	background-color:#b8b6b8;
}

#Botticelli{
	background-color:#4d4c4c;
}

#Paul{
	background-color:#fae4dc;
}

#Undressed{
	background-color:white;
}

#Engineering{
	background-color:#807e80;
}

#Opus{
	background-color:#4d4c4c;;
}

#Revolution{
	background-color:#fae4dc;
}


/*- - - - - - - - -- - - - - - - - - -  PAST STYLES    - - - - - - - - - - - - - - --*/

#past{
	background-color:#807e80;
	position:relative;
	width:100%;
	right:0;
	padding-top:6vw;
	overflow:hidden;
}

#past h1{
	position:relative;
	font-family: 'Great Vibes', cursive;
	font-weight: 400;
	font-style: none;
	font-size:8vw;
	text-decoration:;
	text-alignment:center;
	color:white;
	padding-top:7vw;
	overflow:hidden;
	float:right;
	padding-right:2vw;
	padding-left:2vw;
	z-index:200 !important;
}

#VaLogo2{
	position:absolute;
	width:130vw;
	overflow:hidden !important;
	transform:rotate(90deg);
	z-index:6 !important;
	opacity:.4;
	padding-top:10vw;
	left:3.5vw;
	top:23vw;

}

#VaLogo3{
	position:absolute;
	width:130vw;
	transform: rotate(-90deg);
	z-index:6 !important;
	opacity:.4;
	right:0;
	padding-left:5vw;
	bottom:10vw;
	/*padding-left:10vw;*/
	overflow:hidden !important;
}


#past .show{
	position:relative;
	border-radius: 6vw;
	width:68%;
	height:30vw;
	padding:3vw;
	z-index:100;
	overflow:hidden;
}

#past .show h2{
	position:relative;
	font-family: 'Playfair Display SC', serif;
	font-size:3vw;
	font-weight: 400;
	font-style: none;
	text-decoration:;
	text-alignment:center;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
	z-index:150;
}

#past .show h3{
	position:relative;
	font-family: 'Playfair Display SC', serif;
	font-size:2.5vw;
	font-weight: 700;
	font-style: Bold;
	text-decoration:;
	text-alignment:;
	color:;
	line-height:;
	word-spacing:;
	letter-spacing:;
	z-index:150;
}

#past .show p{
	position:relative;
	font-family: 'Playfair Display' serif !important;
	font-weight: 400;
	font-style:none;
	font-size:1.7vw;
	text-decoration:;
	text-alignment:;
	color:;
	line-height:3vw;
	word-spacing:;
	letter-spacing:;
	padding-top:2vw;
	z-index:150;
}

#Wedding{
	position:relative;
	background-color:white;
	float:left;
	z-index:100 !important;
	overflow:hidden;
}

#Wedding p{
	position:relative;
	padding-top:3vw !important;
}

#Russian{
	postiion:relative;
	background-color:#fae4dc;
	float:right;
	z-index:100 !important;
	overflow:hidden;
}

#Russian p{
	position:relative;
	padding-top:2.5vw !important;
}

#Disobedient{
	postiion:relative;
	background-color:white;
	z-index:100 !important;
	overflow:hidden;
}

#Disobedient p{
	position:relative;
	padding-top:4vw !important;
}

#Constable{
	postiion:relative;
	background-color:#fae4dc;
	float:right;
	z-index:100 !important;
	overflow:hidden;
}

#Constable p{
	position:relative;
	padding-top:4vw !important;
}

#Horst{
	postiion:relative;
	background-color:white;
	z-index:100 !important;
	overflow:hidden;
}

#Husain{
	postiion:relative;
	background-color:#fae4dc;
	float:right;
	z-index:100 !important;
	overflow:hidden;
	padding:2.5vw !important;
}

#Glamour{
	postiion:relative;
	background-color:white;
	z-index:100 !important;
	overflow:hidden;
}

#Glamour p{
	position:relative;
	padding-top:2.5vw !important;
}

#William{
	postiion:relative;
	background-color:#fae4dc;
	float:right;
	margin-bottom:1vw;
	z-index:100 !important;
	overflow:hidden;
}

#William p{
	position:relative;
	padding-top:2.5vw !important;
}

.left{
	postiion:relative;

}

.left h2{
position:relative;
text-align:right;
padding-left:9vw;
}

.left h3{
position:relative;
text-align:right;
right:8vw;
}

.left p{
position:relative;
text-align:;
}

.right{
position:relative;

}

.right h2{
position:relative;
text-align:left;
}

.right h3{
position:relative;
text-align:left;
left:8vw;
}

.right p{
position:relative;

}

#Horst p{
	postion:relative;
	text-align:left;
	padding-top:5vw !important;
}

#Husain h2{
	position:relative;

}

#Husain p{
	position:relative;
	padding-bottom:4vw !important;

}



/*- - - - - - - - -- - - - - - - - - -  FOOTER  - - - - - - - - - - - - - - -- */

footer{
	position:relative;
	width:100%;
	min-height:7.3vw;
	background-color:black;
	opacity:.6;
}

footer ul{
	position:relative;
	float:left;
	width:45%;
	padding-left:2vw;
}

footer ul li{
	position:relative;
	float:left;
	padding:1vw;
	padding-left:2vw;
	padding-top:2.5vw;
	font-size:2vw;
	color:white;
}

#SmallVl{
	position:relative;
	width:.0001vw;
	height:5.5vw;
	float:left;
	left:1vw;
	top:.5vw;
}

footer p{
	position:relative;
	float:left;
	width:45%;
	padding:1vw;
	font-size:1.7vw;
	left:5vw;
	color:white;
	font-family: 'Gabriela' serif !important;
	font-weight:400;
	font-style: none;
}




