/***************************************************************************\
  *************************************************************************
	Global settings
	Setting these colors / fonts changes the overall look of all interparts
	components unless overridden in "Local settings" or "Individual settings"
	
	Note:
	Some attributes allow "transparent" colors, please set the appropriate
	value to 'transparent', not to 'none' (in the latter case the color
	will be filled with a default value, defined in a more general style
	declaration in this file)
  *************************************************************************
\***************************************************************************/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
 * COLORS CAN BE IN THE #RRGGBB FORMAT OR CAN USE ONE  *
 * OF THE FOLLOWING 17 NAMES:                          *
 * black   = "#000000"    green  = "#008000"           *
 * silver  = "#c0c0c0"    lime   = "#00ff00"           *
 * gray    = "#808080"    olive  = "#808000"           *
 * white   = "#ffffff"    yellow = "#ffff00"           *
 * maroon  = "#800000"    navy   = "#000080"           *
 * red     = "#ff0000"    blue   = "#0000ff"           *
 * purple  = "#800080"    teal   = "#008080"           *
 * fuchsia = "#ff00ff"    aqua   = "#00ffff"           *
 *                                                     *
 * transparent = the name says it all	                 *
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
	The '*' declaration defines the default look.
	It is used in
	- TOOLBAR
	- TREE (UNSELECTED items)
	- TABLE (UNSELECTED items)
  ---
  interparts applets use these properties:
  - color
  - font-family
  - font-size
	- font-weight
	- font-style
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
* {
	font-family: Verdana, Sans-Serif, Helvetica, Arial;
	font-size: 11px;
/*	font-style: italic;/**/
/*	font-weight: bold;/**/
	color:#606060; /* belenus blue */
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
	The 'body' declaration defines the default
	background color.
	It is used in
	- TOOLBAR
	- TREE (UNSELECTED items)
	- TABLE (UNSELECTED items)
  ---
  interparts applets use these properties:
  - background-color
  
  the interparts main frameset border color 
  use the property
  -	border-color
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	background-color: #ffffff;
	border-color: #808080;/**/
/*	border-color: #2f4f4f;/**/
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The '.unselected:hover' defines the look of unselected
  items when the mouse moves over them in
  - TREE (MOUSE OVER UNSELECTED items)
  - IMAGEVIEW (MOUSE OVER hotspots use the 'color' attribute)
  ---
  interparts applets use these properties:
  - color
  - background-color
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.unselected:hover {
  color:#606060
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The '.selected' declaration defines the look of
  selected items which can appear in
  - TREE (SELECTED items)
  - TABLE (SELECTED items)
  - IMAGEVIEW (SELECTED hotspots use background-color)
  - IMAGEVIEW TOOLTIPS (called HINTS)
  ---
  interparts applets use these properties:
  - color
  - background-color
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.selected {
	background-color:#606060;
  color:#ffffff;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The '.selected:hover' defines the look of selected
  items when the mouse moves over them in
  - TREE (MOUSE OVER SELECTED items)
  ---
  interparts applets use these properties:
  - color
  - background-color
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.selected:hover {
background-color:#d6d6d6;
color:#ffffff
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The following declarations define the look of LINKS.
  Used in
  - Top (Info, Help, Search, Basket links)
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
a {
	text-decoration:none; /* so links are not underlined */
}
a:hover {
	background-color:none;
  color:#000000;
}


/***************************************************************************\
  *************************************************************************  
	Local settings
  If set, they override the "Global settings". The "Local settings" are
  more fine-grained than the "Global settings". If this still is not
  fine-grained enough, look at the "Individual settings".
  *************************************************************************  
\***************************************************************************/

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The following declarations define the look of the
  HISTORYBAR, which displays the currently selected
  tree item and offers navigation buttons '<' '>' '^'
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.infoBar, .historyBar {
  	color:#ffffff;
    background-color:#808080;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The following declarations define the look of the
  WELCOME PAGE
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.welcome {
	background-color:#FFFFFF;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The following declarations define the look of the
  IMAGE TOOLBAR frame
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.toolbar {
	background-color:#d6d6d6;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The following declarations define the look of the
  HTML_NAVBAR;
  'background-color' is also used for the table header,
  if not overwritten in '#tableHeader'
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.header {
	background-color:#fff;
	border-left-color:#ff0000;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
 The following declaration defines the look of
 DROP DOWN BOXES (like the one in the top bar)
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
option, select {
/*	font-size:12px;*/
	background-color:#d6d6d6;/*transparent;/**/
	color:#606060;/**/
	margin-bottom:2px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
 The following declaration defines the look of the
 pseudo BUTTONS IN THE TOP BAR - propably the only things
 you want to change here is the "button 3d style color"
 which is set in the 2 properties
 - border-top-color
 - border-left-color
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.tab {
	border-top-color:#606060; /* belenus blue */
	border-left-color:#606060; /* belenus blue */
	border-right-color:#606060; /* belenus blue */
	border-bottom-color:#606060; /* belenus blue */
	border-left-width:1px;
	border-top-width:1px;
	border-right-width:1px;
	border-bottom-width:1px;
	border-style:solid;
	margin-bottom:3px;
	background-color:#e6e6e6;
	background-image:none;
	font-weight:bold;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
 The following declaration defines the general look of
 the "SHOPPING BASKET STATE ICON" (in the top bar). The
 only thing you want to configure here is propably the
 color in the attribute
 - border
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#shopIcon {
	border:1px solid #006400;
	vertical-align:middle;
	width:7px;
	height:7px;
	overflow:hidden;
	margin-left:1px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
 The following declaration defines the look of the
 "SHOPPING BASKET STATE ICON" when no item is in the
 basket. The only thing you want to configure here is
 propably the
 - background-color
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.inactiveShopIcon {
	background-color:green;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
 The following declaration defines the look of the
 "SHOPPING BASKET STATE ICON" when items are in the
 basket. The only thing you want to configure here is
 propably the
 - background-color
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.activeShopIcon {
	background-color:red;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The color of the flashing basket button, 
  if you add something to the basket.
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#flashingLight {
  background-color:#808080;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
  The color of the order button, at the last
  step, in the basket
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#hotOrderButton {
  background-color:#FFA07A;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
 The following declaration defines the look of the
 "TOOLBAR BUTTON ICON" the space between the single buttons
 The only thing you want to configure here is
 propably the
 - margin-right
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.toolbarBtn {
	margin-right:2px;
	margin-top:2px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++*\
 The following declaration defines the look of the
 "Info window content block" 
\*+++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.infoPageContent {
	width:280px;
	height:360px;
	text-align:center;
	border-width:1px;
	border-style:solid;
	margin-left:10px;
	margin-top:5px;
}


/***************************************************************************\
  *************************************************************************
	Individual settings
	-------------------
  These settings override the "Global settings" and "Local settings".	The
  elements of this section can be set, if the	look of singular elements
  should differ from the standard	settings defined in the "Global settings"
  and "Local settings". The properties which can be set here are (depending
  on the particular element - see leading comment)
	- color
	- background-color
	- border-color
	- font-family
	- font-size
	Just try it out - they are not commented, but should be self-explaining
  *************************************************************************
\***************************************************************************/

/* this properties are used by the searchfield & the dropdown box in the html_navbar.html,
    if they are visible
*/
.searchFastStart {
  background-color:#ffffff;
  font-size:9px;
  height:18px;
	border-top-color:#34679f; /* belenus blue */
	border-left-color:#34679f; /* belenus blue */
	border-right-color:#34679f; /* belenus blue */
	border-bottom-color:#34679f; /* belenus blue */
	border-left-width:1px;
	border-top-width:1px;
	border-right-width:1px;
	border-bottom-width:1px;
	border-style:solid;
}

/* valid: color, background-color, font-family, font-size, background-image, background-attachment, background-repeat */
#treeDefault {
  color:#000000;
}
/* valid: color, background-color */
#treeSelected {
  background-color:#606060;
  color:#ffffff;
}
/* valid: color, background-color */
#treeDefault:hover {
  color:#606060;
}
/* valid: color, background-color */
#treeSelected:hover {
  background-color:#606060;
  color:#d6d6d6;
}


/* valid: color, background-color, border-color, font-family, font-size, font-weight */
#tableDefault {
  background-color:#d6d6d6;
	/*font-weight: bold;/**/
}
/* valid: color, background-color, border-color */
#tableHeader {
  background-color:#d6d6d6;
  color:#606060;
}
/* valid: color, background-color */
#tableSelected {
  background-color:#eeeeee;
  color:#606660
}
/* valid: color, background-color, border-color */
#tableTooltip {
  background-color:#eeeeee;
  color:#606660;
  border-color:#606060;
}


/* valid: color, background-color, font-family, font-size */
#imageViewDefault {
/*	background-color:#ffffff;/**/
}
/* valid: border-color */
#hotspot {
border-color:#FF6060;
}
/* valid: border-color */
#hotspot:hover {
}
/* valid: color, background-color, border-color */
#hint {
  background-color:#d6d6d6;
  color:#606660;
  border-color:#606060;
}
/* valid: color, background-color, border-color */
#imageOverview {
}


/* valid: border-color */
#divider {}

/* valid: backgroud-color*/
#filter {}

/* valid: background-color, color, border-color */
#filterButton {}

/* valid: background-color, text-decoration:underline */
#filterButton:hover {}

/***************************************************************************\
  *************************************************************************
	Settings for logical columns. The properties which can be set here are
	-color
	- background-color
	- font-weight
	- font-style
	- font-family
	- font-size
  *************************************************************************
\***************************************************************************/
#logcol1 {
	font-style:italic;
	font-weight:bold;
}

/* --------------------------------------------------------------- */
/* ---- Dornbracht-spezifische Formate                        ---- */
/* --------------------------------------------------------------- */


body {
	scrollbar-face-color:#F5F5F5;
	scrollbar-highlight-color:#F5F5F5;
	scrollbar-shadow-color:#F5F5F5;
	scrollbar-3dlight-color:#939393;
	scrollbar-arrow-color:#939393;
	scrollbar-track-color:#F5F5F5;
	scrollbar-darkshadow-color:#939393;
}

body,p,td,li,a {
	font-family:Arial,Helvetica,Sans-serif;
	font-size:12px;
	line-height:15px;
	color:#000000;
}

.headline {
	font-family:Arial,Helvetica,Sans-serif;
	font-size:16px;
	line-height:15px;
	font-weight:bold;
	color:#000000;
}

.servnav, .mainnav {
	font-family:Arial,Helvetica,Sans-serif;
	font-size:11px;
	color:#939393;
	font-weight:normal;
	padding-left:9px;
	height:15px;
}
a.servnav:link {text-decoration:none; color:#939393;}
a.servnav:visited {text-decoration:none; color:#939393;}
a.servnav:hover, a.servnav:active {
	text-decoration:none;
	font-weight:normal;
	color:#000000;
	height:15px;
	background-color:#F000E7;
	width:140px;
}
a.mainnav {color: #fff;}

/* Formulare */

input {
width:280px;
font-size:12px;
border-color:#000000;
border-style:solid;
border-width:1px;
background-color:#FFFFFF;
}

.button {
width:140px;
font-size:12px;
border-color:#F5F5F5;
border-style:none;
background-color:#BDBDBD;
}

.radio {
width:20px;
font-size:12px;
border-style:none;
}

.check {
width:30px;
font-size:11px;
border-style:none;
}

select {
width:280px;
font-size:12px;
border-style:solid;
border-color:#000000;
border-width:1px;
background-color:#FFFFFF;
}

textarea {
font-family:Arial,Helvetica,Sans-serif;
font-size:12px;
width:280px;
border-style:solid;
border-color:#000000;
border-width:1px;
background-color:#FFFFFF;
}
.quantity {
width:35px;
}

.basket_preset_address {
  font-size: 10px;
  font-weight:bold;
}

.tender {
  background-color:#d5d5d5;
  color:#ffffff;
  font-size:14px;
  font-weight:bold;
  padding-left: 10px;
  padding-right:10px;
}
