/*
* This is the silk style file - here it is the style for the whole site, additional styles must be
* added into the page hierarchy for a cascading style application
*
* The format is very simple, and contains style choices for the header, footer and page.
* Order is critical. Page stuff comes first, then you can specify HEADER and FOOTER, else they will
* default to the page style. 
*
* Style is obviously best left to CSS, so this file does in fact allow raw CSS, it is just that the 
* class names are specific and the backgrounds specified here will be used to compute the rounded 
* corners: so basically - put your CSS stuff here, and silk will show it to the browser.
*
*
* Multiple body.silk blocks give a 'stacking' effect of frames
* Format is "STYLE <background> <text color> <text size> <radius>".
*
*/

/* Overall style for page is set here */
silk {
	background: white;
	text-align: left;
	font-weight: normal;
	font-family:Arial, Helvetica, Geneva, Swiss;
	font-size: medium;
	color: black;
}

silk {
	color: black;
/*	background-color: #ffe; */
	background: url(gradient.png) repeat-x;
}

/* Pushing in one level gives this style */
silk {
	background: url(stars.gif); 
	color: white;
	outside: white;
	radius: 7;
}

/* Pushing in another level gives this style */
silk {
	background: #FFE;
	color: black;
	radius: 5;
}

/* Pushing in another level gives this style */
silk {
	background: #474;
	color: white;
	radius: 5;
}

silk.button {
	/* background: url(blue012.jpg); */
	background: green;
	color: #ffe;
	rcolor: #00a;
}

/* The HEADER and FOOTER block uses this style */
silk.header {
	background: url(stars.gif) black; 
	color: #ffe;
	radius: 7;
	text-align: center;
	font-size: large;
}

/* a:active { color:white; background:transparent; } */
a img { border:0; }

div.nav {
	background:green;
	color:white;
	padding:2px 4px 1px 4px;
	border: solid 1px green;
	border-color: lightgreen darkgreen darkgreen lightgreen; /* top, right, bottom, left */
	cursor:pointer;
}
div.nav a { color:white; text-decoration:none; }
div.nav a:hover { color:silver; }

/*** The current directory you are (peer) in or disabled */
div.nav-r {
	color:green;
	background:white;
	padding:2px 4px 1px 4px;
	border: solid 1px green;
	border-color: darkgreen lightgreen lightgreen darkgreen; /* top, right, bottom, left */
	cursor:pointer;
}
div.nav-r a { color:green; text-decoration:none; }


/*
a:active {
	color: white; 
}
silk.nav a:active, silk.nav a:visited {
	color: yellow;
}
*/

