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

/* dokuwiki containers & styles */

@media screen {

/* sidebar orientation and position */
#sidebar {
        width:20%;
        padding:0;
        margin-top:10px;
        margin-bottom:10px;
}

.sidebar_inside_left #sidebar {
        float:left;
}

.sidebar_inside_right #sidebar {
        float:right;
}

.sidebar_inside_left .page, .sidebar_inside_left .meta {
        float:right;
        width:78%;                      /* also see IE Win fix below */
        margin-right: 1%;
        margin-left:0;
}

.sidebar_inside_right .page, .sidebar_inside_right .meta {
        float:left;
        width:78%;
        margin-left: 1%;
        margin-right: 0;
}

/* sidebar presentation */
/* the following three styles use a faux-column image to place a separating line
   between the sidebar and dokuwiku */
/*
.sidebar_outside_left .dokuwiki, .sidebar_inside_left .dokuwiki {
        background: url(images/sidebar-border.gif) repeat-y 20%;
}

.sidebar_outside_right .dokuwiki, .sidebar_inside_right .dokuwiki {
        background: url(images/sidebar-border.gif) repeat-y 80%;
}
*/

/* sidebar contents */
#sidebar {
        background-color: #d2b48c;
/*	font-size:120%;*/
}

#sidebar ul li a {
/*	display: block; */
	font-weight:bold; 
/*	color: #8b5a2b; */
	color: black;
        text-decoration:none;
	padding: 2px 10px 2px 10px;
}

#sidebar ul li a:hover {
	color: black;
/*	background: #8b5a2b; */
	background: #f4d5af;
        text-decoration:none;
}

/*#sidebar a.wikilink2 {
	color:#999999;
}

#sidebar a.wikilink2:hover {
	text-decoration:none; 
	cursor:default;
}*/

#sidebar h1 {
        display: block;
        border-bottom:none;
	margin-left: 0px; 
	margin-right: 0px;
	padding-left: 10px;
	font-weight:bold;
        margin-bottom: 0;
	padding-top: 0;
	padding-bottom:0;
/*        color: #8b5a2b;*/
        color: black;
	background-color:#f4d5af;
}
/*#sidebar h2 {
	font-size:120%; 
	margin-left: 4px; 
	font-weight:bold; 
	padding-bottom:0;
}
#sidebar h3 {
	font-size:120%; 
	margin-left: 8px; 
	font-weight:normal; 
	padding-bottom:0;
}
#sidebar h4 {
	font-size:100%; 
	margin-left: 12px; 
	font-weight:bold; 
	padding-bottom:0;
}
#sidebar h5 {
	font-size:100%; 
	margin-left: 16px; 
	font-weight:normal; 
	padding-bottom:0;
}*/
#sidebar .toc {
	display:none;
}

} /* end @media screen */

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

