/****************************************************************************************************
*****************************************************************************************************
Her kommer design-konstanter for layout av easyadminsite.. 
*****************************************************************************************************
*****************************************************************************************************
*****************************************************************************************************/



#container
{
margin: auto; background-image: url(../mid/standard.jpg); background-color: transparent; width: 850px; background-repeat: 
repeat-y; overflow: auto; padding: 
0px; 
}

#containerfoot
{
height: 25px; padding: 0; background-image: url(../btm/standard.jpg); width: 822px; float: left; 
}

#containerfootcontent
{
text-align: center; padding: 0px 70px 5px 0px; font-size: 80%; line-height: 130%; 
}

#containerhead
{
margin: 0; background-image: url(../top/standard.jpg); padding: 0px; height: 105px; width: 812px; 
}

#containerheadcontent
{
font-size: 12px; 
}

#containerheadcontent h1
{
display: none; 
}

#containerheadcontent img
{
margin: 20px 15px 0px 30px; padding: 0; 
}

#globalhead
{
height: 40px; width: 820px; background-color: transparent; 
}

#globalheadcontent
{
padding: 0px 12px 4px 8px; background-color: transparent; 
}

#globalheadcontent h2
{
font-family: Arial, Helvetica, sans-serif; color: #333333; 
}

#globalheadcontent h4
{
color:  #999999; 
}

#nugget
{
background-color: #999999; padding: 1px; 
}

#nuggetcontent
{
background-color:  #FFFFC1; padding: 3px; 
}

#page
{
float: left; width: 670px; color: #4F4F4F; 
}

#pagecontent
{
padding: 22px 5px 0px 20px; background-color: transparent; 
}

#pagecontent a
{
color: #444444; 
}

#pagecontent a:hover
{
color: #7f9db9; 
}

#pagecontent h2
{
color: #7f9db9; 
}

#sidebar
{
float: right; width: 130px; 
}

#sidebarcontent
{
padding: 0px 0px 0px 0px; 
}

.bottom
{
clear: both; 
}

.button
{
background-color: #f5eba6; height: 22px; color:  #993617; border-color:  #993617; 
}

.textfield
{
background-color: #FFFFC1; 
}

body
{
margin: 0; background-image: url(../bg/standard.jpg); background-color: #FFFFFF; 
}

diversevariabler
{
text-align: left; text-align: left; text-align: left; 
}

h2
{
font-size: 23px; 
}

h4
{
font-size: 13px; 
}


/******************************************************************************************
*******************************************************************************************
Her kommer designcss for menyen:
*******************************************************************************************
*******************************************************************************************/


/* Copyright Dynarch.com, 2003-2005.  All Rights Reserved. */

/*
   Note, this file wants to be a sample showing you how to create custom skins.
   Feel free to use it as a starting point. */

/* Import the main layout file.  Several layouts are predefined:

   - hmenu.css          -- standard 2D layout
   - hmenu-extended.css -- facilitates skins like "Office XP" menus
   - hmenu-3d.css       -- facilitates 3D skins suitable for Win98-like menus

   Please note that the URL that you specify in the @import clause is relative
   to the path of this file itself.  Since skin-sample.css is located in the same
   directory as hmenu.css, we can include it directly as "hmenu.css".  If you plan
   to put your custom skins in another directory, then you would need to include
   for instance: "/hmenu/hmenu.css", assuming that "/hmenu/" is the path to your
   DynarchMenu installation, accessible from your server's document root.
*/

@import url("hmenu.css");

/****************************************************
   (1) THE MAIN MENU BAR
*****************************************************/

div.dynarch-horiz-menu {
  /* This is a DIV, container of the horizontal menu bar.
     Please note that if you customize fonts here, the setting will most likely
     be lost in Internet Explorer because tables don't inherit fonts.  Therefore,
     we would better customize fonts in the "table" children. */

  background-color: #fae663;       /* assign a yellow background to the main menu bar */
  border: 1px solid #961502;       /* give it a thick, red border */
  padding:0px;
  margin:0px;
}

div.dynarch-horiz-menu table {
  /* A table is used to layout elements in the main menu bar.
    Here is safe to specify fonts. */

  font: 0.8em arial,sans-serif ; /* set a custom font */
  font-weight: bold;
  color: #666666;                  /* and a custom color */
  margin:0px;
}

div.dynarch-horiz-menu table tr td {
  /* Styles for items in the main menu bar */
  border: 1px solid;
  border-color:#fae663;
}

div.dynarch-horiz-menu table tr td.hover {
  /* Styles for hover items in the main menu bar */
  border: 1px solid #961502;
  color:  #961502;
}

div.dynarch-horiz-menu table tr td.active {
  /* Styles for active (pressed) items in the main menu bar */
  border: 1px solid #961502;
  color:  #961502;
  /* Note that setting the font weight to bold will increase the item
     width when it's pressed.  This is normally not desirable. */
  font-weight: bold;
}

div.dynarch-horiz-menu table tr td.separator div {
  /* The vertical separator that can be present in the main menu bar.
     This is normally a small DIV, having certain padding and margin set, so that it can look like a separator.
     It is normally comprised of 2 lines (border-left and border-right), so if we want it to be a single-line
     separator then we need to set one of them to "none". */
  border-left: none;            /* no border on the left side */
  border-right-color: red;      /* red separator line. */
}

/****************************************************
   (2) THE POPUP MENUS
*****************************************************/

div.dynarch-popup-menu {
  /* This is the element containing a single popup menu.  Many other elements are inside it,
     but you normally only need to mess with this one and with <table> and <td> elements. */

  background-color: #fae663;       /* light yellow background */
  padding: 0px;                /* An ugly, 10pxs, padding. */
  border: 1px solid #961502;        /* a thick red border. */
}

div.dynarch-popup-menu table td {
  /* This table contains popup menu items.  It's a good place to configure fonts. */

  font: 12px arial,sans-serif; /* customize popup menu fonts */
  color: #888888;                        /* make sure they are initially dark red */
}

div.dynarch-popup-menu tr.item.hover td {
  /* Set the style for hovered items. 
 background-color: #555;
  kommentert ut../*
}

div.dynarch-popup-menu tr.item.active td {
  /* Set the style for active (pressed) items. 
  background-color: #000;
  color: white; */
  color:  #961502;
  font-weight:bold;

}

div.dynarch-popup-menu tr.separator td div {
  /* Here we can configure the horizontal separator style. */
  background-color: red;        /* give it a red background in order to have a red line as separator. */

  /* Let's space it "properly" ;-) */
  margin-top: 10px;
  margin-bottom: 10px;
}

div.dynarch-popup-menu tr.disabled td.label {
  /* Special case: DISABLED menu items */
  color: #fff;                  /* Let's make them hard to see ;-) */
}

/***

   Well, that's what you need to know..  I hope this helps.  Our menu
   can be styled very heavily and nicely, but it's out of the scope of our
   documentation to write a full guide to CSS.

   If you need more than this, please (1) read and understand the CSS
   specification which can be found at www.w3.org, (2) look through our
   default skins and (3) experiment, experiment, test, experiment :-).
   It's not easy to make good looking skins.

***/
