/*---------------------------------------------------------------
	CSS RESET w/ CUSTOMIZATION
---------------------------------------------------------------*/

/* 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%; /* 100% = 16px in most browsers */
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1em;
}

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;
}

/* Added these to remove default link styling */
a, a:link, a:visited, a:active, a:hover {
	text-decoration: none;
	cursor: pointer;
}

/* Added default font */
body {
	font-family: Helvetica, Arial, sans-serif;
	color: #3c4042;
}

/*---------------------------------------------------------------
	CUSTOM
---------------------------------------------------------------*/

/*---------------------------------------------------------------
	LAYOUT
---------------------------------------------------------------*/

html,
body {
	margin-top: 0px;
	min-width: 768px;
	min-height: 512px;
	height: 100%;
}

#wrapper-outer {
	width: 100%;
	height: 100%;
	background: rgb(241, 242, 239);
	overflow: hidden; /* If not on, box shadow was affected by child properties */
	
	-webkit-box-shadow: inset 0px 0px 0px 72px rgb(255,255,255); /* Safari and Chrome */
	-moz-box-shadow: inset 0px 0px 0px 72px rgb(255,255,255); /* Firefox */
	-ms-box-shadow: inset 0px 0px 0px 72px rgb(255,255,255); /* IE 9 */
	-o-box-shadow: inset 0px 0px 0px 72px rgb(255,255,255); /* Opera */
	box-shadow: inset 0px 0px 0px 72px rgb(255,255,255);
}

#mark {
	position: relative;
	margin: -32px auto 0px;
	width: 130px;
    height: 64px;
    top: 50%;
    background: url(../images/bg-sky.gif) no-repeat;
    background-position-y: 0px;
    
    -webkit-mask-image: url(../images/mark.svg);
    -moz-boxmask-image: url(../images/mark.svg);
    -ms-mask-image: url(../images/mark.svg);
    -o-mask-image: url(../images/mark.svg);
    mask-image: url(../images/mark.svg);
}