body,h1,h2,h3,p,td,quote,small,form,input,ul,li,label{
	margin:0px;
	padding:0px;
	font-family:"Open Sans",sans-serif;
}

html{
	height: 100%;
	display: table;
	width: 100%;
}

body{
	margin-top:20px;
	font-size:18px;
	line-height: 30px;
	background-color:#eeeeee;
	text-align:center;
	display: table-cell;
	vertical-align: middle;
	
}

.clear{
	clear:both;
}

a, a:visited {
	color:#007bc4;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

#rounded{
	width:1000px;
	margin:20px auto;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-khtml-border-radius: 5px;
	text-align:left;
}

.container{
	background-color:#FFFFFF;
	padding:10px 20px 20px 20px;
}

h1{
	font-size:32px;
	font-weight:bold;
	text-align:center;
	margin-bottom:16px;
}

h2{
	font-weight:normal;
	font-size:20px;
	color:#999999;
}

/*-------------------------------------------------------*/
/* PAGE CONTENT CJ */
#pageContentLightColor{
	margin-top:20px;
	text-align:justify;
	background-color:#cfdaeb;
	color:#043b8d;
	border:1px dashed #000000;
	padding:15px;
	padding-top:25px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#pageContentDarkColor{
	margin-top:20px;
	text-align:justify;
/*	background-color:#3771c8;*/
	background-color:#6b93d0;
	color:#eeeeee;
	border:1px dashed #cccccc; 
	padding:15px;
	padding-top:25px;

	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#Footer{
	margin-top:20px;
	text-align:justify;
#	background-color:#ffee77;
	color:#51555C;
	padding:15px;
#	border:1px dashed #cccccc; 
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
/*-------------------------------------------------------*/

#loading{
	visibility:hidden;
}

.demo{
	color:white;
}

.circular {
    width: 150px;
    height: 180px;
    border-radius: 75px;
    -webkit-border-radius: 75px;
    -moz-border-radius: 75px;
    overflow:hidden; /* Für Image-Element Variante */
}

/*
div p:first-child:first-letter {
	font-size: 60px;
	float: left;
	margin: 0px 10px 0 0;
	line-height: 0.8;;
	text-shadow: 4px 4px 0 #566074, 7px 7px 0 #fff;
}
*/

/*
figure img{
 box-shadow:  3px  0px 5px #ffffff,
              0px  3px 5px #ffffff,
             -3px  0px 5px #ffffff,
              0px -3px 5px #ffffff;
}
*/

.rounded {
    /*width: 300px;
	height: 200px;*/
    display: inline;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
	-khtml-border-radius: 5px;
    overflow:hidden; /* Für Image-Element Variante */
}

ol {
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    font-size: 16px;
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
    width: 700px;
}

ol ol {
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
}

.rectangle-list li{
    position: relative;
    display: block;
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #cfdaeb;
    color: #043b8d;
    text-decoration: none;
    transition: all .3s ease-out;   
}

.rectangle-list li:hover{
    background: #eee;
}   

.rectangle-list li:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
    background: #cfdaeb	;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
}

.rectangle-list li:after{
    position: absolute; 
    content: '';
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;               
}

