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

/* dokuwiki containers & styles */

@media screen {

/* navbar orientation and position */
div#navbar {
	margin:0; 
	background-color: #F5F5F5;
	TEXT-DECORATION: none;
	line-height: 1.8em;
	padding: 0;
}

#navbar a {color: #999999; line-height: 1.8em}
	
#navbar a:hover {
	color: #000000;
	text-decoration:underline
}

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

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

#navbar li, #navbar li div {DISPLAY: inline; HEIGHT: 0}
#navbar li {MARGIN-RIGHT: 12px}
	
/* unordered lists */
#navbar ul {
  PADDING: 6px;
  MARGIN: 0;
  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 {
	#navbar {display:none;}
}

