
/* ------------------- */
/* DEFAULT CONTENT CSS */
/* ------------------- */

.default-content-wrapper {
	line-height: 18px;
	display: inline;
}

.default-content-wrapper h1, h2, h3, h4, h5  {
	margin-bottom: 15px;
	margin-top: 10px;
}

/*
.default-content-wrapper br {
	display: block;
	margin-top: 4px;
}

*/
.default-content-wrapper p {
	margin-bottom: 10px;
	margin-top: 10px;
}

.default-content-wrapper ul {
	list-style-type: disc;
	margin-left: 20px;
}

.default-content-wrapper ol { 
	list-style-type: decimal;
	margin-left: 20px;
}

.default-content-wrapper li { 

}

.default-content-wrapper h1 { font-size: 22px; font-weight: bold; }
.default-content-wrapper h2 { font-size: 20px; font-weight: bold;}
.default-content-wrapper h3 { font-size: 18px; font-weight: bold;}
.default-content-wrapper h4 { font-size: 16px; font-weight: bold;}
.default-content-wrapper h5 { font-size: 14px; font-weight: bold;}
.default-content-wrapper h6 { font-size: 12px; font-weight: bold;}
.default-content-wrapper h7 { font-size: 10px; font-weight: bold;}

.default-content-wrapper div.toc-list {
    border: 1px solid #FFF097;
    background-color: lightyellow;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
    font-size: 12px;
}

.default-content-wrapper div.toc-item {
    padding: 1px;
}

.default-content-wrapper div.toc-list-title {
    margin-bottom: 10px;
	margin-top: 0px;
	margin-left: 10px;
	
    font-weight: bold;
    font-size: medium;
}

.default-content-wrapper a {
	font-weight: normal;
	text-decoration: underline;
	color: #105CB6;
}

.default-content-wrapper a:hover {
	font-weight: normal;
	text-decoration: underline;
	color: #93AFCB;
}

.default-content-wrapper .glossar {
	font-weight: normal;
	text-decoration: none;
	color: #105CB6;
	border-bottom: 1px dotted #93AFCB;
}

.default-content-wrapper .glossar:hover {
	font-weight: normal;
	text-decoration: none;
	border-bottom: 1px solid #93AFCB;
	color: #105CB6;
}

.default-content-wrapper dl {
	font-size: 11px;
}

.default-content-wrapper dd {
	padding-left: 30px;
}

.default-content-wrapper dt {
	text-decoration: underline;
}

.default-content-wrapper pre {
/* 	padding-bottom: 5px; */
/* 	padding-top: 5px; */
/* 	background-color: #efefef; */
}

/* TABLE DEF */
/* --------- */

.default-content-wrapper table {
    border-spacing: 1px;
	background: #E5ECF3;
	font-family: sans, Verdana, Arial, sans-serif, Helvetica;
    font-size: 11px;
    overflow: auto;
    width: 100%;
    border-collapse: separate;
}

.default-content-wrapper table tr {
}

.default-content-wrapper table th {
	padding: 4px;
	font-weight: bold;
	background: #F1F5FA;
}

.default-content-wrapper table td {
	padding: 4px;
	background: white;
}


/* ---------- */
/* BLOCKQUOTE */
/* ---------- */

.blockquote {
/*  	border-bottom: 1px solid white;  */
/* 	border-top: 0px solid #efefef; */
/*  	border-right: 1px solid white; */
	border-left: 6px solid #93AFCB;
	background: lightyellow;
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 10px;
}

/* --------- */
/* CODEBLOCK */
/* --------- */

.codeblock-wrapper {
	border: 1px solid #E5ECF3;
	margin-top: 10px;
	margin-bottom: 15px;
}

.codeblock-menu {
	background-color: #E5ECF3;
	font-size: 10px;
	text-align: right;
	color: #5C5C5C;
	padding-right: 20px;
}

.codeblock-menu a {
	text-decoration: none;
	color: #5C5C5C;
}

.codeblock-menu a:hover {
	text-decoration: underline;
}

.codeblock-code-wrapper {
	overflow: auto;
}

/* Browser < IE6 */
.codeblock-code-wrapper-ie {
	/* 	overflow: none;	 */
	padding: 5px;
	background-color: #F1F5FA;
	width: 50%;
}

.codeblock-code-wrapper-ie textarea {
	width: 100%;
	border: 0;
	background-color: #F1F5FA;
}

.codeblock-cols {
	font-family: "Consolas", "Courier New", Courier, mono, serif;
	font-size: 12px;
	width: 30px;
	float: left;
	background-color: #E5ECF3;
	color: #5C5C5C;
	padding-left: 12px;
}

.codeblock-code  {
	margin-left: 46px;
	border-left: 1px solid white;
}

* html .codeblock-code  { 
	border: 0;  /* IE 6.0 Fix */
	overflow: hidden;
}

.codeblock-code  pre {
	font-family: "Consolas", "Courier New", Courier, mono, serif;
	font-size: 12px;
	padding-left: 10px;

	white-space: pre; /* CSS2 */
	white-space: pre-wrap;       /* css-3 */
	/*white-space: pre-line;*/ /* CSS 3 (and 2.1 as well, actually) */
   	white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
   	white-space: -pre-wrap;       /* Opera 4-6 */
   	white-space: -o-pre-wrap;       /* Opera 7 */
   	word-wrap: break-word;       /* Internet Explorer 5.5+ */
/* 	overflow: hidden;  */
  
}

* html .codeblock-code pre {
	width: 96%; /* IE 6.0 Fix */
}

.codeblock-code .light {
	background-color: white;
}
.codeblock-code .dark {
	background-color: #F1F5FA;
}

.codeblock-content {
	clear: both;
	background-color: #E5ECF3;
}

.codeblock-content .comment, .dp-highlighter .comments { color: #008200; background-color: inherit; }
.codeblock-content .string { color: blue; background-color: inherit; }
.codeblock-content .var { color: red; background-color: inherit; }
.codeblock-content .keyword { color: #069; font-weight: bold; background-color: inherit; }
.codeblock-content .preprocessor { color: gray; background-color: inherit; }


/* CODE BLOCK WITHOUT COLS MENU AND NUMS */

.codeblock-code-nonum  {
	margin-left: 0px;
	border-left: 1px solid white;
}

.codeblock-code-nonum  pre {
	font-family: "Consolas", "Courier New", Courier, mono, serif;
	font-size: 12px;
	padding-left: 10px;

	white-space: pre; /* CSS2 */
	white-space: pre-wrap;       /* css-3 */
	/*white-space: pre-line;*/ /* CSS 3 (and 2.1 as well, actually) */
   	white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
   	white-space: -pre-wrap;       /* Opera 4-6 */
   	white-space: -o-pre-wrap;       /* Opera 7 */
   	word-wrap: break-word;       /* Internet Explorer 5.5+ */
/* 	overflow: hidden;  */
}

.codeblock-code-nonum .light {
	background-color: white;
}
.codeblock-code-nonum .dark {
	background-color: #F1F5FA;
}


