/* TOC*/
/*begin of wacko.css = line 2516*/
/* basic rules */
html {
  background:#A1B4C9;
    height:auto;
}
body {
	0width:80%;
	margin:1px auto;
	border:1px solid  
}
body {
	font-family: Verdana, sans-serif;
	0font-size: 1em;
	00font-size: 13px;
	line-height: 1.3;
	color: #000000;
	background-color: #fcfcfc;

}

#header,
#footer {
  overflow:hidden;
  zoom:1;
  background:#6280A2;
}

/* basic ------------------------------------- */

/*flexbox start
.wrapper-f {
	display: -webkit-flex;
	display: flex;
	flex-basis: auto;  
	flex-flow: row wrap;
	text-align: left;
}*/
/* We tell all items to be 100% width, via flex-basis 
.wrapper-f > * {
	flex: 1 100%;
}

.header-f {
	background: lightsalmon;
	order: -1;
    0border:1px navy solid;
}

.nav-f {
	flex: 0 0 205px;
	background: lightsteelblue;
	background-image: url(../icon/bg_l.gif);
	order: 1;
	1border-left:1px navy solid;
	0font-size: 13px;
}

.main-f {
	flex: 0 0 auto;
	text-align: left;
	background: white;
	order: 2;
    0border-left:1px navy solid;
	0border-right:1px navy solid;
	padding:6px;
}

.footer-f {
	background: #7c9abc;
	order: 3;
    0border:1px navy solid;
	padding:3px;
}

0@media all and (min-width: 599px) {
  .aside { flex: 1 auto; }
}

0@media all and (min-width: 799px) {
  .main-f    { flex: 3 0px; }
  .aside-f   { order: 1; } 
  .main-f    { order: 2; }
  .footer-f  { order: 4; }
}

/*flexbox end*/

/*new flexbox code*/
body {
  display: flex;
  flex-flow: row wrap;
  height: 100%;
}
.header, .footer, .navbar {
  flex: 1 1 100%;
}
.sidebar {
  flex: 0 0 205px;
}
.content {
  min-height: 300px;
  flex: 1 1 360px;
}

.header, .navbar, .content, .footer, .sidebar {
  box-sizing: border-box;
  0padding: 5px;
  0margin: 1px;
}
header , .header {
  0height: 65px;
  0background-color: navy;
    font-size: 1.1em;
}
.navbar {
  background-color: #2563FF;
  text-align: center;
}
.navbar a {
  color: #ffffff;
}
.footer {
  height: 50px;
  0background-color: navy;
}
.sidebar {
  background-color: lightsteelblue;
  background-image: url(../icon/bg_l.gif);
}
.content {
  0background-color: #7BA0FF;
}


@media (max-width: 1024px) {
	.header		{ order: 1; display: none;}
	.content	{ flex: 1 1 100%; }
	.sidebar	{ flex: 1 1 200px; display: none;}
}
@media (min-width: 1025px) {
	.header		{ order: 1; }
	.navbar		{ order: 2;  display: none; }
	.sidebar	{ order: 3;}
	.content	{ order: 4; }
	.footer		{ order: 5; }
}
@media (min-width: 1380px) {
	body		{width: 88%; margin: auto;}
	.navbar		{ order: 2; display: none;}
}


/* basic ------------------------------------- */
/* basic ------------------------------------- */
.copyright {
	clear: right; 
	color: #eee; 
	font-size: 11px; 
	font-weight: bold;
	text-align: center; 
	vertical-align: middle; 
	0background-color: #7c9abc;
	padding: 2px 0px 2px 0px;
}
.copyright a:link { color: cornsilk;}


.box1,
.box2 { 
    padding: 4px; /* Поля */
    border: 1px solid navy; /*  Параметры рамки */
	text-align: left;
	}
	
.box1 {
	font-weight: bold;
	color: navy;
	background: lightblue;
	margin:6px 6px 0px 6px;
}
   
.box2 { 
	border-top: 0px;
    background: #e4eaf2;  /* Цвет фона */ 
	margin:0px 6px 0px 6px;
   }

/* basic -------------------------------------------------- */

header {
	padding: 0;
	/* float: left; */
	width: 100%;
}

#header-main {
	clear: both;
	overflow: hidden;
	float: left;
	background:#6280A2;
	background: url(../icon/logo_wiki_bg.gif) repeat-x right;
	width: 100%;
	color: #FFF;
	font-weight: bold;
	0padding-bottom: 5px;
}

a {
	color: #0202AA; 
	text-decoration: none;
}

p,
td,
th,
li,
select,
textarea {
	font-family: Verdana,Arial,Helvetica,sans-serif;
	0font-size: 13px;
	line-height: 1.3em;
}

 pre {
	font-family:"Lucida Console","Courier New",monospace;
	text-align:left;
	white-space:pre;
} 

/* cellspacing */
table {
	border-collapse: collapse;
	border-spacing: 0;
	
}
/* cellpadding */
th,
td {
	padding: 0;
}

label {
	cursor: pointer;
}

/* Textareas */
select,
textarea, 
input:not([type]), 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"] {
	background-color: #FFFFFF;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
	border: 1px solid #ccc;
	display: inline-block;
	font-size: 14px;
	height: auto;
}

input[type=text]:hover,
input[type=search]:hover,
input[type=email]:hover,
input[type=password]:hover,
textarea:hover {
	border: 1px solid #93cee9;
}

input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
	border: 1px solid #3daee9;
	/* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6); */
}

input[type=checkbox],
input[type=radio] {
	margin-right: 10px;
	margin-left: 8px;
}

input.captcha {
	width: 273px;
}

/* hides dummy field for bots and autocomplete */
input.verify { display: none; }


/* Hyperlinks */
a {
	color: #0202AA; 
	text-decoration: none;
}

a:link {
	color: #0202AA;
}

a:visited {
/**	color: #990000; */
		color:Brown;
}

a:hover {
/*	color: #B90022; 
	color: #FF6622; */
		color: blue;
	text-decoration: underline;
}

a:active {
	/*color: #FF0000; */
		color: #0202AA;
}

a:target {
	/* color: #FF0000; */
	/* border: 2px solid #FF6600; */
	background-color: #FFEEEE;
	/* padding: 5px 10px; */
}

.heading > a.self-link::before {
	content: "\00a7"; /* § UTF-8 escape sequences */
	visibility: hidden;
}

.heading:hover > a.self-link::before {
	content: "\00a7"; /* § UTF-8 escape sequences */
	visibility: visible;
	text-decoration: none;
}

a.self-link {
	height: 2em;
	float: left;
	/* line-height: 1; */
	0margin-left: -15px;
	padding-right: 4px;
}
a.self-link:hover {
	text-decoration: none;
}
.heading > a.self-link {
	font-size: 83%;
}

/* ¶ UTF-8 escape sequences */
/* a.self-link::before {
	content: "\00b6"; 
} */

svg,
img {
	border-width: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

kbd {
	background-color: #f7f7f7;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
	color: #333;
	display: inline-block;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	line-height: 1.4;
	margin: 0 0.1em;
	padding: 0.1em 0.6em;
	text-shadow: 0 1px 0 #fff;
	white-space: nowrap;
}

.clearfix:after,
#mainwrapper:after {
	content: "";
	display: table;
	clear: both;
}

form input.submitinput {
	color: #000;
}


#header-top,
#header-top h1,
#header-top a,
#header-top a:visited {
	font-size: 24px;
	font-weight: normal;
	color: #444;
	text-decoration: none;
}

#header-files h1,
#header-comments h1,
#header-rating h1 {
	0font-size: 13px;
	line-height: 1.3;
	font-weight: normal;
	padding: 0;
	text-indent:4px;
}

.print {
	font-family: Verdana, sans-serif;
	font-size: 12px;
}

/* show message boxes */
.error {
	background: #f8d4cc url('./../icon/cross.svg') no-repeat scroll 10px 10px;
	margin: 10px;
	padding: 10px 10px 10px 40px;
	color: #CC3333;
	font-weight: bold;
}

.message {
	overflow: hidden;
	padding: 10px 20px;
	width: 100%;
}

.info {
	background: #F4FBFF url('./../icon/info.svg') no-repeat scroll 10px 10px;
	margin: 10px;
	padding: 10px 10px 10px 40px;
	border: 1px solid #D5D9E6;
	color: #CC3333;
	font-weight: bold;
}

.notice {
	background-color: #FFFFEF;
	border: 1px dotted #DDDDAA;
	/* font-size: 0.75em; */
	height: 35px;
	line-height: 35px;
	margin: 0 0 10px;
	overflow: hidden;
	padding: 0 10px;
}

.success {
	background: #e9ffd9 url('./../icon/tick.svg') no-repeat scroll 10px 10px;
	/* border: 1px solid #adde5c; */
	color: #008000;
	font-weight: bold;
	margin: 10px;
	padding: 10px 10px 10px 40px;
}

.warning {
	color: red;
	font-weight: bold;
	/*background-color: #fbe6f2;*/
	background: #fcfcfc url('./../icon/warning.svg') no-repeat scroll 10px 10px;
	margin: 10px;
	padding: 10px 10px 10px 40px;
	border: 1px dotted #d893a1;
	border-right-style: none;
	border-left-style: none;
}

.hint {
	border: 1px solid #ffee66;
	width: auto;
	background: #ffffdd url('./../icon/important.svg') no-repeat scroll 10px 10px;
	margin: 10px;
	padding: 10px 10px 10px 40px;
	position: relative;
}

/* Debugging informations*/
.time {
	color: #999999;
	font-size: 9px;
	margin: 5px 20px;
}

#debug {
	padding: 0 20px 20px 20px;
	float: left;
}
.debug,
#debug li,
#debug pre {
	font-size: 11px;
	color: #888888;
	/* font-family:"Lucida Console","Courier New",monospace; */
}

.sqllog {
	position: relative;
	/* display: inline-block; */
}

.sqllog .backtrace {
	visibility: hidden;
	width: 30%;
	background-color: #131313;
	color: #fff;
	border-radius: 6px;
	padding: 7px 7px 7px 7px;

	/* Position the tooltip */
	position: absolute;
	z-index: 1;
	top: +30px;
	left: +100px;
}

.sqllog:hover {
	border: 1px solid #93cee9;
}

.sqllog:hover .backtrace {
	visibility: visible;
}



.menu-main0 {
	0float: left;
	height: 25px;
	background: #FFFFFF;
	width: 100%;
	padding-top: 5px;
}

.breadcrumb {
	background-color: #E4EAF2;
	border-bottom: 1px dotted #B2B0B0;
	border-top: 1px dotted #B2B0B0;
	color: #333333;
	font-size: 0.8em;
	font-weight: normal;
	padding: 2px 0 2px 0;
	text-indent:3px;
	margin: 0px 0px 2px 0px;
	float: left;
	width: 100%;
}

/** Styles for the main content in the page. *********************************/
	/* Default settings */
	
#mainwrapper {
	width: 980px;
	margin: 0 auto 1rem;
}

#mainwrapper0 > header,
main {
	0background-color: #FFFFFF;
	0box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	0padding: 9px 20px 0;
	0float: left;
	0width: 96%;
	0clear: both;
}

article,
#section-content,
#page-show, 
#page-edit
{
	float: left;
	0width: 100%;
}

#section-content,
#page-show,
#page-edit,
#page {
	background-color: #FFFFFF;
	min-height: 300px;
}

#section-content,
#page {
	padding: 5px 8px 20px 8px;
	0margin: 5px;
	0text-indent: 5px;
}

#page-edit {
	border-bottom: none;
	padding: 5px 0 20px;
}

#page-edit form textarea {
	width: 100%;
	height: 400px;
}

footer {
	float: left;
	width: 100%;
}

.footer {
	background-color: cornflowerblue;
	padding: 5px 20px;
	border-top: none;
	border-top: 1px dotted #CCCCCC;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	margin: 0;
	float: left;
	height: auto;
	overflow: hidden;
	clear: both;
	width: 100%;
}

.footerlist {
	margin: 0 auto 0;
	overflow: hidden;
}

.footerlist ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footerlist li {
	border-left: 1px dotted #ccc;
	float: left;
	line-height: 1.2em;
	margin: 0 .5em 0 -.5em;
	padding: 0 .5em 0 .5em;
	white-space: nowrap;
}

.footerlist ul li form {
	display: inline;
}

/** File and comment-related *************************************************/
	/* Headers (always visible) */
#header-files,
#header-comments,
#header-rating {
	background-color: #F0F4F5;
/*	padding: 2px 20px;
	margin: 0 -20px; */
	border-top: 1px dotted #CCCCCC;
	border-bottom: 1px solid #eeeeee;
	float: left;
	width: 100%;
}

.files,
.comment,
.rating,
.category {
	background-color: #FFFFFF;
	padding: 4px 4px;
	0margin: 0 -20px;
	border-bottom: 1px solid #EEEEEE; /* disable for category, last .. */
	float: left;
	width: 99%;
}

.comment:target {
	border: 2px solid #FF6600;
	padding: 10px 18px;
}

.comment:hover {
	background-color: #E7F9FF;
}

/* Comment author and date */
.comment-info {
	color: #AAAAAA;
	padding-bottom: 20px;
	float: right;
	list-style-type: none;
}

li.comment {
	overflow: hidden;
}
ol#comments {
	list-style: none outside none;
	margin: 10px 0 0;
	padding: 0;
}

.comment-info li {
	border: medium none;
	margin: 0;
	padding: 0;
	width: 320px;
}

.comment-tool,
.comment-tool a {
	color: #7f919e;
}
.comment-tool li {
	border: medium none;
	padding: 0;
	
	float: left;
	0font-size: 13px;
	line-height: 15px;
	list-style-type: none;
	margin: 0 7px 0 0;
}

.vote-down {
	border-color: rgba(0, 39, 59, 0.08);
	border-left: 2px solid rgba(0, 39, 59, 0.08);
	padding-left: 6px;
	padding-right: 0;
}

.comment-text,
.comment-tool {
	float: left;
}

.comment-text p {
	width: 800px;
}

.comment-title h2 {
	0font-size: 13px;
	line-height: 22px;
	font-weight: bold;
	margin: 0;
	border: none;
}

.comment-preview {
	width: 800px;
}

/* Change summary */
.editnote {
	color: #555555;
}

.review {
	font-weight: bold;
}

.filesform,
.commentform {
	padding: 5px 10px 5px 10px;
/*	margin: 0 -20px;
	 border-top: 1px solid #CCCCCC; */
	background-color: #FCFCFC;
	float: left;
/*	width: 100%;*/
}

.commentform form {
	width: 100%;
}

.commentform form textarea {
	width: 100%;
	height: auto;
	padding: 0;
}

#credits {
	font-size: 11px;
	color: #AAAAAA;
	text-align: left;
	padding: 0 20px;
	float: left;
	width: 100%;
}

#credits a {
	color: #AAAAAA;
}

#credits a:active {
	color: #FF0000;
}

/* Included pages: SYNTAX {{include page="xyz"}} */
.include-page {
	background-color: #FCFCFC;
	padding: 8px;
}

.include-meta {
	text-align: right;
	font-size: 11px;
}

/* Outgoing hyperlinks: SYNTAX ((http://slashdot.org nerds)) */
.outerlink {
	color: #990000;
}

fieldset {
	padding: 10px;
}

.missingpage {
	border-bottom: 1px dashed orange;
}

.searchbar {
	background-color: #F0F4F5;
	font-family: Verdana, sans-serif;
	0font-size: 13px;
	line-height: 1.3em;
}

.searchbar input {
	border: none;
	border-bottom: 1px solid #CCCCAA;
	padding: 0;
	margin: 0;
}

.logBtn {
	height: 21px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}

#tooltip {
	background: #FFFFFF;
	border: 1px solid #666666;
	color: #333333;
	font: menu;
	margin: 0;
	padding: 3px 5px;
	position: absolute;
	visibility: hidden;
}

/* replaces inline CSS */
.t_center {
	text-align: center;
}
.t_right {
	text-align: right;
}
.t_left {
	text-align: left;
}

.a_top {
	vertical-align: top;
}

.a_middle {
	vertical-align: middle;
}

a.btn_link {
	text-decoration: none;
}

.nowrap {
	white-space: nowrap;
}

/* <------------------ */

.upload {
/*	 border: 0 none;
	border-collapse: collapse; */
	width: 100%;
}

.tbl_fixed
{
	table-layout: fixed;
}

.upload img {
/* 	max-width: 10%;
	max-height: 10%;
	transform: scale(10); */
}

.upload tr:hover {
	background: #CCFFCC;
}

.upload th{
	color: #444444;
	font-weight: normal;
	text-align: left;
	width: 130px;
}

.upload td,
.upload th {
	padding: 2px 5px 2px 5px;
	vertical-align: top;
}

.upload td.dt-,
.upload td.file- {
	white-space: nowrap;
	/* font-size: 80%;
	font-weight: bold; */
	color: #000000;
	vertical-align: top;
}

td.file- {
	width: 50%;
}

.upload td.dt- {
	padding-right: 0;
}

.upload td.tool- {
	padding-right: 0;
	width: 9%;
}

.upload td.size- {
	padding-right: 0;
	text-align: right;
}

.upload td.desc- {
	font-size: 80%;
	color: #444444;
}

.upload td.dt- .dt2-,
.upload td.tool- .tool2-,
.upload td.size- .size2- {
	font: 11px Tahoma;
	color: #666666;
	padding: 5px;
	white-space: nowrap;
}

.upload td.tool- a.tool2-:hover,
.upload td.tool- a.tool2-:active {
	color: #ff0000;
}

.fileinfo {
	overflow-wrap: break-word;
}

.fileinfo a img {
	border: 4px solid white;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
	margin: 10px 0;
	/* display: block;
	height: 115px;
	overflow: hidden;
	width: 178px; */
}

.fileinfo a img:hover {
	box-shadow: 0 0 10px 0 #93cee9;
}

.fileinfo a img:active {
	box-shadow: 0 0 10px 0 #3daee9;
}

.preview {
	margin: .8em 2px 2px;
	padding: 10px;
	border: red 2px solid;
}

p.preview {
	color: red;
	font-weight: bold;
	margin: -1.5em 0 10px 0;
	padding: 0;
	border: 0;
}

.preview p span {
	background: #FFF;
	padding: 0 1px;
}

.layout-box {
	margin: .8em 2px 2px;
	padding: 10px;
	border: #CCCCCC 1px dotted;
	background-color: #fcfcfc;
}

.layout-box > p {
	background: transparent;
	margin: -1.5em 0 10px 0;
	padding: 0;
	border: 0;
}

.layout-box > p span {
	background: #FFF;
	padding: 0 1px;
}

.layout-box dd {
	margin: -20px 0 0 50px;
	padding: 0;
	line-height: 25px;
}

*.heading:target,
.layout-box dd:target,
.footnote *:target,
a:target {
	background-color: #FFEEEE;
}

.buttonsspacer {
	width: 10px;
	height: 1px;
}

/** Wikiedit-related (JavaScript) ********************************************/
	/* WikiEdit Toolbar -------------------------------------- */

#buttons_1 {
	clear: none;
	float: left;
	padding: 0 0 0 0;
}

#buttons_1 li {
	float: left;
	padding-right: 0.3em;
	white-space: nowrap;
	list-style: none outside none;
}

.toolbar li {
	background: ButtonFace;
}

.toolbar .btn-, 
.toolbar .btn-hover, 
.toolbar .btn-active, 
.toolbar .btn-pressed {
	background: ButtonFace;
	color: ButtonText;
	border: 1px solid ButtonFace;
	padding: 1px;
	margin: 0;
	cursor: pointer;
}

.toolbar .btn-hover {
	border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
}

.toolbar .btn-active, .toolbar .btn-pressed {
	border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
}

.toolbar .btn-pressed {
	background: ButtonHighlight;
}

.toolbar .btn-separator {
	border-left: 1px solid buttonshadow;
	border-right: 1px solid buttonhighlight;
	height: 20px;
	margin: 3px;
	padding: 0;
	width: 0;
}

.toolbar img, 
.toolbar a img, 
.toolbar span img {
	border: medium none;
	height: 22px;
	width: 22px;
}
.toolbar li img {
	background-size: 22px 22px;
}
.toolbar li.we-h1 img {
	background: url('../../../image/wikiedit/h1.svg') no-repeat;
}
.toolbar li.we-h2 img {
	background: url('../../../image/wikiedit/h2.svg') no-repeat;
}
.toolbar li.we-h3 img {
	background: url('../../../image/wikiedit/h3.svg') no-repeat;
}
.toolbar li.we-h4 img {
	background: url('../../../image/wikiedit/h4.svg') no-repeat;
}
.toolbar li.we-h5 img {
	background: url('../../../image/wikiedit/h5.svg') no-repeat;
}
.toolbar li.we-h6 img {
	background: url('../../../image/wikiedit/h6.svg') no-repeat;
}
.toolbar li.we-bold img {
	background: url('../../../image/wikiedit/bold.svg') no-repeat;
}
.toolbar li.we-italic img {
	background: url('../../../image/wikiedit/italic.svg') no-repeat;
}
.toolbar li.we-underline img {
	background: url('../../../image/wikiedit/underline.svg') no-repeat;
}
.toolbar li.we-strike img {
	background: url('../../../image/wikiedit/strike.svg') no-repeat;
}
.toolbar li.we-superscript img {
	background: url('../../../image/wikiedit/superscript.svg') no-repeat;
}
.toolbar li.we-subscript img {
	background: url('../../../image/wikiedit/subscript.svg') no-repeat;
}
.toolbar li.we-ul img {
	background: url('../../../image/wikiedit/ul.svg') no-repeat;
}
.toolbar li.we-ol img {
	background: url('../../../image/wikiedit/ol.svg') no-repeat;
}
.toolbar li.we-center img {
	background: url('../../../image/wikiedit/center.svg') no-repeat;
}
.toolbar li.we-justify img {
	background: url('../../../image/wikiedit/justify.svg') no-repeat;
}
.toolbar li.we-right img {
	background: url('../../../image/wikiedit/right.svg') no-repeat;
}
.toolbar li.we-outdent img {
	background: url('../../../image/wikiedit/outdent.svg') no-repeat;
}
.toolbar li.we-indent img {
	background: url('../../../image/wikiedit/indent.svg') no-repeat;
}
.toolbar li.we-hr img {
	background: url('../../../image/wikiedit/hr.svg') no-repeat;
}
.toolbar li.we-signature img {
	background: url('../../../image/wikiedit/signature.svg') no-repeat;
}
.toolbar li.we-quote img {
	background: url('../../../image/wikiedit/quote.svg') no-repeat;
}
.toolbar li.we-source img {
	background: url('../../../image/wikiedit/source.svg') no-repeat;
}
.toolbar li.we-code img {
	background: url('../../../image/wikiedit/code.svg') no-repeat;
}
.toolbar li.we-createlink img {
	background: url('../../../image/wikiedit/link.svg') no-repeat;
}
.toolbar li.we-createtable img {
	background: url('../../../image/wikiedit/table.svg') no-repeat;
}
.toolbar li.we-textred img {
	background: url('../../../image/wikiedit/textcolor.svg') no-repeat;
}
.toolbar li.we-highlightcolor img {
	background: url('../../../image/wikiedit/highlightcolor.svg') no-repeat;
}
.toolbar li.we-help img {
	background: url('../../../image/wikiedit/help.svg') no-repeat;
}

.edname-w,
.edname-r,
.edname-s {
	font: bold 14px Arial;
	border: 3px solid #D4D0C8;
	padding: 0 7px;
	color: #ffffff;
	vertical-align: middle;
}

.edname-w {
	background: #1E9905;
}

.edname-r {
	background: #2A45D0;
}

.edname-s {
	background: #D08C2A;
}

.autocomplete-inplace {
	background: ButtonFace;
	border: 1px solid ButtonShadow;
	padding: 2px;
	font: 12px Arial;
}

.autocomplete-inplace div {
	padding: 2px 5px;
	cursor: pointer;
}

.autocomplete-inplace div.ac-over- {
	color: #ffffff;
	background: #1E9905;
}

/* ------------------------------- */


/* CSS form formater */
.cssform p {
	width: 320px;
	clear: left;
	margin: 0;
	padding: 5px 0 8px 155px;
	/*width of left column containing the label elements*/
	height: 1%;
}

.cssform label {
	float: left;
	margin-left: -155px; /*width of left column*/
	width: 150px;
	/*width of labels. Should be smaller than left column (155px) to create some right margin*/
}

.cssform input[type="text"] {
	width: 180px;
}

.cssform textarea {
	width: 570px;
	height: 50px;
}

.cssform span.site_count {
	font-weight: normal;
	float: left;
	margin-left: -155px; /*width of left column*/
	width: 150px;
	/*width of labels. Should be smaller than left column (155px) to create some right margin*/
}

/* cssform1 for actions */
#cssform1 {
	padding: 10px;
	margin: 0 auto;
}

#cssform1 p {
	clear: left;
	margin: 0;
	padding: 5px 0 8px 0;
	/*padding-left: 20%; width of left column containing the label elements*/
	height: 1%;
}

#cssform1 label {
	float: left;
	margin-left: 0; /*
	margin-left: -155px; width of left column*/
	width: 350px;
	/* width of labels. Should be smaller than left column (155px) to create some right margin*/
	text-align: left;
	margin-right: 10px;
}

#cssform1 input[type="text"] {
	width: 180px;
}

#cssform1 textarea {
	width: 250px;
	height: 150px;
}

#cssform1 span.site_count {
	font-weight: normal;
	float: left;
	margin-left: 0; /*
	margin-left: -155px; width of left column*/
	width: 150px;
	/*width of labels. Should be smaller than left column (155px) to create some right margin*/
}

.form_tbl {
	width: 100%;
}

.form_tbl td,
.form_tbl th {
	padding: 3px;
	margin: 0;
}

.form_tbl td {
	text-align: left;
	vertical-align: top;
}

.form_tbl td label {
	color: #666666;
}

.form_tbl th {
	color: #444444;
	font-weight: bold;
	text-align: right;
	vertical-align: top;
	padding-right: 20px;
}

/* Actions --------------------------------------------------*/
.smaller {
	font-size: 0.8em;
}

/* feed action */
.feed {
	overflow: auto;
}

.feed .note {
	font-size: 11px;
	color: #777;
}

.feed .note a {
	color: #777;
}

.feed .note span {
	border-bottom: 1px dotted;
}

.feed_element_title {
	/* We're going to add some space next to the titles so we can fit the 16x16 favicon image. */
	background: transparent no-repeat 0 1px;
	padding-left: 0;
	font-size: 16px;
}

.feed h2 {
	0font-size: 13px;
	border-bottom: none;
}

/* search action */
.search_meta {
	color: #808080; 
	line-height: 1.24; 
	white-space: nowrap;
}

/* gallery action */
.gallery figure {
	display: inline-table;
}

.gallery figure:hover {
	background-color: #CCFFCC;
}

.gallery figcaption {
	display: table-caption;
	caption-side: bottom;
}

/*Handlers --------------------------------------------------*/

/* menu */

#menu-user {
	margin: 0 auto 0;
	/* overflow: hidden; */
	float: left;
	text-align: left;
	position: relative;
}

#menu-user ol,
#menu-user ol ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu-user li:first-child {
	border-left: 1px none;
	padding: 1px 6px 4px 0;
}

#menu-user li {
	border-left: 1px dotted #aaa;
	float: left;
	line-height: 1.2em;
	margin: 0 .5em 0 -.5em;
	padding: 0 .5em 0 .5em;
	white-space: nowrap;
}

#menu-user ol ul li {
	border-left: 0;
}

#menu-user li:first-child.active {
	margin-left: -6px;
	padding-left: 6px;
}

#menu-user li.active {
	font-weight: 600;
	background: #439ce8 linear-gradient(to bottom, #43ace8, #4383e8) repeat-x;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

#menu-user li a {
	display: inline;
	border: none;
	text-decoration: none;
}

#menu-user li a:visited {
	color: #003399;
}

#menu-user li a:hover {
	color: #B90022;
	text-decoration: underline;
}

#menu-user li a:active {
	color: #FF0000;
}

#search_box {
	margin: 2px auto 0;
	overflow: hidden;
	float: right;
	text-align: left;
	position: relative;
}

#search_box label {
	display: none;
}

#header-top {
	margin: 0 auto 0;
	overflow: hidden;
	float: left;
	text-align: left;
	position: relative;
	0font-size: 1.3em;
}

#login-box {
	0font-size: 12px;
	margin: 0 auto 0;
	overflow: hidden;
	float: right;
	text-align: left;
	position: relative;
}

#login-box form {
	display: inline;
}

#login-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#login-box li {
	border-left: 1px solid #aaa;
	float: left;
	line-height: 1.2em;
	margin: 0 .5em 0 -.5em;
	padding: 0 .5em 0 .5em;
	white-space: nowrap;
}

#login-box li a {
	display: inline;
	border: none;
	text-decoration: none;
}

#login-box li a:visited {
	color: #003399;
}

#login-box li a:hover {
	color: #B90022;
	text-decoration: underline;
}

#login-box li a:active {
	color: #FF0000;
}

/* temp */
.topnav {
	float: right;
	font-size: 0.6875em;
	margin-top: 0.9375em;
}

.topnav ul,
.topnav li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.topnav ul {
	display: block;
}

.topnav li {
	display: inline;
	margin-right: 1.1em;
}

/*search*/
.highlight {
	background-color: #ffffaa;
	font-style: normal;
	font-weight: bold;
}

#search_results li {
	margin: 1em 0;
}

#search_results li div {
	/*padding-left: 20px;*/
}

#search_results h3 {
	font-size: 14px;
	border-bottom: 0 none;
}

/* lists */
.ul_list,
.revisions {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.ul_list ul {
	list-style-type: none;
	padding-left: 20px;
}

.ul-letters {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.ul-letters ul {
	list-style: none outside none;
	margin: 0;
	padding: 0;
}
.ul-letters li {
	border-left: 1px dotted #AAAAAA;
	float: left;
	line-height: 1.2em;
	margin: 0 0.5em 0 -0.5em;
	padding: 0 0.5em;
	white-space: nowrap;
}

.ul-letters li.active   {
	background: #CCFFCC;
}

/* settings */
.lined td,
.lined th {
	border-bottom: 1px dotted #BABFC7;
}

.separator {
	border-bottom: 1px solid #cfd6d9;
	padding-bottom: 20px;
}

.tree {
	text-align: left;
	list-style: none outside none;
	margin: 0;
	padding: 0;
}

.forum tbody:hover,
.revisions li:hover,
.lined li:hover,
.lined tr:hover,
tr.lined:hover,
li.lined:hover {
	background: #f4f4f4;
}

.page_settings {
	float: left;
	width: 60%;
}
.page_tools {
	float: right;
	padding: 0 10px 10px 10px;
}

.menu
{
	list-style: none outside none;
	float: right;
	margin: 0;
	padding: 0;
}

.menu li:first-child {
	border-left: 1px none;
}

.menu0 li {
	border-left: 1px dotted #CCCCCC;
	float: left;
	line-height: 1.2em;
	margin: 0 0.5em 0 -0.5em;
	padding: 0 0.5em;
	white-space: nowrap;
}

.menu li.active {
	/* background: none repeat scroll 0 0 #CCFFCC; */
	font-weight: bold;
}

/* news / blog extension ******************************************* */
.news {
	float: left;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

article.newsarticle:hover {
	background: #E7F9FF;
}

.newstitle {
	font-size: 14px;
	font-weight: bold;
	border: 0 solid red;
	border-left-width: 4px;
	margin-top: 10px;
	padding-left: 9px;
}

.newsinfo {
	color: #666666;
	margin: 4px 0 6px;
}

.newsinfo span {
	border-bottom: 1px dotted;
}

.newsmeta {
	border-bottom: 1px dotted #666666;
	height: 25px;
	margin-top: 20px;
}

.pagination {
	float: right;
}

table.formation {
	background-color: #EDEDED;
	border: 1px solid #CDCDCD;
	border-spacing: 3px;
	border-collapse: separate;
}
table.formation th,
tr.formation th {
	background-color: #DDDDDD;
	letter-spacing: normal;
	border: 1px solid #CDCDCD;
}

table.formation td {
	padding: 3px;
}

/* infoboxes -----------------------------------------*/
.nb td,
.fyi td,
.inf td {
	padding: 5px;
	height: 40px;
	background-color:#F0F8FF;
}
.nb .text,
.fyi .text,
.inf .text {
	padding-left: 10px;
	border-top: none;
	border-bottom: none;
}
.nb .sign,
.fyi .sign,
.inf .sign {
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	width: 20px;
	border: none;
	border-right: 1px solid;
}
.nb .sign {
	color: #CC0000;
	font-family: Arial, Helvetica, sans-serif;
}
.nb .sign,
.nb .text {
	border-color: #CC0000;
}
.fyi .sign {
	color: #00AACC;
	font-family: "Times New Roman", Times, serif;
}
.fyi .sign,
.fyi .text {
	border-color: #00AACC;
}
.inf .sign {
	color: #00BFFF ;
	font-family: "Times New Roman", Times, serif;
}
.inf .text {
	color: #6A7387;
}
.inf .sign,
.inf .text {
	border-color: #BABFC7;
}

/* revisions */
.rev-version {
	display: inline-block;
	width: 40px;
}

.rev-size {
	display: inline-block; 
	width: 130px;
}

.diff-zero {
	background-color: #eee;
	color: #777;
	font-style: italic;
}

.diff-pos {
	background-color: #efe;
	color: #008800;
}

.diff-neg {
	background-color: #fee;
	color: #c00;
	font-style: italic;
}

/* menus -----------------------------------------*/

#menu-global {
	float: right;
	margin: 4px 30px 0 0;
}

#menu-global ol {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}
#menu-global li {
	display: inline-block;
	font-size: smaller;
	font-weight: bold;
	padding: 0 5px;
}
#menu-global a {
	border: medium none;
	color: #babdb6;
	display: inline;
	padding: 0;
	text-decoration: none;
}
#menu-global a:link {
	color: #babdb6;
}
#menu-global a:visited {
	color: #babdb6;
}
#menu-global a:hover {
	color: #b90022;
	text-decoration: underline;
}

#handler1 {
	/* clear:both; */
	float: right;
	margin: 0 auto;
	text-align: left;
	z-index: 1000;
	position: relative;
}
#handler1 ul {
	list-style: none outside none;
	float: right;
	position: relative;
	margin: 0;
	padding: 0;
}

#menu-user ol li,
#handler1 ul li {
	display: block;
	0float: left;
	position: relative;
	margin: 0;
	padding: 1px 6px 4px;
	white-space: nowrap;
}

#menu-user ol li a,
#handler1 ul li a {
	display:block;
}

#handler1 li.search{
	padding-bottom: 0;
}

#handler1 li:hover {
	/* background-color: #FFFFFF; */
}

#handler1 li.active {
	border: 1px solid #AAAAAA;
	border-bottom-width: 0;
	background-color: #FCFCFC;
}

#handler1 ul ul li.active {
	border: 1px solid #AAAAAA;
	border-right-color: #CCCCCC;
	border-bottom: 0 #CCCCCC;
	background-color: #FCFCFC;
}

/* submenu items */
#menu-user ol ul, 
#handler ul ul {
	display: none; /* Sub menus are hidden by default */
	position: absolute;
	background: none repeat scroll 0 0 white;
	padding-top: 4px !important;
	left: -1px;
	right: auto;
	width: auto;
	border: 1px solid #CCCCCC;
	border-top-width: 0;

}
#menu-user ol ul a,
#handler1 ul ul a {
	background: none repeat scroll 0 0 transparent;
}

.dropdown_arrow {
	font-size: 85%;
	text-decoration: none;
}

#menu-user ol ul li,
#handler1 ul ul li {
	left:auto;  /*resets the left: on the parent li */
	margin:0; /* Reset the 1px margin from the top menu */
	clear:left;
	width:100%;
	padding: 0 20px 0 0;
	white-space: nowrap;
	vertical-align: baseline;
}

#menu-user ol ul li.active,
#handler1 ul ul li.active {
	padding: 0;
}

#menu-user ol ul li a,
#menu-user ol li.active li a,
#menu-user ol li:hover ul li a,
#menu-user ol ul li.active span,
#handler1 ul ul li a,
#handler1 ul li.active li a,
#handler1 ul li:hover ul li a,
#handler1 ul ul li span {
	background: none repeat scroll 0 0 transparent;
	display: block;
	float: left;
	font-weight: normal;
	line-height: 1.4em;
	width: 100%;
	margin: 0;
	padding: 0.25em 20px 0.2em 0.5em;
}

#handler1 ul ul li.active {
	margin-left: -1px;
}

/* make the sub menus appear on hover */
#menu-user ol li:hover ul,
#handler1 ul li:hover ul {
	display: block; /* Show the sub menus */
	z-index: 20;
}
	
#handler1 #more-icon {
}

.submenu {
	margin: 2px 2px 2px 0;
	padding: 0.4em 0.5em;
	background-color: #acacac;
}


.page_handler{
	list-style: none;
}

.page_handler img,
.page_handler a img,
#handler1 img,
#handler1 a img,
#handler1 span img {
	border: medium none;
	height: 16px;
	width: 16px;
}

.page_handler img {
	padding: 2px 5px 2px 0;
}

li.m-new img {
	background: url('./../icon/page-add.svg') no-repeat;
}
li.m-categories img {
	background: url('./../icon/tag.svg') no-repeat;
}
li.m-attachments img {
	background: url('./../icon/attachment.svg') no-repeat;
}
li.m-upload img {
	background: url('./../icon/upload.svg') no-repeat;
}
li.m-clone img {
	background: url('./../icon/copy.svg') no-repeat;
}
li.m-edit img {
	background: url('./../icon/edit.svg') no-repeat;
}
li.m-referrers img {
	background: url('./../icon/link.svg') no-repeat;
}
li.m-revisions img {
	background: url('./../icon/revisions.svg') no-repeat;
}
li.m-remove img {
	background: url('./../icon/page-delete.svg') no-repeat;
}
li.m-purge img {
	background: url('./../icon/purge.svg') no-repeat;
}
li.m-rename img {
	background: url('./../icon/edit.svg') no-repeat;
}
li.m-properties img {
	background: url('./../icon/properties.svg') no-repeat;
}
li.m-permissions img {
	background: url('./../icon/permission.svg') no-repeat;
}
li.m-show img {
	0background: url('./../icon/show.svg') no-repeat;
}
li.m-moderate img {
	background: url('./../icon/comment.svg') no-repeat;
}
li.m-print img {
	background: url('./../icon/print.svg') no-repeat;
}
li.m-xml img {
	background: url('./../icon/xml.svg') no-repeat;
}
li.m-word img {
	background: url('./../icon/document.svg') no-repeat;
}
li.m-source img {
	background: url('./../icon/text.svg') no-repeat;
}

.desc_rss_feed {
	float: right;
	margin-right: 20px;
}

.review1 img,
.review2 img,
.watch-off img,
.watch-on img {
	border: medium none;
	height: 16px;
	width: 16px;
}
.watch-off img {
	background: url('./../icon/watch-off.svg') no-repeat;
}
.watch-on img {
	background: url('./../icon/watch-on.svg') no-repeat;
}

.review1 img {
	background: url('./../icon/review1.svg') no-repeat;
}
.review2 img {
	background: url('./../icon/review2.svg') no-repeat;
}

.btn-reload {
	background: url('./../icon/reload.svg') no-repeat;
	background-size: 22px 22px;
	height: 22px;
	width: 22px;
	display: inline-block;
}
.btn-menu {
	background: url('./../icon/menu.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-addbookmark {
	background: url('./../icon/bookmark.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-removebookmark {
	background: url('./../icon/bookmark-remove.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-delete {
	background: url('./../icon/delete.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-edit {
	background: url('./../icon/edit.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-feed {
	background: url('./../icon/feed.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-info {
	background: url('./../icon/dialog-info.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-tick {
	background: url('./../icon/tick.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-warning {
	background: url('./../icon/warning.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-add_page {
	background: url('./../icon/page-add.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-page {
	background: url('./../icon/show.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-comment {
	background: url('./../icon/comment.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-attachment {
	background: url('./../icon/attachment.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-upload {
	background: url('./../icon/upload.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-unlocked {
	background: url('./../icon/unlocked.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.btn-locked {
	background: url('./../icon/locked.svg') no-repeat;
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}

.viewed {
	font-weight: 600;
}

.list_count {
	text-align: right; 
	width: 30px; 
	float: left; 
	padding-right: 10px;
}

.userprofile {
	border-spacing: 3px; 
	border-collapse: separate;
}

.userprofile th{
	color: #444444;
	font-weight: bold;
	width: 100px;
	white-space: nowrap;
	vertical-align: top;
	padding-right: 20px;
	text-align: left;
}

ul.upload,
ul.upload ul {
	list-style-type: none;
	padding: 0;
}

.upload li {
	display: block;
	overflow: hidden;
	padding-bottom: 5px;
	text-align: left;
	overflow-wrap: break-word;
}

.info_title {
	display: block;
	float: left;
	text-align: left;
	width: 130px;
}

/* forum extension ******************************************* */

table.forum {
	border: 0 none;
	margin: 0;
	padding: 0;
	width: 100%;
	border-spacing: 3px;
	border-collapse: separate;
}

table.forum th {
	font-size: 12px;
	text-align: center;
	white-space: nowrap;
	padding: 5px;
}

table.forum td {
	padding: 5px;
}
.forum tr.topic {
	background-color: #f9f9f9;
}

.forum tr.topic:hover {
	background-color: #E7F9FF;
}

#newtopic:target {
	background-color: #ffeeee;
}

/* categories tag ------------- */
.tag {
	/* background: #f0f4f5; */
	background: white none repeat scroll 0 0;
	border: 1px solid lightgray;
	border-radius: 3px;
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	margin: 2px 2px 2px 0;
	padding: 0.4em 0.5em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

.tag:hover {
	/* background: #e7f9ff none repeat scroll 0 0; */
}

/* system message ------------- */
.sysmessage {
	background: rgba(51, 51, 51, 0.9) none repeat scroll 0 0;
	bottom: 0;
	color: #ccc;
	left: 0;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 5000;
	padding: 20px 0 20px 20px;
}

@keyframes marquee {
	0%   { text-indent: 800px; }
	100% { text-indent: -800px; }
}
.marquee{
	animation: marquee 50s linear infinite;
	font-weight: 800;
	white-space: nowrap;
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
}

.marquee:hover {
	animation-play-state: paused;
}

/* noscript ------------- */
.errorbox_js {
	border: 1px solid red;
	font-family: "Courier New",Courier,monospace;
	margin: 0.5em 0;
	padding: 1em 0.5em;
	text-align: center;
}


/* category handles ------------- */
.set_category {
	border: 1px solid #eeeeee;
/*	font-size:11px; */
	max-height: 400px;
	padding: 10px 0;
	margin-bottom: 27px;
	overflow: auto;
	width: auto;
}

.set_category legend {
	color: #444444;
}

.category_browser {
	width: 100%;
}

/* TODO: vertical-align: middle; for input and label */
.category_browser td {
	vertical-align: top;
}

.item-multiplier-x,
.item-multiplier-count {
	color: #767676;
}

.hide_radio input[type="radio"] {
	visibility: hidden;
	/* display: none; */
}

.hide_radio li:hover input[type="radio"], 
.hide_radio li input[type="radio"]:checked
{
	visibility: visible;
	/* display: inline; */
}

/* authors action ------------- */
.license-CC-BY {
	background-image:	url('../../../image/cc-by.svg');
	background-repeat:	no-repeat;
	background-position:	0;
	height:	22px;
	width:	22px;
}
.license-CC-ZERO {
	background-image:	url('../../../image/cc-zero.svg');
	background-repeat:	no-repeat;
	background-position:	0;
	height:	22px;
	width:	22px;
}
.license-PD {
	background-image:	url('../../../image/cc-pd.svg');
	background-repeat:	no-repeat;
	background-position:	0;
	height:	22px;
	width:	22px;
}
.license-CC-BY-SA {
	background-image:	url('../../../image/cc-by.svg'),
						url('../../../image/cc-sa.svg');
	background-repeat:	no-repeat,
						no-repeat;
	background-position:	0,
							22px;
	height:	22px;
	width:	44px;
}
.license-CC-BY-ND {
	background-image:	url('../../../image/cc-by.svg'),
						url('../../../image/cc-nd.svg');
	background-repeat:	no-repeat,
						no-repeat;
	background-position:	0,
							22px;
	height:	22px;
	width:	44px;
}
.license-CC-BY-NC {
	background-image:	url('../../../image/cc-by.svg'),
						url('../../../image/cc-nc.svg');
	background-repeat:	no-repeat,
						no-repeat;
	background-position:	0,
							22px;
	height:	22px;
	width:	44px;
}
.license-CC-BY-NC-SA {
	background-image:	url('../../../image/cc-by.svg'),
						url('../../../image/cc-nc.svg'),
						url('../../../image/cc-sa.svg');
	background-repeat:	no-repeat,
						no-repeat,
						no-repeat;
	background-position:	0,
							22px,
							44px;
	height:	22px;
	width:	66px;
}
.license-CC-BY-NC-ND {
	background-image:	url('../../../image/cc-by.svg'),
						url('../../../image/cc-nc.svg'),
						url('../../../image/cc-nd.svg');
	background-repeat:	no-repeat,
						no-repeat,
						no-repeat;
	background-position:	0,
							22px,
							44px;
	height:	22px;
	width:	66px;
}

/* diff handler ------------- */
.diffbtn {
	/*background-color: #4CAF50;*/
	/*color: white;*/
	padding: 2px 6px;
	font-size: 12px;
	border: none;
	cursor: pointer;
}

.diffdown {
	position: relative;
	display: inline-block;
}

.diffdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.diffdown-content a {
	color: black;
	padding: 2px 6px;
	text-decoration: none;
	display: block;
}

.diffdown-content a:hover {background-color: #f1f1f1;}

.diffdown-content span {
	display: inline-block; 
	width: 40px;
}

.diffdown:hover .diffdown-content {
	display: block;
}

.diffdown:hover .diffbtn {
	background-color: #3e8e41;
}

/*begin of wacko.css*/
/* Wiki Formatting ---------------------------------------- */

/* Definitions: SYNTAX (?icq i seek you?) */
dfn {
	font-variant: small-caps;
	letter-spacing: 0.1em;
	font-style: normal;
	cursor: help;
	border-bottom: 1px dotted #000;
}

/* Strike through text: SYNTAX --text-- */
del { color: #999999; }

del a:visited,
del a:link { color: #999999; }


/* Horizontal rule: SYNTAX ---- */
hr {
	border: 0 none #CCCCCC;
	border-top: 1px solid #CCCCCC;
}

/* No line break */
.nobr {white-space: nowrap;}

/** List-related *************************************************************/

/* SYNTAX "  *", "  1.", etc. */

ul, ol {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

/** Header related ***********************************************************/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	/* position: relative; */
}

/* SYNTAX ==, ===, ====, =====, ======, ======= */

h1 {
	font-family: Verdana, sans-serif;
	font-size: 24px;
	padding-top: 5px;
	padding-bottom: 7px;
	line-height: 110%;
	color: #235e9a;
}
h2 { font-family: Verdana, sans-serif; font-size: 20px; margin-top:20px; margin-bottom:5px; border-bottom:3px dotted #ddd; color: #204a87;}
h3 { font-family: Verdana, sans-serif; font-size: 17px; margin-top:15px; margin-bottom:5px; border-bottom:2px dotted #ddd;}
h4 { font-family: Arial, sans-serif;   font-size: 16px; margin-top:15px; margin-bottom:5px; border-bottom:1px #999999 solid;}
h5 { font-family: Arial, sans-serif;   font-size: 14px; margin-top:10px; margin-bottom:5px; border-bottom:1px #bbbbbb solid;}
h6 { font-family: Arial, sans-serif;   font-size: 12px; }

/* Centered text: SYNTAX %%(wacko wrapper=text wrapper_align=center)text%% */
.center{ text-align: center;}

/* Indent text: SYNTAX "  ", "  1.", etc. */
.indent { margin-left: 40px;}

/** Revisions-related *********************************************************/

/* Displays text: "This is an old revision of..." */
.revisioninfo {
	border: 1px solid #d5d9e6;
	color: #cc3333;
	font-weight: bold;
	background: #f4fbff url(./../icon/revisions.svg) no-repeat scroll 10px 10px;
	margin: 10px;
	padding: 10px 10px 10px 40px;
	position: relative;
}

.revision-count {
	display: inline-block;
	width: 40px;
}

.revision-id {
	display: inline-block;
	width: 80px;
}

/* Displays text: "Comparison for..." */
.diffinfo {
	font-weight: bold;
	color: #555555; 
}

/* Simple differences */
.additions {
	background-color: #EEFFEE;
}
.deletions {
	background-color: #FFEEEE;
}
.additions, 
.deletions {
	padding: 3px;
}

/* Default differences */
ins.diff {
	font-weight: bold;
	color: #008800;
	text-decoration: underline;
	background-color: #efe;
}
del.diff {
	font-style: italic;
	color: #c00;
	text-decoration: line-through;
	background-color: #fee;
}

/* Code areas: SYNTAX %%code%% */

.code,
.code-break,
.hl-main pre {
	background: #FCFCFC;
	border: 1px lightgray solid;
	font-family: Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,sans-serif;
	0font-size: 13px;
	margin: 1em 1em;
	overflow: auto;
	padding: 0.25em;
	white-space: pre-wrap;
}

.code-break {
	white-space: pre-wrap;
}

.code code{
	background: #FFFFFF;
}

.notes { color: #888800; }

/** Table-related ************************************************************/

/* Bordered tables: SYNTAX #|| || Here | there || ||# */
.usertable {
	border: 1px none;
	border-collapse: collapse;
	background-color: #FFFFFF;
}

.usertable th {
	background-color: #EEEEEE;
}

.usertable td, 
.usertable th
{
	border: 1px solid #CCCCCC;
	padding: 4px;
	vertical-align: top;
}

.usertable tr:hover {
	background-color: #CCFFCC;
}

/* .usertable > tbody > tr:nth-of-type(2n+1) {
	background-color: #f9f9f9;
} */

/* 100%-width tables: SYNTAX #| || Here | there || |# */
.dtable {
	width: 100%;
	border: 0 none;
	border-collapse: collapse;
	table-layout: fixed;
}
.dtable td { 
	vertical-align: top;
	border: 0 none #999999;
	padding: 4px;
}

/* Inside the table of content: SYNTAX {{toc}} */
#toc {
	margin: 0;
	padding: 0;
	text-align: left;
}
#toc li {
	list-style: none;
	font-weight: bold;
}
#toc li ul {
	padding-left: 15px;
}
#toc li li {
	list-style: none;
	font-weight: normal;
}
span.tocnumber {
	margin-right: 0.3em;
}

/** Email-related ************************************************************/

/* Quoted message on new email */

.email1 {color: #800000;}
.email2 {color: #808000;}
.email-odd {color: #800000;}
.email-even {color: #808000;}

/* Quotes: SYNTAX <[text]> */
blockquote {
	border: 1px solid #f0f0f0;
	border-left: 3px solid #729fcf;
	color: #444444;
	padding: 5px;
	font-family: sans-serif;
	font-style:italic;
	background: #fff7e3; 
}
blockquote p { padding: 0;  margin: 5px 0; }

/* Paragraphs */
p.auto { margin: 0; padding: 0; font-size: 100%; }
.pmark { color: #cccccc; font: 10px Arial; }

.pmark a:link,
.pmark a:visited { color: #cccccc; }

.pmark a:hover,
.pmark a:active  { color: #cc3300; }

.pright {}

.pright .p- { float:right; padding: 0 0 0 15px;  }
.pright .pbody- { }

.pleft { padding: 0; }
.pleft .p- { float: left; padding: 0 15px 0 0;  }
.pleft .pbody- { padding: 0; }

/** Text highlighter-related *************************************************/

/* SYNTAX %%(hl xyz)%% */

.hl-main {font-family: monospace; font-size:13px;}
.hl-gutter {
	background-color: #CCCCCC;
	padding-right: 10px;
	font-family: monospace;
	0font-size: 13px;
}
.hl-table {border: solid 1px #000000; }

.hl-default { color: #000000; }
.hl-code { color: #7f7f33; }
.hl-brackets { color: #009966; }
.hl-comment { color: #7F7F7F; }
.hl-quotes { color: #00007F; }
.hl-string { color: #7F0000; }
.hl-identifier { color: #000000; }
.hl-reserved { color: #7F007F; }
.hl-inlinedoc { color: #0000FF; }
.hl-var { color: #0066FF; }
.hl-url { color: #FF0000; }
.hl-special { color: #0000FF; }
.hl-number { color: #007F00; }
.hl-inlinetags { color: #FF0000; }
.hl-builtin    { color: #996633; }

/** Wrapper-related **********************************************************/

/* SYNTAX %%(wrapper xyz)%% */

/* SYNTAX %%(wrapper xyz)%% */

.wrapper-center {
	margin: 0 auto !important;
}
.wrapper-left {
	float: left;
}
.wrapper-right {
	float: right;
}

div.action,
aside.action {
	margin: 2px;
	background: #f6f7ed;
	border: 1px dotted #CCCCCC;
}
div.action-content { padding: 10px 10px 25px 10px; }

/* Important colored text: SYNTAX !!(red)text!! */
.cl-red {color: #CC0000;}
.cl-green {color: #008000;}
.cl-blue {color: #0000CC;}
.cl-yellow {color: #ffff00;}

/* Fixed width text: SYNTAX ##monospace## */
codew {
	color: #000000; 
		/* color: #c7254e; */
	/*background: #ffffff; 
		 background: #f9f2f4; */
	padding: 1px 5px;
		/* font-size: 90%; */
	font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, sans-serif;
}

/* Important text: SYNTAX !!text!! */
.cite {color: #ff0000; font-style: normal;}

/* underline text: SYNTAX __text__ */
.underline { text-decoration: underline; }

/* Highlighted text: SYNTAX ??text?? */
mark {background: #ffffaa;}

/* Highlighted text: SYNTAX ??(green)text?? */
.mark-yellow {background: #ffff00;}
.mark-green {background: #a0ffa4;}
.mark-blue {background: #9ec6ff;}
.mark-red {background: #ffbaba;}

/* InterWiki links: SYNTAX (HostPrefix:Term) */
a.iw-bugs .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/report-bug.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a.iw-revision .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/commit.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a.iw-source .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/repository.svg') no-repeat scroll left center;
	padding-left: 17px;
}

/* Wiki links: SYNTAX (prefix://) */
span.icon{
/* 	background-size: 16px 16px;*/
	/* ! required for span width -> inline element */
	display: inline-block;
	height: 16px;
	width: 0;
	vertical-align: text-bottom; /* middle */
}

a.external-link .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/web.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a.group-link .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/group.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a.user-link .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/user.svg') no-repeat scroll left center;
	padding-left: 17px;
}

a.file-link .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/file.svg') no-repeat scroll left center;
	padding-left: 17px;
}

a[href^="mailto:"] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/mail.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href^="xmpp:"] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/jabber.svg') no-repeat scroll left center;
	padding-left: 17px;
}

/* lockicon */
a.acl-denied .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/locked.svg') no-repeat scroll left center;
	padding-left: 17px;
}
/* keyicon */
a.acl-customsec .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/unlocked.svg') no-repeat scroll left center;
	padding-left: 17px;
}

/* mime */

a[href $='.pdf'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/pdf.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.epub'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/epub.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.txt'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/text.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.diff'] .icon,
a[href $='.patch'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/patch.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.odt'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/document.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.gif'] .icon,
a[href $='.ico'] .icon,
a[href $='.jpe'] .icon,
a[href $='.jpeg'] .icon,
a[href $='.jpg'] .icon,
a[href $='.png'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/image.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.rdf'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/xml.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.zip'] .icon,
a[href $='.7z'] .icon,
a[href $='.tar'] .icon,
a[href $='.bz2'] .icon,
a[href $='.gz'] .icon,
a[href $='.tgz'] .icon,
a[href $='.rar'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/archive.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.ods'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/spreadsheet.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.odp'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/presentation.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.odg'] .icon,
a[href $='.svg'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/drawing.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.mp3'] .icon,
a[href $='.m4a'] .icon,
a[href $='.ogg'] .icon,
a[href $='.opus'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/audio.svg') no-repeat scroll left center;
	padding-left: 17px;
}
a[href $='.mp4'] .icon,
a[href $='.ogv'] .icon,
a[href $='.webm'] .icon {
	background: rgba(0, 0, 0, 0) url('./../icon/video.svg') no-repeat scroll left center;
	padding-left: 17px;
}
/* end of wacko.css*/

/*============*/
/*  CompoWiki additions */
 .cmd {
	font-family: "Courier New", Courier, monospace; 
	border: solid #888888 2px; 
	padding: 3px; 
    background: #000; 
	color: #eee; 
} 