/**
 * Extra styles for navbar template
 *
 * @author Christopher Smith <chris@jalakai.co.uk>
 */

/* dokuwiki containers & styles */

@media screen {

/* navbar orientation and position */
div.dokuwiki div#navbar {
  margin: 0;
  background-color: __background_alt__;
  text-decoration: none;
  line-height: 1.8em;
  padding: 0;
}

div.dokuwiki #navbar a {
  color: __text_alt__ !important;
  line-height:1.8em;
}
	
div.dokuwiki #navbar a:hover {
  color: __text__ !important;
  text-decoration: underline;
}

div.dokuwiki #navbar h1 {
	font-size:100%; 
	margin-left: 0px; 
	padding-left: 2px; 
	font-weight:bold; 
	padding-bottom:0; 
}
div.dokuwiki #navbar h2 {
	font-size:100%; 
	margin-left: 4px; 
	font-weight:bold; 
	padding-bottom:0;
}
div.dokuwiki #navbar h3 {
	font-size:100%; 
	margin-left: 8px; 
	font-weight:normal; 
	padding-bottom:0;
}
div.dokuwiki #navbar h4 {
	font-size:100%; 
	margin-left: 12px; 
	font-weight:bold; 
	padding-bottom:0;
}
div.dokuwiki #navbar h5 {
	font-size:100%; 
	margin-left: 16px; 
	font-weight:normal; 
	padding-bottom:0;
}
div.dokuwiki #navbar .toc {
	display:none;
}

/* reduced section indentation */
div.dokuwiki #navbar div.level1 {margin-left: 0}
div.dokuwiki #navbar div.level2 {margin-left: 0}
div.dokuwiki #navbar div.level3 {margin-left: 0}
div.dokuwiki #navbar div.level4 {margin-left: 0}
div.dokuwiki #navbar div.level5 {margin-left: 0}

#navbar li, #navbar li div {display: inline; height: 0}
div.dokuwiki #navbar li {margin-right: 12px}
	
/* unordered lists */
div.dokuwiki #navbar ul {
  padding: 6px;
  margin: 0;
  list-style:none;
  list-style-type: none;
  list-style-image: none;  
}
	
/* IE fixes (hide from IE Mac) \*/

* html .page .toc {height:1px}    /* General Dokuwiki fix. IE needs this to always display TOC contents \*/
* html pre {width:95%;}           /* General Dokuwiki fix - very important for Sidebar. IE needs this to get the overflow:auto style to kick in \*/
* html .stylehead {height:1px;}   /* Get IE in hasLayout mode to ensure the background covers the whole element \*/

* html .navbar_inside_left .page, * .navbar_inside_right .page, 
* html .navbar_inside_left .meta, * .navbar_inside_right .meta {
    width: 77%;                   /* IE needs extra gap to ensure #navbar & .page float next to each other \*/
	overflow-x: auto;             /* IE proprietary property to prevent wide images in wiki page forcing navbar down below wiki page \*/
                                  /* 'overflow-x:auto;' maybe replaced by 'overflow:auto;' to ensure template passes w3c validation \*/
}

/* (end IE Mac hiding) */

} /* end @media screen */

/* prevent the navbar being included when printing wiki pages */
@media print {
	div.dokuwiki #navbar {display:none;}
}

