/* 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;
    text-decoration: none;
}
/* 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;
}

/*----------------------------------------------------*/

@font-face {
    font-family: 'Ubuntu Condensed', sans-serif;
}

html {
    height: 100%;
    width: 100%;
    position: absolute;
}

body {
    /*background: -webkit-linear-gradient(#212121, #141414);*/
    /*background: linear-gradient(#212121, #141414);*/
    background: url(../images/bgshore.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    height: 100%;
    width: 100%;
    position: absolute;
}

#vspacer {
    height: 50%;
}

#main {
    margin-top: -150px;
    background: url(../images/mainshadow.png) no-repeat center bottom;
    padding-bottom: 100px;
}

h1 {
    font-size: 60px;
    font-family: 'Ubuntu Condensed', sans-serif;
    color: #fff;
}

h3 {
    font-size: 40px;
    font-family: 'Ubuntu Condensed', sans-serif;
    color: #fff;
}

p {
    font-size: 30px;
    font-family: 'Ubuntu Condensed', sans-serif;
    color: #fff;
}

td {
    display: inline-block;
}

#text {
    padding: 25px;
    background: blue;
}

#img {
    background: #f6d23e url(../images/avatarani.gif) no-repeat bottom center;
    height: 150px;
    width: 150px;
    border-radius: 75px;
    display: inline-block;
    margin-bottom: 20px;
    -webkit-animation: 0.5s rotateleft;
    animation: 0.5s rotateleft;
}

#img:hover {
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    -webkit-animation: 0.2s rotateright;
    animation: 0.2s rotateright;
}

#sidenavwrapper {
    margin-left: -350px;
    width: 380px;
    height: 100%;
    position: absolute;
    background: url(../images/navarrow.png) no-repeat right center;
    -webkit-animation: 0.5s slideout;
    animation: 0.5s slideout;
    overflow-y: hidden;
}

#sidenavwrapper:hover {
    margin-left: 0;
    -webkit-animation: 0.2s slidein;
    animation: 0.2s slidein;
}

#sidenavmain {
    height: 100%;
    width: 250px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 50px 0 50px;
}

hr {
    height: 1px;
    width: 350px;
    margin-left: -50px;
    background: rgba(255, 255, 255, 0.14);
    border: none;
    margin: 30px 0 0 -50px;
}

ul {
    width: 350px;
    margin-left: -50px;
}

li {
    font-size: 20px;
    font-family: 'Ubuntu Condensed', sans-serif;
    color: #fff;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

li:hover {
    background: rgba(0, 0, 0, 0.1);
}





















