/*
	Theme Name: Playing With Pattern
	Description: Custom web app for William Morris Gallery
	Version: 1.0
	Author: Direction Forward (@direction4ward)
	Author URI: https://directionforward.com
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-family: 'silkaregular', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.5em;
	color: #606C5F;
	overscroll-behavior: none;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    zoom:1;
}
img {
	max-width:100%;
	vertical-align:middle;
}
a {
	text-decoration:none;
	color: inherit;
}
p a {
	text-decoration:underline;
	color: inherit;
}
a:hover {

}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:none;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* rotate and export overlays */
.rotate {
	position: fixed;
	width: 100%;
	height: 100%;
	padding: 5%;
	z-index: 999;
	top: 0;
	left: 0;
	background-color: #8C9B8A;
	color: white;
	font-size: 2em;
	line-height: 1.25em;
	text-align: center;
}
.exporting {
	position: fixed;
	width: 100%;
	height: 100%;
	padding: 5%;
	z-index: 999;
	top: 0;
	left: 0;
	background-color: #8C9B8A;
	color: white;
	font-size: 2em;
	line-height: 1.25em;
	text-align: center;
	display: none;
}
.sorry {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1000;
	top: 0;
	left: 0;
	color: white;
	line-height: 1.25em;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	overflow: scroll;
	transition: visibility 0s, opacity 0.5s linear;
}
.rotate .wmglogo,
.exporting .wmglogo {
	position: absolute;
	text-align: left;
}
.sorry .wmglogo {
	text-align: left;
	margin-bottom: 2em;
}
.rotate .wmglogo img,
.exporting .wmglogo img,
.sorry .wmglogo img {
	max-width: 150px;
}
.rotate .rotate-holder img,
.exporting .rotate-holder img  {
	margin-bottom: 1em;
	max-width: 70px;
}
.rotate-holder {
    display: table;
    width: 100%;
    height: 100%;
}
.rotate-inner {
	display: table-cell;
	vertical-align: middle;
}
.sorry-header {
	font-size: 1.3em;
	padding: 5% 5% 0 5%;
	background-color: #8C9B8A;
}
.sorry-header strong {
	font-size: 1.75em;
	font-family: "silka-semibold";
	display: block;
}
.sorry-lower {
	padding: 5% 7.5% 5% 7.5%;
	background-color: white;
	color: #606C5F;
	font-size: 1.15em;
	line-height: 1.25em;
}
.sorry-lower strong {
	font-size: 1.5em;
	font-family: "silka-semibold";
	color: #707070;
}
.sorry-image {
	margin-top: 1em;
	max-height: 200px;
}


@media all and (orientation:portrait) { 
	.rotate {
		visibility: visible;
		opacity: 1;
		transition: visibility 0s, opacity 0.5s linear;
	}
}
@media all and (orientation:landscape) { 
	.rotate {
		visibility: hidden;
		opacity: 0;
		transition: visibility 0s, opacity 0.5s linear;
	}
}
@media only screen and (max-width: 768px) { 
	.sorry {
		visibility: visible;
		opacity: 1;
		transition: visibility 0s, opacity 0.5s linear;
	}
}





/* wrapper */
.wrapper {
	/*max-width:1280px;*/
	width:calc(100% - 50px);
	height: 100vh;
	max-height: -webkit-fill-available;
	margin:0 0 0 50px;
	padding: 0 0 0 0;
	position:relative;
	display: flex;
	align-items: stretch;
	opacity: 0;
	transition: opacity 200ms ease-out 0ms;
}
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    /* margin-left: -25px; */
    margin-top: -25px;
    width: 50px;
    height: 50px;
}
.controls {
    flex-basis: 37.5%;
	background-color: #8C9B8A;
}
section {
	background-color: #E8ECE8;
	padding: 5% 10% calc(5% + 50px) 10%;
	position: relative;
}
body.teaching-resources section {
	padding: 5% 7.5% calc(5% + 50px) 7.5%;
}


/* canvas */
.canvas {
	flex-basis: 62.5%;
	background-color: white;
}
.canvas-holder {
	height: 100vh;
	max-height: -webkit-fill-available;
    display: table;
    width: 100%;
    margin: 0 0 0 0;
    padding: 1.5%;
}
.canvas-inner {
	background-color: #3E3E3E;
	display: table-cell;
	padding: 7.5%;
	position: relative;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.canvas-fader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(180deg);
	background: linear-gradient(#ffffff 0%, #525252 69.95%, #000 100%);
	mix-blend-mode: multiply;
	opacity: 0.62;
}
body.home .canvas-inner {
	background-image: url(img/home.jpg);
}
body.teaching-resources .canvas-inner {
	padding: 7.5% 3.75% 0 3.75%;
}
main {
	position: relative;
}


/* roundel */
.roundel {
	position: absolute;
	font-family: 'silkamedium';
	font-size: 1.1em;
	border: white 8px solid;
	display: table;
    border-radius: 120em;
    height: 20vh;
	width: 20vh;
	text-align: center;
	bottom: 7.5%;
    min-width: 150px;
    min-height: 150px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
	transition: background-color 250ms linear;
}
body.home .roundel {
	font-size: 1.25em;
}
.roundel-inner {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	letter-spacing: -1px;
	line-height: 1.25em;
}
.roundel-inner-tryagain {
	width: 100%;
	height: 100%;
}
.roundel.yellow {
	background-color: #F7BD3C;
	color: #674E18;
}
.roundel.blue {
	background-color: #3CF7C5;
	color: #166953;
}
.roundel.green {
	background-color: #35B46B;
	color: #ffffff;
}
.roundel.red {
	background-color: #D01850;
	color: #ffffff;
}

.hexagon {
	position: absolute;
	z-index: 0;
	width: 100%;
    height: 100%;
}


/* buttons menu */
.top-menu {
	padding: 5% 10% 0 10%;
	background-color: #8C9B8A;
	z-index: 50;
    position: relative;
}
.wmg-logo {
	margin-bottom: 7.5%;
}
.buttons-menu {
	display: flex;
	align-items: stretch;
	height: 5vh;
    flex-wrap: nowrap;
    text-align: center;
    justify-content: space-between;
    overflow: hidden;
	text-transform: uppercase;
	font-family: 'silkasemibold';
}
.buttons-menu a {
	flex-basis: 32%;
	border-radius: 10px 10px 0 0;
	background-color: #FFFFFF;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.7);
	min-height: 40px;
	color: #8C9B8A;
}
.buttons-menu a.selected {
	background-color: #E8ECE8;
}
.buttons-menu a.full {
	flex-basis: 95%;
	margin: 0 2.5% 0 2.5%;
}
.buttons-menu a img {
    vertical-align: bottom;
    max-width: 60px;
}

/* nav */
.nav {
	height: 50vh;
	width: 100%;
	position: relative;
	text-align: center;
	display: table;
}
.nav a {
	color: white;
}
.nav ul {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	display: table-cell;
	vertical-align: middle;
}
.nav ul li {
	position: relative;
    margin: 3em 0 3em 0;
    text-transform: uppercase;
    font-size: 2em;
}
.nav ul li:after {
    content: "";
    background: #c5cdc4;
    position: absolute;
    bottom: -1.5em;
    left: 50%;
    height: 1px;
    width: 10vw;
    margin-left: -5vw;
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

.mobile-menu {
	position: absolute;
	height: 80vh;
	max-height: -webkit-fill-available;
	width: 50px;
	right: 0;
	top: 0;
	color: white;
	text-transform: uppercase;
	font-family: 'silkabold';
	z-index: 100;
	writing-mode: vertical-rl;
	line-height: 50px;
	padding: 2.5vh 0 0 0;
}
.lines {
	position: relative;
    /* width: auto; */
	display: inline-block;
}
.lines:after {
    content: "";
    background: #ffffff;
    position: absolute;
	left: calc(60% - 2px);
	height: 15px;
    width: 2px;
    top: 120%;
}
.lines:before {
    content: "";
    background: #ffffff;
    position: absolute;
    left: calc(45% - 2px);
    height: 15px;
    width: 2px;
    top: 120%;
}
.imopen .lines:after {
	transform: rotate(45deg);
	left: calc(50% - 1px);
}
.imopen .lines:before {
	transform: rotate(-45deg);
	left: calc(50% - 1px);
}

.mobile-back {
	position: absolute;
	height: 12.5vh;
	max-height: -webkit-fill-available;
	width: 50px;
	right: 0;
	bottom: 0;
	color: white;
	text-transform: uppercase;
	font-family: 'silkabold';
	z-index: 100;
	line-height: 50px;
	padding: 0 0 5vh 0;
	text-align: center;
}
.mobile-back-holder {
	background-color: #717C6F;
}


/* header */
.header {
	background-color: #8C9B8A;
	height: 100vh;
	max-height: -webkit-fill-available;
	width: 50px;
	position: fixed;
	top: 0;
	left: 0;
	color: white;
	z-index: 100;
	transition: width 0.5s ease-out;
}
.header-wrapper {
	display: none;
	padding: 5%;
	height: 100vh;
	max-height: -webkit-fill-available;
    width: 100%;
    position: relative;
}
.imopen {
	width: 100%;
}



/* logo */
.logo {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 0.80em;
	line-height: 1.2em;
	height: 30%;
	opacity: 0;
}
.logo-img {

}
.logo .logo-left,
.logo .logo-right {
	flex-basis: 45%;
}
.logo .logo-left {
	text-align: left;
}
.logo .logo-right {
	text-align: right;
}
.logos-holder {
	display: flex;
	align-items: center;
	min-height: 70px;
}
.logos-holder div {
	flex: 1;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/

/* home */
.home-logos {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	position: absolute;
	width: 80%;
    bottom: 5%;
}

/* resources */
.files {
	display: flex;
	flex-wrap: wrap;
    justify-content: start;
	align-items: start;
	max-height: 87.4vh;
	overflow-y: scroll;
}
.a-file {
	flex-basis: 33.3%;
	text-align: center;
	margin-bottom: 3em;
	font-family: 'silkalight';
	font-size: 0.95em;
    line-height: 1.5em;
	padding: 0 1em;
}
.a-file a {
	color: white;
}
.a-file img {
	margin-bottom: 1em;
	max-width: 56px;
}

.resources-choices {
	text-transform: uppercase;
	font-family: 'silkamedium';
	font-size: 1.2em;
	letter-spacing: 1px;
	margin-top: 2em;
}
.resources-choices a {
    padding: 0.75em 0 0.75em 0;
	display: block;
	color: #a8b0a8;
	border-bottom: #a8b0a8 1px solid;
}
.resources-choices a:first-of-type {
	border-top: #a8b0a8 1px solid;
}
.resources-choices a.active {
	color: #606C5F;
	position: relative;
}
.resources-choices a.active:after {
    content: '';
    position: absolute;
	right: 0;
	margin-right: -8px;
	top: 50%;
	margin-top: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid #606C5F;
    border-right: 8px solid transparent;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.resources-container {
	position: relative;
	height: 125px;
    overflow-y: hidden;
	transition: height 0.100s cubic-bezier(.16,.4,.72,.95);
}
.resources-intro p {
	line-height: 1.33em;
}
.resources-intro h3 {
	font-size: 1.33em;
    line-height: 1.33em;
    width: 80%;
}
.resources-fader {
	background: #efefef;
    box-shadow: 0px 0 25px 25px #efefef;
    position: relative;
    bottom: 0;
    z-index: 100;
    width: 100%;
	z-index: 1;
}
.resources-readmore {
	position: relative;
	z-index: 2;
	margin-top: 1.5em;
}

/* discover */
body.discover #canvas-slide1 {
	background-image: url('img/discover1.jpg');
}
body.discover #canvas-slide2 {
	background-image: url('img/discover2.jpg');
}
body.discover #canvas-slide3 {
	background-image: url('img/discover3.jpg');
}
body.discover #canvas-slide4 {
	background-image: url('img/discover4.jpg');
}



/*------------------------------------*\
    BUTTONS
\*------------------------------------*/


.bottom-button {
	position: absolute;
	bottom: 3%;
	width: 80%;
}
.button {
	display: inline-block;
	border-radius: 8px;
	height: 50px;
	line-height: 50px;
	font-family: 'silkabold';
	font-size: 1.2em;
	color: white;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	transition: background-color 100ms linear;
}
.button.disabled {
	/*pointer-events: none;*/
	background-color: #c5cdc4 !important;
}
.button.green {
	background-color: #89BF82;
}
.button.half {
	width: 45%;
}
.button.half img {
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
    margin-right: 5px;
}
.button.half:first-of-type {
	margin-right: 5%;
}

/*------------------------------------*\
    EXPLORE
\*------------------------------------*/

.nointeract {
	pointer-events: none !important;
}
body.explore main {
	position: absolute;
    width: 100%;
	height: 100%;
	overflow: hidden;
}
/* explore */
body.explore #canvas-slide6 {
	background-image: url('img/explore6.jpg');
}

body.explore .canvas-inner {
	padding: 0;
}
body.explore main svg {
	width: 100%;
}
body.explore .roundel-inner img {
	max-width: 70%;
}
body.explore p {
	line-height: 1.30em;
	margin-bottom: 0.75em;
}

@keyframes tapme {
    0% {
        transform: scale(0.80);
    }
    100% {
        transform: scale(1.0);
    }
}
.tapme {
	animation: tapme 1s infinite alternate;
}

.tryagain {
	display: none;
}
.tryagain img {
	width: 100%;
	height: 100%;
	text-align: center;
	max-width: 70%;
	vertical-align: middle;
}


.arabogee-pattern {
	width: 96%;
    height: auto;
	margin-bottom: 0.75em;
}

.wandle-pattern {
    width: 96%;
    height: auto;
    display: flex;
	margin-left: -7.5px;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-bottom: 0.75em;
}
.wandle-pattern div {
	flex-basis: 32%;
}
body.explore #canvas-slide4 .roundel-inner span {
	background-color: #674E18;
    border-radius: 27.5px;
    color: #F7BD3C;
    width: 27.5px;
    height: 27.5px;
    line-height: 27.5px;
    display: inline-block;
	font-family: 'silkabold';
    margin: 2.5px 2.5px 0 2.5px;
}


/*------------------------------------*\
	ARTBOARD
\*------------------------------------*/

.artboard {
	transition: background-color 500ms ease-in-out;
	background-color: #EEE2D1;
	width: 100%;
	height: 100%;
	position: relative;
}
.frames {
	position: absolute;
	width: 400px;
	height: 400px;
	/*left: 50%;
	margin-left: -200px;
	top: 50%;
	margin-top: -200px;*/
	right: 0;
	top: 0;
}
.containment {
	position: absolute;
	background-color: #EEE2D1;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    margin-top: -200px;
    margin-left: -200px;
}
.frames.bottom {
	z-index: 10;
}
.frames.top {
	z-index: 20;
}
.noverflow {
	z-index: 0;
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.receiver {
	overflow: hidden;
    width: 400px;
    height: 400px;
    position: absolute;
}

.lefttop, .midtop, .righttop,
.leftmid, .rightmid,
.leftbot, .midbot, .rightbot {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
}
.noverflow-cover {
	background-color: black;
	opacity: 0.59;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 999;
	transition: opacity 500ms linear;
}
.noverflow-cover.previewcover {
	opacity: 0;
}
.noverflow .lefttop {
	margin-top: -600px;
    margin-left: -600px;
}
.noverflow .midtop {
    margin-top: -600px;
    margin-left: -200px;
}
.noverflow .righttop {
    margin-top: -600px;
    margin-left: 200px;
}
.noverflow .leftmid {
    margin-top: -200px;
    margin-left: -600px;
}
.noverflow .rightmid {
    margin-top: -200px;
	margin-left: 200px;
}
.noverflow .leftbot {
	margin-top: 200px;
    margin-left: -600px;
}
.noverflow .midbot {
    margin-top: 200px;
    margin-left: -200px;
}
.noverflow .rightbot {
    margin-top: 200px;
    margin-left: 200px;
}

.handler {
	width: 100px;
	height: 100px;
	/*background: rgba(255, 0, 0, 0.2);*/
	cursor: move;
	overflow: visible;
	position: fixed;
	z-index: 30;
}
.handler img {
	position: relative;
	max-width: none;
	max-height: none;
}
.handler.overthetop {
	z-index: 999;
}
.the-flipper {
	-webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}



.bird1 {
	width: 100px;
	height: 140px;
}
.bird2 {
	width: 100px;
	height: 108px;
	bottom: 8px;
}

.vine1 {
	width: 110px;
	height: 100px;
    left: -9px;
}
.vine2 {
	width: 110px;
	height: 100px;
	left: -5px;
}
.vine3 {
	width: 120px;
	height: 100px;
	left: -10px;
}

.flower1 {
	width: 100px;
	height: 100px;
}
.flower2 {
	width: 100px;
	height: 100px;
}
.flower3 {
	width: 100px;
	height: 100px;
}

.butterfly {
	width: 100px;
	height: 100px;
}

.leaves1 {
	width: 100px;
	height: 100px;
}
.leaves2 {
	width: 100px;
	height: 100px;
}


#select-colour {

}
.colour-picker-holder {
	width: 100%;
	background-color: white;
	padding: 10% 10% calc(10% - 25px) 10%;
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	min-height: 40vh;
	margin-bottom: 1em;
}
.colour-picker {
	flex-basis: calc(25% + 1px);
	height: 50px;
	border-radius: 100%;
	margin-bottom: 25px;
	border: 0px solid transparent;
}
.colour-picker.activebg {
	border: 3px solid #484848;
	position: relative;
}
.colour-picker.activebg:before {
    content: "";
    border: 7px solid #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    position: absolute;

}

#select-motif {
	display: none;
}
.motif-picker-holder {
	width: 100%;
	background-color: white;
	padding: 1.5%;
	border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	min-height: 40vh;
	position: relative;
	margin-bottom: 1em;
}
.motif-picker-holder-inner {
	flex-basis: 100%;
	position: relative;
	margin-bottom: calc(50px + 1.5%);
}
.motif-picker-holder .button {
	position: absolute;
	bottom: 1.5%;
	width: 47.5%;
}
.motif-picker-holder .button:first-of-type {
	left: 1.5%;
}
.motif-picker-holder .button:last-of-type {
	right: 1.5%;
}

.motif-arrows {
	position: absolute;
	top: 0;
	width: 40px;
	height: 100%;
}
.motif-arrows img {
	position: absolute;
	top: 50%;
	width: 20px;
    margin-top: -11px;
}
.motif-arrows:first-of-type,
.motif-arrows:first-of-type img {
	left: 0;
}
.motif-arrows:last-of-type,
.motif-arrows:last-of-type img {
	right: 0;
}


.instructions {
	font-size: 1.45em;
	line-height: 1.35em;
	font-family: 'silkamedium';
}

.finished-controls {
	display: flex;
	flex-wrap: nowrap;
	height: 65px;
	line-height: 65px;
	margin-top: 1em;
	justify-content: space-between;
}
.finished-controls img,
.finished-controls svg {
	height: 65px;
}
.undoredo-controls {
	flex-basis: 40%;
	display: flex;
	flex-wrap: nowrap;
	text-align: left;
}
.undoredo-controls.disabled {
	pointer-events: none;
	opacity: 0.5;
}
.undoredo-controls a {
	flex: 1;
}
.preview-controls {
	flex-basis: 40%;
	text-align: right;
}
.undoredo-controls a.disabled {
	pointer-events: none;
	opacity: 0.5;
}

#togglepreview .st0{fill:#8C9B8A;}
#togglepreview .st1{opacity:0.5;fill:#B9C3B8;enable-background:new;}
#togglepreview .st2{enable-background:new;}


#togglepreview #toggle-me {
	cx: 22.8px;
	transition: cx 250ms linear;
}
#togglepreview #toggle-me.previewmover {
	cx: 56.4px;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
    font-family: 'silkabold';
    src: url('fonts/silka-bold-webfont.eot');
    src: url('fonts/silka-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/silka-bold-webfont.woff2') format('woff2'),
         url('fonts/silka-bold-webfont.woff') format('woff'),
         url('fonts/silka-bold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'silkamedium';
    src: url('fonts/silka-medium-webfont.eot');
    src: url('fonts/silka-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/silka-medium-webfont.woff2') format('woff2'),
         url('fonts/silka-medium-webfont.woff') format('woff'),
         url('fonts/silka-medium-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'silkaregular';
    src: url('fonts/silka-regular-webfont.eot');
    src: url('fonts/silka-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/silka-regular-webfont.woff2') format('woff2'),
         url('fonts/silka-regular-webfont.woff') format('woff'),
         url('fonts/silka-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'silkasemibold';
    src: url('fonts/silka-semibold-webfont.eot');
    src: url('fonts/silka-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/silka-semibold-webfont.woff2') format('woff2'),
         url('fonts/silka-semibold-webfont.woff') format('woff'),
         url('fonts/silka-semibold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'silkalight';
    src: url('fonts/silka-light-webfont.eot');
    src: url('fonts/silka-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/silka-light-webfont.woff2') format('woff2'),
         url('fonts/silka-light-webfont.woff') format('woff'),
         url('fonts/silka-light-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}


h1 {
	font-family: 'silkasemibold';
	font-weight: normal;
	margin: 0 0 0.25em 0;
	font-size: 3.2em;
    line-height: 1.2em;
}
h2 {
	font-family: 'silkaregular';
	font-weight: normal;
	margin: 0 0 1em 0;
	font-size: 2.1em;
    line-height: 1.25em;
}
h3 {
	font-family: 'silkasemibold';
	font-weight: normal;
	font-size: 1.70em;
	margin: 0 0 0.4em 0;
}
h3 span {
    font-size: 0.65em;
    margin-left: 0.25em;
}
h4 {
	font-family: 'silkasemibold';
	font-weight: normal;
	font-size: 1.1em;
	margin: 0 0 1em 0;
}
p {
	margin: 0 0 1em 0;
}
.logo p {
	margin: 1em 0 0 0;
}
.bigger p {
	font-size: 1.2em;
	line-height: 1.5em;
}
strong {
	font-family: 'silkabold';
	font-weight: normal;
}
p.small {
	font-size: 0.8em;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
