
@charset "UTF-8";

#body_edit {

	font-size: 16px;
	font-family: 'Roboto', Helvetica, Arial;

}

#body_edit * {

	margin: 0;
	padding: 0;
	outline: none;
	border: none;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
}

#body_edit.body_edit_class {
	font-size: 1.1rem;
	line-height: 2.2rem;
	font-weight: 300;
	color: #3a3a3a;
	text-align: left;

}


#body_edit h1, #body_edit h2, #body_edit h3, #body_edit h4, #body_edit h5, #body_edit h6, #body_edit p, #body_edit ul, #body_edit ol {

	margin: 1.4rem 0;

}
#body_edit h1 {

	font-size: 2.5rem;
	line-height: 3.0rem;
	font-family: 'BodoniWebBoldItalic';
	font-weight: normal;
	color: #262424;
	text-align: center;

}
#body_edit h2 {

	font-size: 2.0rem;
	line-height: 2.6rem;
	font-family: 'BodoniWebBoldItalic';
	font-weight: normal;
	color: #262424;
	text-align: left;

}
#body_edit h3 {

	font-size: 1.6rem;
	line-height: 2.2rem;
	font-family: 'BodoniWebBoldItalic';
	font-weight: normal;
	color: #262424;
	text-align: left;

}
#body_edit h4 {

	font-size: 1.35rem;
	line-height: 1.9rem;
	font-weight: 100;
	color: #3a3a3a;
	text-align: left;

}
#body_edit h5 {

	font-size: 1.0rem;
	line-height: 1.6rem;
	font-weight: 300;
	color: #888;
	text-align: left;

}
#body_edit h6 {

	font-size: 0.9rem;
	line-height: 1.5rem;
	font-weight: 300;
	color: #888;
	text-align: left;

}

/* PARAGRAPH */

#body_edit p {

	font-size: 1.1rem;
	line-height: 2.2rem;
	font-weight: 300;
	color: #3a3a3a;
	text-align: left;

}

/* LINE */

#body_edit hr {

	border: 0;
	height: 1px;
	margin: 1.5rem 0;
	background-color: #d5b2b2;

}

/* TEXT FORMATING */

#body_edit i, #body_edit em {

	font-style: italic;

}
#body_edit b, #body_edit strong {

	font-weight: 700;

}
#body_edit dfn, #body_edit address {

	font-style: italic;

}
#body_edit abbr[title] {

	border-bottom: 1px dotted #6f0000;

}
#body_edit mark {

	background-color: #6f0000;
	color: white;

}
#body_edit small {

	font-size: x-small;

}
#body_edit del {

	color: #aeaeae;

}
#body_edit ins {

	background-color: #fffaf0;
	text-decoration: none;

}
#body_edit span.red {

	font-size: 1.2em;
	color: #ff0000;

}

/* SUB & SUP */

#body_edit sub, #body_edit sup {

	font-size: 0.7em;
	margin: 0 0.1em;
	line-height: 0;
	position: relative;
	vertical-align: baseline;

}
#body_edit sup {

	top: -0.5em;

}
#body_edit sub {

	bottom: -0.3em;

}

/* LINK */

#body_edit a {

	color: #535353;
	text-decoration: none !important;
	border-bottom: 1px solid #535353;

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
#body_edit  .non-touch a:hover {

	color: #ffa080;
	border-color: #ffa080;

}
#body_edit a:active {

	opacity: 0.7;

	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;

}

#body_edit h1 a, #body_edit h2 a, #body_edit h3 a, #body_edit h4 a, #body_edit h5 a, #body_edit h6 a {

	color: black;
	border-color: #d5b2b2;

}
#body_edit .non-touch h1 a:hover, #body_edit .non-touch h2 a:hover, #body_edit .non-touch h3 a:hover, 
#body_edit .non-touch h4 a:hover, #body_edit .non-touch h5 a:hover, #body_edit .non-touch h6 a:hover {

	color: #ffa080;
	border-color: #ffa080;

}
#body_edit h1 a:active, #body_edit h2 a:active, #body_edit h3 a:active, 
#body_edit h4 a:active, #body_edit h5 a:active, #body_edit h6 a:active {

	color: black;
	border-color: black;

}

/* LIST */

#body_edit ul, #body_edit ol {

	margin-right: 0;
	margin-left: 2.0rem;
	list-style: none;

}
#body_edit ol {

	counter-reset: li;

}
#body_edit ul ul, #body_edit ul ol, #body_edit ol ul, #body_edit ol ol {

	margin-left: 1.6rem;
	list-style-position: outside;

}
#body_edit ul > li, #body_edit ol > li {

	position: relative;
	margin: 0.7rem 0;
	font-size: 1.1rem;
	line-height: 2.2rem;
	font-weight: 300;

}
#body_edit ul > li:before, #body_edit ol > li:before {

	display: block;
	position: absolute;

}
#body_edit ul > li:before {

	content: '';
	width: 7px;
	height: 7px;
	top: 0.9rem;
	left: -1.2rem;
	background-color: #6f0000;

}
#body_edit ol > li:before {

	content: counter(li)'.';
	counter-increment: li;
	text-align: right;
	width: 17px;
	top: 0;
	left: -1.8rem;
	font-weight: 300;
	color: #6f0000;

}
#body_edit ul > li > p:first-child, #body_edit ol > li > p:first-child {

	margin-top: 0;

}
#body_edit ul > li > p:last-child, #body_edit ol > li > p:last-child {

	margin-bottom: 0;

}

.testslide {display:none;}
#testslide-0 {display:block;}
.testdesc {display:none;}
a.choice {display:block; background-color:#eee; text-decoration:hone;border-radius:10px; padding:3px 10px; margin:2px;}
a.choice:hover {background-color:#ccc; }
a.chosen {background-color:#ccc; }
