/* Start of CMSMS style sheet 'IHS-01' */
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   background-color: #000028;
   color: #040404;
   margin:1em;    /* gives some air for the pagewrapper */
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #000028; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #260E3E;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;

   color: #2D283E;
}

/*****************
basic layout 
*****************/


/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 969px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 969px;
	background-color: #f9faff;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
td.header {
   height: 180px;    /* adjust according your image size */
   background: #000028;  
	border-bottom: 1px solid #000028;        
}

div#header h1 a {

   height: 180px;    /* adjust according your image size */
   background: #1d1e71;  
	border-bottom: 1px solid #000028;  
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em; 
	color: #1d1e71 ;      /* css shorthand rule will be opened to be "0 1em 0 1em" */
   
}

div#content {
   margin: 1.5em auto 2em 0;   /* some air above and under menu and content */
	
}


div#main {
   margin-left:  1em; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right:180px; /* and some air on the right */
}

div#sidebar {
   float: right;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 170px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-right: 0;
	margin-left:2em;
	clear:both;

}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
    /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {

}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}

h1 {
   color: #000028; 
	font-size: 1.50em; 
	text-align: left; 
/* some air around the text */
padding:0.1em;
	padding-left: 0.5em;
	line-height: 1.25em;

/* set borders around header */
	background-color: #eeeef6;
	
	border: 1px solid #b3b5d9;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
div#content h2 {
	color: #000028; 
	font-size: 1.25em; 
	text-align: left; 
/* some air around the text */
padding:0.1em;
	padding-left: 0.5em;
	line-height: 1.25em;

/* set borders around header */
	background-color: #eeeef6;
	
	border: 1px solid #b3b5d9;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
 h2 {
	color: #000028; 
	font-size: 1.25em; 
	text-align: left; 
/* some air around the text */
padding:0.1em;
	padding-left: 0.5em;
	line-height: 1.25em;

/* set borders around header */
	background-color: #eeeef6;
	
	border: 1px solid #000028;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #1d1e71; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
h3 {
   color: #1d1e71; 
   font-size: 1.3em;
   line-height: 1.3em;
  margin-left:1em;
}
div#content h4 {
   color: #000033; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h4 {
   color: #000033; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #000033; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
 h5 {
   color: #000033; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #000033; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid transparent;
   margin-left: 2em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #B3B5D9;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.5em 4em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
	}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
 /*  border-bottom: 1px solid #b3b5d9;*/
}



/* END LISTS */
.imageleft
{
padding: 1px;
border: 1px solid #000066;
margin:4px;
float:left;
clear:both;
}
.imageleft2
{
padding: 1px;
border: 0px solid #000066;
margin:4px;
float:left;
}
.imageright
{
padding: 1px;
border: 1px solid #000066;
margin:4px;
float:right;
}
.imageright2
{
padding: 1px;
border: 0px solid #000066;
margin:4px;
float:right;
}
.quote
{
	text-align: center;
	font-style: italic;
	font-weight:bold;
	color:#000028;
}

.cms-module-bookmarks-header {
font-weight: bold;
color: #000028; 
	font-size: 1.25em; 
	text-align: left; 
/* some air around the text */
padding:0.1em;
	padding-left: 0.5em;
	line-height: 1.25em;

/* set borders around header */
	background-color: #eeeef6;
	
	border: 1px solid #b3b5d9;
/* and some air under the border */
        margin: 0 0 0.5em 0;
   /* color: #1d1e71; 
   font-size: 1em;
	width:10em;
	text-align: left;
	font-weight: bold;
   line-height: 1em;
 margin-right:5px;
 margin-left:4.25em;
 margin-bottom:-2px;
	float:left;
	padding:.25em;
	 background-color: #f4f7ed;
	border: 1px solid #b3b5d9; 
	border-bottom:0px;
	*/
}

ul.cms-module-bookmarks-list
{ 
padding:.25em;
margin: 0 auto;
  /* color: #000066; 
  
	margin-top:-1.2em;
	background-color: #F4F7ED;
	
	border: 1px solid #B3B5D9;
	border-top:0px; */
}
.bookmark-link
{

   color: #000066; 
	font-size: 1em;
	font-weight: bold;
   line-height: 1em;
   margin-top: 10px;
	margin-bottom:-1px;
	border: 1px solid #b3b5d9;
	background-color:#eeeef6 ;
	border-bottom:0px;
	padding:2px;
	padding-left:1.5em;
	padding-right:3em;
	/*  */
}
.bookmark-link2 
{

   color: #000066; 
	font-size: 1em;
	font-weight: bold;
 
   margin: 0 auto;
	margin-top:10px;
	margin-bottom:2px;
	border: 1px solid #b3b5d9;
	border-bottom: 0px;
	
	background-color:#eeeef6;

	padding:2px;
	padding-left:1.5em;
	padding-right:3em;
	/*  ; */
}

table.cms-module-bookmarks
{
	margin-left:-20px;
}

.cms-module-bookmarks-list 
{


list-style: none;
margin-bottom:5px;
}
.cms-module-bookmarks-summary

{
margin-top:0px;
border: 1px solid #b3b5d9;
	background-color: #F4F7ED;
text-align: justify;
padding:4px;
}

#cms-module-bookmarks
{
	 color: #000066; 
   margin: 0 auto;
	/* background-color: #F4F7ED;
	padding:.25em;
	border: 1px solid #B3B5D9;
	border-top:0px; */
}

div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list
  border: 1px solid #b3b5d9;  */

}

div#news h2 {
   line-height: 2em;

}

.NewsSummary {
    padding: 0.5em 0.75em 1em 1em; /* padding for the news article summary */
    margin: 0 auto; /* margin to the bottom of the news article summary 
    border-bottom: 1px solid #b3b5d9; */
	 	 list-style: none;
	 
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink
 {
    color: #000066; 
	font-size: 1em;
	font-weight: bold;
   line-height: 1em;
	margin:6px;
   margin-top: 10px;
	margin-bottom:7px;
	border: 1px solid #b3b5d9;
	background-color:#eeeef6 ;
	border-bottom:0px;
	padding:2px;
	padding-left:1.5em;
	padding-right:3em;
	margin-left:4em;
	
}

#NewsPostDetailTitle {
    color: #000066; 
	font-size: 1em;
	font-weight: bold;
   line-height: 1em;
	margin:6px;
   margin-top: 10px;
	margin-bottom:-17px;
	border: 1px solid #b3b5d9;
	background-color:#eeeef6 ;
	border-bottom:0px;
	padding:2px;
	padding-left:1.5em;
	padding-right:3em;
	margin-left:4em;
	
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  margin-top: 0.5em;
  padding: 0.2em 1em;
  border:0px;
}

#NewsPostDetailContent {
padding:4px;

  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}

.NewsSummary

{
	margin-top:2px;
border: 1px solid #b3b5d9;
	background-color: #F4F7ED;
text-align: justify;
padding:4px;

}

#NewsPostDetailPrintLink
{
	float: right;
	padding-right:10px;
	margin:1em;
}
#NewsPostDetailReturnLink
{
margin:1em;
	float: left;
	padding-left:10px;
}

.term
{
	margin-top:0px;
border: 1px solid #b3b5d9;
background-color: transparent;
text-align: justify;
padding:4px;
padding-right:8px;
}
.term
{

}
.compact
{

}
.pisearchlink

{
	 color: #000066; 
	font-size: 1em;
	font-weight: bold;
 
   margin: 0 auto;
	margin-top:10px;
	margin-bottom:2px;
	
	border-bottom: 0px;
	


	padding:2px;
	padding-left:1.5em;
	padding-right:3em;
}


.pisearchdetails

{
	margin-top:-0.9em;
border-top: 1px solid #B3B5D9;
	background-color: transparent;
text-align: justify;
padding:4px;
padding-left:2em;
}

/* Vertical menu for the CMS CSS Menu Module */
/* by Alexander Endresen */


/* The wrapper determines the width of the menu elements */
#menuwrapper { 
   width: 180px; 
}
#maincmotionpic{
	border:1px solid #000033;
}
#motioncontainer
{
margin:1em;
padding:2px;
position:relative;
overflow:hidden;
height:150px;
vertical-align: top;

border:1px solid #000028;
background-color:#eeeef6;
}
#motiongallery
{
position:absolute;
left:0;
display: block;
top:0;
white-space: nowrap;
}
#trueContainer
{
height:150px;

	padding:1px;
	
	}
.largeview{
	text-align:center;
}
/* Some suggested CSS styles for the Image Captions plug-in. */

div.captionborder, div.captionborderleft,div.captionborderright {
border: 1px solid #1d1e71;
padding: 4px;
padding-right:6px;
background-color: #ffffff;
float:left;
margin:10px;
text-align: center;
font-weight: bold;
font-size: x-small;
}

div.captionborder img
{
	border: 1px solid #000028;
}

div.captionborderright {
float: right;
margin-left: 1em;
}

div.captionborderleft {
float: left;
margin-right: 1em;
}

p.captiontext {
margin: 0;
padding: 0;
font-size: 90%;
background-color: #fff;
color: #000033;
text-align: center;
}

div.captionborderright p.captiontext  {
text-align: right;
padding-right: 3px;
}

div.captionborderleft p.captiontext  {
text-align: left;
padding-left: 3px;
}

.dotme
{
list-style: url(uploads/images/icons/dot.png);
margin-left: 4em;
padding:1em;
 white-space: nowrap;
 font-style: italic;
 font-size: 1em;
 line-height: 1.5em;
 color:#000028;

}
.list01 li 
{
list-style: url(uploads/images/icons/dot.png);
padding:1em;
 white-space: nowrap;
 font-style: italic;
 font-size: 1em;
 line-height: 1em;
 color:#000028;


}
font-weight: bold;
.divbox01
{
	border: 1px solid #b3b5d9;
	border-top:0px;
	background-color: #f4f7ed;
	clear:both;
}

.divbox01 h2 {
   color: #000028; 
   font-size: 1.2em;
   line-height: 1.3em;
	border-left:0px;
	border-top:0px;
	border-right:0px;
	border-bottom: 1px solid #b3b5d9;
	background-color: #eeeef6;
	}

.divbox01 p
{
padding-left:1em;
padding-right:1em;
}

.divbox01  li
{
margin-left: 4em;
margin-bottom:1em;
 font-style: italic;
 font-size: 1em;
 line-height: 1.5em;
  color:#000028;
padding-left:1em;
padding-right:1em;
 list-style: decimal;
 display: block;
}
#highlight
{
display: block;
	margin: 0 auto;
	float: right;
	width: 98%;
}

.lefthighlight
{
	float:left;
	border: 1px solid #b3b5d9;
	background-color:#eeeef6;
	width:24%;
	margin-right:1em;
	padding:4px;
}

.centerhighlight
{
	width:24%;
	border: 1px solid #b3b5d9;
	background-color: #eeeef6;
	float: left;
	margin-right:1em;
	padding:4px;
}

.righthighlight
{
	float:left;
	width:44%;
	border: 1px solid #b3b5d9;
	background-color: #eeeef6;
	padding:4px;
}

.righthighlight p
{
text-align: justify;
padding-left:1em;
padding-right:1em;
}

.clearimage
{
	text-align: center;
	clear:both;
	padding-bottom:1em;
}


.infoBox {
  background: #eeeef6;
}

.infoBoxContents {
  background: #eeeef6;
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

.infoBoxNotice {
  background: #B3B5D9;
}

.infoBoxNoticeContents {
  background: #FFE6E6;
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

TD.infoBoxHeading {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  background: #B3B5D9;
  color: #ffffff;
}

TD.infoBox, SPAN.infoBox {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

/* Vertical menu for the CMS CSS Menu Module */
/* by Alexander Endresen */


/* The wrapper determines the width of the menu elements */
#menuwrapper { 
   width: 100%; 
}


/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
   width: 100%; 
   margin-left: -1px;
}
#primary-nav ul { 
   position: absolute; 
   top: 0; 
  right: 100%;/*   */
   display: none; 
}
#primary-nav li { 
   margin-bottom: -1px; 
   position: relative; 
}


/* Styling the basic apperance of the menu elements */
#primary-nav a { 
   border: 1px solid #000028;  
   display: block; 
   margin: 0px; 
   padding: 5px 10px; 
   color: #000028;
   text-decoration: none; 
   background: transparent; 
   min-height:1em; /* Fixes IE7 whitespace bug*/ 
}
#primary-nav li, #primary-nav li.menuparent { 
    background-color: #eeeef6; 
   min-height:1em; /* Fixes IE7 bug*/
}


/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */
#primary-nav li.menuactive { 
background-color: #b3b5d9; 

}

/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav li.menuparent, 
#primary-nav li.menuparent:hover, 
#primary-nav li.menuparenth { 
  background-image: url(images/cms/arrow.gif); 
   background-position: center left; 
   background-repeat: no-repeat; 
}


/* Styling the apperance of menu items on hover */
#primary-nav li:hover, 
#primary-nav li.menuh, 
#primary-nav li.menuparenth, 
#primary-nav li.menuactiveh { 
  background-color: #b3b5d9; 
}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */
#primary-nav ul, 
#primary-nav li:hover ul, 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul, 
#primary-nav li.menuparenth ul ul { 
   display: none; 
        float: left;
}
#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav li.menuparenth ul, 
#primary-nav ul li.menuparenth ul, 
#primary-nav ul ul li.menuparenth ul { 
   display: block; 
}


/* IE Hack, will cause the css to not validate */

#primary-nav li, #primary-nav li.menuparenth { _float: right; _height: 1%; }
#primary-nav li a { _height: 1%; }


/* section header */
#primary-nav li.sectionheader {
   border-left: 1px solid #000028; 
   border-top: 1px solid #000028; 
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0.5em;
   background-color: #fff;
   margin: 0;
   width: 100%;
}


/* separator */
#primary-nav li hr.separator {
   display:block;
   height: 0.5em;
 color: #000066;
   background-color: #eeeef6; 
   width: 100%;
   border:0;
   margin:0;
   padding:0;   
   border-top: 1px solid #000028;
   border-right: 1px solid #000028;
}


/* End of 'IHS-01' */

