@charset "UTF-8";

*
{
	box-sizing: border-box;
}

*:not(tr):not(table):not(td)
{
	margin:0px;
	padding:0;;
	text-align:left;
	position: relative;
}

* html body {background-image: url(null) fixed;}

html{margin:0; padding:0;}

body{-webkit-font-smoothing: antialiased;}

a:link, a:active, a.black:visited, a.black:hover
{
	outline:none;
	text-decoration: none;
}

table{border-spacing:0; border-collapse:collapse;}

td{border-spacing:0; border:0; padding:0; vertical-align: top;}

img{border:0; border-spacing:0;}

textarea{display:block;}

textarea, input[type="text"], input[type="submit"],input[type="email"]{-webkit-appearance: none;}

br{letter-spacing: 0;}

.photo_100
{
	position: relative;
    max-width: 100%;
    min-height: 0%;
}

.flex
{
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
}

/**********************************************************************/
/******************************* Accordion *****************************/
/**********************************************************************/

.accbox
{
	position: relative;
}

.accbox label
{
	display: inline-block;
	width: 10em;
	border: 1px solid;
	background-color: rgb(255, 255, 255);
	text-align: center;
	padding: .5em 2em;
	box-sizing: border-box;
	cursor :pointer;
	
	-webkit-transition: color .3s ease, background-color .3s ease;
	-moz-transition: color .3s ease, background-color .3s ease;
	-ms-transition: color .3s ease, background-color .3s ease;
	-o-transition: color .3s ease, background-color .3s ease;
	transition: color .3s ease, background-color .3s ease;
}

.accbox label:hover
{
	background-color: rgb(0, 0, 0);
	border-color: rgb(0, 0, 0);
	color: white;
}

.accbox label:active
{
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
}

.accbox input
{
	display: none;
}

.accbox .accshow
{
	height: 0;
	overflow: hidden;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	border-style: solid;
	border-width: 1px;
	border-color: rgba(0, 0, 0, .1);
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.cssacc:checked + .accshow
{
	height: auto;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(0, 0, 0, .1);
/*	background-color: rgba(0, 0, 0, .1);*/
	padding: 0 2em;
	margin-bottom: 1em;
	
	-webkit-transition: all .5s ease,;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.cssacc:checked + .accshow + label
{
	text-indent: -9999px;
	position: absolute;
	right: 0em;
	top: 0em;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	padding: 0;
	border-width:0;
	background-color: rgba(0, 0, 0, 0);

	-webkit-transition:all 0s ease;
	-moz-transition:all 0s ease;
	-ms-transition:all 0s ease;
	-o-transition:all 0s ease;
	transition:all 0s ease;
}

.accbox label:hover 
{
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
}

.cssacc + .accshow + label:before
{
	content: "";
	display: block;
	position: absolute;
    width: .75em;
    height: .75em;
	top: 1em;
	right: 1em;
	border-style: solid;
	border-width: 1px 1px 0 0;
	border-color: rgb(0, 0, 0);

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	
	-webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-ms-transition:all 1s ease;
	-o-transition:all 1s ease;
	transition:all 1s ease;
}

.cssacc:checked + .accshow + label:before
{
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.accbox ._s{margin-top: 1em;}