@charset "UTF-8";

/*
Basisfarben:

Dunkel: #339071
Mittel: #5dab93
Hell:   #b4dfd3
*/

@import url(global.css);

@media all
{
	/* Header */
	#header
	{
		background: #339071;
	}
	
	#header_image
	{
		background: url(../images/header.jpg) no-repeat left top;
	}
	
	/* Sidebar */
	#sidebar h2
	{
		background-color: #339071;
	}
	
	#sidebar li li.active
	{
		background-color: #b4dfd3;
		color: #444444;
	}
	
	/* Seitentitel */
	#pagetitle
	{
		background-color: #339071;
	}
	
	/* Links */
	a
	{
		color: #000000;
	}

	a:hover
	{
		text-decoration: none;
		color: #339071;
	}
    
    /* Sonstiges*/
    .required
    {
        color: #FF0000;
    }
    
    /* Benutzersuche */
    .user-search
    {
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #000;
        width: 300px;
    }
    
    .user-search ul
    {
        list-style: none;
        padding: 0;
        margin: 5px;
    }
    
    .user-search ul li
    {
        border-bottom: 1px solid #ccc;
        padding: 3px;
        cursor: pointer;
    }
    
    .user-search ul li:hover
    {
        background: #B4DFD3;
    }
}