/* Layout */

body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

img#bgimage {
    height: auto;
    left: 0;
    min-height: 100%;
    min-width: 800px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -999;
}

div#person {
    padding: 3em 3em 2em 3em;
    position:absolute;
    top:100px;
    right:50px;
    width:25%;
    min-width: 340px;

    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 1.5em;
    opacity: 0.8;
    font-family: Optima, Segoe, Candara, Calibri, Arial, sans-serif;
    transition: 4s;
    -webkit-transition: 4s;
}

div#person:hover {
    background-color: rgba(255, 255, 255, 1);
    opacity: 1;
}
.clear {
    clear: both;
}

/* layout responsive */

@media (max-width: 500px) {
    div#person {
	padding: 1.5em;
	width: 78%;
	min-width: 0;
	position: relative;
	margin: 10px auto;
	right: auto;
	top: auto;
	font-size: 0.9em;
    }
}
/* fonts */

@font-face {
font-family: FrancoisOne;
src: url(/css/FrancoisOne.ttf);
}

@font-face {
font-family: RoughSpring;
src: url(/css/RoughSpring.ttf);
}

@font-face {
font-family: Yellowtail;
src: url(/css/Yellowtail.otf);
}


@font-face {
font-family: Overlock-Bold;
src: url(/css/Overlock-Bold.ttf);
}


@font-face {
font-family: FengardoNeue_Regular;
src: url(/css/FengardoNeue_Regular.otf);
}

/* main styles */

H1 {
font-family: RoughSpring, Helvetica, Arial, sans-serif;
font-size:3.6em;
margin:0;
}

H2 {
font-family: FrancoisOne, Helvetica, Arial, sans-serif;
font-size:3em;
margin:0;
}

ul.icons {
    margin:10px 0 0 0;
    padding:0;
}
ul.icons li { 
    display:inline-block;
    float:left;
    margin: 2px;
}

/* Jquery UI */

.ui-accordion-header {
    cursor:pointer;
    margin:0 0 5px 0;
}

.ui-accordion-header:hover {
    text-decoration:underline;
}

.ui-accordion-header:focus { /* .ui-state-focus { */
    outline:none;
    border-top: 1px dotted #555;
}

.ui-accordion-content {
    margin-bottom:10px;
    border-bottom: 1px dotted #555;

}
.ui-accordion-content p {
    margin:0;
}