/*
 * (c) 2009 Christoph Böhme <christoph@b3e.net>
 * 
 * This file is part of Novam.
 * 
 * Novam is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Novam is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
 */

body
{ 
	background-color: white; 

	font-family: sans-serif;
}

a:link,
a:visited
{
	color: #729fcf;

	text-decoration: none;
}

a:hover,
a:active
{
	color: #204a87;
	text-decoration: underline;
}

/*
 * Header: title and tools menu
 */

h1,
ul#tools_menu
{
	margin: 0px;

	padding-top: 5px;
	padding-bottom: 5px;

	background-color: #729fcf;
	color: white;

	font-size: 15px;
	font-weight: normal;
}

h1
{
	position: absolute;
	left: 0px;
	top: 5px;
	width: auto;
	height: 15px;
	
	padding-left: 50px;
	padding-right: 50px;

	letter-spacing: 0.5em;

	background-image: url("header_right_edge.png");
	background-position: right center;
	background-repeat: no-repeat;
}

h1 img
{
	position: absolute;
	top: -3px;
	left: 10px;

	width: 25px;
	height: 30px;
}

ul#tools_menu
{
	position: absolute;
	top: 5px;
	right: 0px;
	width: 500px;
	height: 15px;

	padding-left: 0px;
	padding-right: 30px;

	text-align: right;

	background-image: url("header_left_edge.png");
	background-position: left center;
	background-repeat: no-repeat;
}

ul#tools_menu li
{
	display: inline-block;

	padding-left: 20px;
	padding-right: 0px;
}

ul#tools_menu a:link,
ul#tools_menu a:visited
{
	color: white;

	text-decoration: none;
}

ul#tools_menu a:hover,
ul#tools_menu a:active
	{ text-decoration: underline; }

/*
 * Sub menus 
 */

ul#tools_menu > li.SubMenu:hover
{

	padding-left: 5px;
	padding-right: 5px;
	padding-top: 1px;

	border-left: 1px solid black;
	border-right: 1px solid black;
	border-top: 1px solid black;

	color: black;
	background-color: white;
}

ul#tools_menu dl,
ul#tools_menu ul,
ul#tools_menu div
{
	display: none;
	position: absolute;

	right: -1px;
	top: 22px;
	width: 300px;

	border-left: 1px solid black;
	border-right: 1px solid black;

	margin: 0px;
	padding: 8px;

	color: black;

	background-color: white;
	background-image: url("menu_background.png");
	background-position: center bottom;
	background-repeat: no-repeat;
}

ul#tools_menu > li:hover dl,
ul#tools_menu > li:hover ul,
ul#tools_menu > li:hover div
	{ display: block; }
