/*
 * Kunstrasen-Projekt v0.1 TuS Hiltrup 1930 e.V.
 * http://www.kunstrasen-tushiltrup.de/
 *
 * Copyright (c) 2009 Gerhard Jansen, Hagen Gröbner,
 * http://www.gdevelop.de
 * Dual licensed under the MIT and GPL licenses.
 *
 * Document   : jquery.dropdownpanel.css
 * Created on : 14.02.2009, 01:37:50
 * Description: DropDownPanel to display GDevelop commercial
 *
 * $Date: 2009-03-12 00:06:11 +0100 (Do, 12 Mrz 2009) $
 * $Author: gerhard $
 * $Rev: 22 $
 */

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

#dropdownpanel{ /*Outermost Panel DIV*/
    left: 0;
    position: absolute;
    top: 0;
    visibility:hidden;
    width: 100%;
}

#dropdownpanel .contentdiv{ /*Div containing Ajax content*/
    background: black;
    color: white;
    padding: 10px;
}

#dropdownpanel .control{ /*Div containing panel button*/
    background: transparent url("../images/dropdownpanel/panel.gif") center center no-repeat; /*change panel.gif to your own if desired*/
    border-top: 5px solid black;
    color: white;
    font-weight: bold;
    height: 21px; /* 21px + 3 px should equal height of "panel.gif" */
    line-height: 21px; /* 21px + 3px should equal height of "panel.gif" */
    padding-bottom: 3px; /* 21px + 3px should equal height of "panel.gif" */
    text-align: center;
}

