@charset "UTF-8";

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

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

html{margin:0; padding:0;}

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

a.black:link{
	color:black;
	text-decoration: none;
	outline:none;
}

a.black:active{
	color:black;
	text-decoration: none;
	outline:none;
}

a.black:visited{
	color:black;
	text-decoration: none;
	outline:none;
}

a.black:hover{
	color:gray;
	text-decoration: none;
	outline:none;
}

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

/*td{border-spacing:0; border:0; padding:0;}*/

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

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

.accbox
{
	position: relative;
}

.accbox label
{
	display: block;
	position: relative;
	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 input
{
	display: none;
}

.accbox .accshow
{
	height: 0;
	overflow: hidden;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	
	-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;
	
	-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
{
	-webkit-transition:all 0s ease;
	-moz-transition:all 0s ease;
	-ms-transition:all 0s ease;
	-o-transition:all 0s ease;
	transition:all 0s ease;
}

.cssacc:checked + .accshow + label:before
{
	content: "";
	display: block;
	position: absolute;
    width: 1.5em;
    height: 1px;
    top: .9em;
    right: .1em;
	background-color: rgb(0, 0, 0);

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.cssacc:checked + .accshow + label:after
{
	content: "";
	display: block;
	position: absolute;
    width: 1.5em;
    height: 1px;
    top: .9em;
    right: .2em;
	background-color: rgb(0, 0, 0);
	
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

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