/* CORE CSS - 20060601 */


/* BODY */

body /* These becomes the initial settings for most other elements */
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #8a96a0;
    margin: 0;
    padding: 0;
}

/* HEADINGS */

h1, h2, h3, h4, h5, h6 /* Set general styles for all headings; some may be overridden later */
{
    font-weight: bold;
    font-style: normal;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

h1
{
    margin: 0 0 0.1rem 0;
    font-size: 1.8em;
    font-weight: normal;
}

h2
{
    font-size: 1.3em;
}

h3
{
    font-size: 1.4em;
    margin-top:2em;
    margin-bottom:1em;
}

h4
{
    font-size: 1em;
    margin:2em 0 1em 0;
}

h5
{
    font-size: 1em;
}

h6
{
    font-size: 1em;
    font-weight: normal;
}


/* PARAGRAPHS */

p
{
    margin: 0 0 1.5em 0;
    line-height: 1.25em; /* This is aprox. default line height in most popular browsers; set explicitly to ensure consitency. */
}


/* LINKS */

a
{
    color: #8a96a0;
    text-decoration: underline;
    outline:none
}

a:hover
{
    color: #2b2b34;
    text-decoration: none;
    
}

a img
{
    border: none; /* Some browsers may display a border around a linked image without this attribute set to _none_. */
}


/* PRE TEXT */

pre, code
{
    font-family: "Courier New", Courier, monospace; /* Usually defaulted to monospaced font anyway, but browwsers may vary which one is used, so giving exact alternatives helps visual consistenct */
    font-size: 1em; /* Setting this exact size may also help visual consistency */
}

pre
{
    background-color: #f8f8f8;
    margin: 1em 0 1em 0;
    padding: 0.2em;
    border: 1px solid #e0e0e0;
}

pre.wordwrap /* Style for ensuring long lines in pre field won't break the design; use &nbsp; instead to preserve white-space where desired */
{
    white-space: normal;
}

pre.wordwrap span.line /* Style for tag wrapping around each line of text */
{
    display: block;
}


/* TABLES */

table
{
    /* font-size: 1rem; */ /* Fix for size "loss" in tables in IE; redundant for most other browsers */
    margin: 0;
    padding: 0;
}

th, td
{
    padding: 0;
}

table.list /* Standard class usable for most regular tables presenting lists, with additional related styles */
{
    width: 100%;
    margin: 0rem 0 1rem 0;
    border: none;
}

table.list th, table.list td
{
    padding: 2px 0;
    border-bottom: 1px dashed #ccc;
    vertical-align: top;
}



table.list td
{
    font-weight: normal;
}

table.list th {display:none}



td.nowrap
{
    white-space: nowrap;
}

td.number
{
    text-align: right;
}

/* ORDERED AND UNORDERED LISTS */

ul, ol
{
    margin: 0.5em 0 1em 1rem;
    padding: 0;
}

ul ul, ol ul
{
    margin: 0.3em 0 0.5em 0;
}

ul ol, ol ol
{
    margin: 0.3em 0 0.5em 1.9em;
}

li
{
    margin: 0 0 0 12px;
    padding: 0;
    line-height: 1.25em;
    list-style-type:square
}

/* DEFINITION LISTS */

dl
{
    margin: 0.25em 0 0.25em 0;
    padding: 0;
}

dt, dd
{
    font-style: normal;
    margin: 0 0 0.25em 0;
}

dt
{
    font-weight: bold;
}

dd
{
    margin: 0 1em 0.5em 2.5em;
}


/* FORM ELEMENTS */

form
{
    margin: 0;
    padding: 0;
}

label
{
    font-weight: bold;
    padding-right: 0.5em;
    display: block;
    white-space: nowrap;
}

input, select
{
    font-family: Arial, Helvetica, sans-serif; /* Needs to be set for some browsers, to prevent other default font from being used */
}

input.box, input.halfbox
{
    font-size: 1em;
}

textarea
{
    font-family: Arial, Helvetica, sans-serif; /* Usually defaulted to monospaced font; so it needs to be set if to change */
    font-size: 1em; /* Needs to be specified for IE */
}

optgroup
{
    font-weight: bold;
    font-style: normal;
}

input.button, button, input.defaultbutton
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    text-align: center;
    vertical-align: middle;
    font-size: 0.8em;
    color: #343434;
}

input.box, textarea.box
{
    width: 100%;
    border: 1px solid #A5ACB2;
    font-size: 1em;
}

input.halfbox, textarea.halfbox
{
    width: 48%;
}

div.input, div.textarea
{
    margin: 0.5em 0 0.5em 0;
    padding: 0 0.25em 0 0.25em;
    border: 1px solid;
    border-color: #808080 #e0e0e0 #e0e0e0 #808080;
}

div.textarea
{
    padding-right: 0;
}

div.input input, div.textarea textarea
{
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

fieldset
{
    border: 1px solid #ccccc3;
    padding: 0.5em;
}

legend
{
    font-weight: bold;
    color: #000000;
    padding: 0 0.25em 0 0.25em;
}

fieldset label
{
    color: #000000;
}

fieldset input.button
{
    margin-top: 0.5em;
}

/* HORIZONTAL RULERS */

hr /* General formatting for all horizontal rulers */
{
    color: #ffffff; /* Color must be set to the same as the background color to hide default formatting in IE */
    border: none; /* All borders must be removed as they are default for Opera */
    border-top: 1px solid #e0e0e0; /* This single top border is the one replacing the default look of the ruler */
    height: 1px;
    margin: 0.35em 0 0.35em 0; /* Be aware that these margins may not be calculated consistently across browsers */
}


/* MESSAGES TO THE USER */

div.message-confirmation, div.message-feedback, div.message-warning, div.message-error, div.warning
{
    margin: 0.5em 0 1em 0;
    padding: 0.5em 1em 0.5em 1em;
    border: 6px solid #808080;
    background-color: #f8f8f8;
}

div.message-feedback
{
    border-color: #40b040;
}

div.message-warning, div.warning
{
    border-color: #c0c040;
}

div.message-error
{
    border-color: #c04040;
}


/* The remaining styles are important for proper content rendering in eZ publish - Do not remove or alter them without proper knowledge of the possible consequences */

/* POSITION CONTROL */

div.block /* Used around groups of objects which are connected in some way, and requires extra margins to the surroundings */
{
    margin: 0.5em 0 0.5em 0;
    padding: 0;
    clear: both;
}

div.block div.element /* Used if several objects are to be stacked horizontally within the same block */
{
    padding-right: 1em;
    float: left;
}

div.block div.left /* Floats elements to the left in a block */
{
/*
    width: 48%;
    float: left;
    clear: left;
*/
}

div.block div.right /* Floats elements to the right in a block */
{
    /*
    width: 48%;
    float: right;
    clear: right;
    */

    float: left;
    margin-top: 0.25rem;
}

p.text-left, td.text-left, th.text-left, *.text-left
{
    text-align: left;
}

p.text-right, td.text-right, th.text-right, *.text-right
{
    text-align: right;
}

p.text-center, td.text-center, th.text-center, *.text-center
{
    text-align: center;
}

p.text-justify, td.text-justify, th.text-justify, *.text-justify
{
    text-align: justify;
}

div.object-left, table.object-left /* Used for floating images and other content elements to the left inside other content */
{
    margin: 0.25em 0.25em 0.25em 0;
    float: left;
    clear: left;
}

div.object-right, table.object-right /* Used for floating images and other content elements to the right inside other content */
{
    margin: 0.25em 0 0.25em 0.25em;
    float: right;
    clear: right;
}

div.object-center, table.object-center
{
    margin: 0.25em auto 0.25em auto;
}

.float-break
{
    height: 1%; /* Fix for IE */
}

.float-break:after /* Terminate floating elements flow */
{
    content: "-";
    height: 0;
    font-size: 0;
    visibility: hidden;
    display: block;
    clear: both;
}

div.break /* Old method for terminating floating elements flow; kept for backwards compatibility */
{
    clear: both;
    font-size: 1px; /* Fix for IE */
    height: 1px;
    margin-bottom: -1px;
}


/* MISCELLANEOUS STYLES */

div.oe-window /* Needed by OE 5.0 when translating content */
{
    clear: both;
}

.hide /* Used on elements which should only be visible if CSS in disabled or unavailable */
{
    display: none;
}

.spamfilter /* Simple fix for stopping spambots from getting correct e-mail addresses from a web page: info<span class="spamfilter>SPAMFILTER</span>@ez.no <span class="spamfilter>(Remove SPAMFILTER to reply)</span> */
{
    display: none;
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.content-view-full div.class-folder div.pagenavigator {
  float: left;

}

html body div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165.subtree_level_2_node_id_613 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder div.slide div.attribute-image img {
  scale: 96%;
  max-width: 100%;
  height: 456px;

}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165.subtree_level_2_node_id_613 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder {
   height: 456px;
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165.subtree_level_2_node_id_613 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder div.slide div.attribute-caption p {
    margin-top: 0rem;
}

div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.content-view-full div.class-folder div.attribute-long table.default tbody tr td table.renderedtable tbody tr td div div.content-view-embed div.class-image div.attribute-image img {
  max-width: 100%;
  display: inline-block;
  height: auto;
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.content-view-full div.class-folder div.block.gallery div.right {
  margin-top: 0px;
  padding-top: 0px;
}

div.gallery div.left {
  /* height: 360px; */
  margin-top: 0rem;
}

div.gallery div.right {
  /* margin-top: 7.625rem; */
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.content-view-full div.class-folder div.block.gallery div.left {
  margin-top: 0px;
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165.subtree_level_2_node_id_534 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder div.slide div.attribute-image img {
  height: 300px;
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.content-view-full div.class-folder div.pagenavigator {
  left: 27.2%;
  position: relative;
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.content-view-full div.class-folder div.block.gallery div.left div.content-view-children div.attribute-image a img {
  width: 100px;
  height: 100px;

}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.content-view-full div.class-folder div.block.gallery div.left {
  margin: auto;
  text-align: center;
  display: block;
  justify-content: center;
  overflow: hidden;
  width: 21rem;
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165.subtree_level_2_node_id_445 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder div.slide div.attribute-image img {
  max-width: max-content;
  width: 98%;

}

div#page.nosidemenu.noextrainfo.section_id_1.subtree_level_0_node_id_2.subtree_level_1_node_id_262 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder div.slide div.attribute-image img {
  max-width: max-content;
  width: 100%;
}

div#page.nosidemenu.noextrainfo.section_id_1.subtree_level_0_node_id_2.subtree_level_1_node_id_262 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left {
  height: unset;
}

div#page.nosidemenu.noextrainfo.section_id_1.subtree_level_0_node_id_2.subtree_level_1_node_id_262 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.right {
  margin-top: 0rem;
}

div#page.nosidemenu.noextrainfo.section_id_1.subtree_level_0_node_id_2.subtree_level_1_node_id_262 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.right div.attribute-short p {
  margin-bottom: 0rem;
}

div#page.nosidemenu.noextrainfo.section_id_1.subtree_level_0_node_id_2.subtree_level_1_node_id_262 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery {
  margin-top: 0rem;
}

table.default tbody tr td div div.content-view-embed div.class-image div.attribute-image img {
  width: 100%;
  max-width: max-content;
  height: 340px;
}

div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder div.slide div.attribute-image img {
  width: 98%;
  max-width: max-content;
}

div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder div.slide div.attribute-image img {
  height: 382px;
  max-width: 100%;
  width: 465px;
}

div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder.cycle-slideshow {
  height: 428px;
  width: 361px;
}

div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.left div#slideholder.cycle-slideshow div.slide.cycle-slide {
  height: 400px;
}

div#page.nosidemenu.noextrainfo.section_id_7.subtree_level_0_node_id_2.subtree_level_1_node_id_165 div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.content-view-full div.class-folder div.block.gallery div.left {
  height: unset;
}

div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.right div.nav a img {
  width: 1.4rem;
}

div#columns-position div#columns.float-break div#main-position div#main.float-break div.overflow-fix div.block.gallery div.right div.attribute-header h1 img {
  width: max-content;
}
