/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * To FORCE PRINT all selectors you can search and replace a single { (opening
 * curly brace) and insert an empty comment. This is very useful in conjuction
 * with FireSass: https://addons.mozilla.org/en-US/firefox/addon/firesass-for-firebug/
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */
/* =============================================================================
 *   Base
 * ========================================================================== */
/* 
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */
html {
	background: white;
}
body {
	font-family: Verdana, Geneva, "DejaVu Sans", Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	background: url("images/body-bg.png") top left repeat;
}
.container {
	width: 940px;
	padding: 0 20px;
	background: url("images/top-bg.png") top center no-repeat white;
	font-size: 1.1em;
}
#content-column, .content-column, div.sidebar {
	clear: none;
	float: left;
}
.two-sidebars .content-inner {
	margin-left: 315px;
	margin-right: 25px;
}
.not-front.no-sidebars .content-inner, .sidebar-first .content-inner {
	margin-left: 364px;
	margin-right: 0;
}
.not-front.no-sidebars.node-type-simplenews .content-inner {
	margin-left: 0;
}
.sidebar-second .content-inner {
	margin-left: 0;
	margin-right: 25px;
}
.region-sidebar-first {
	margin-left: -100%;
	width: 315px;
}
.region-sidebar-second {
	margin-left: -25px;
	width: 25px;
}
.no-page-image .content-inner {
	padding-top: 10px;
}
/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
pre, code, tt, samp, kbd, var {
	font-family: Consolas, Monaco, "Courier New", Courier, monospace, sans-serif;
}
/* =============================================================================
 *   Wrappers
 * ========================================================================== */
/*
 * Page wrapper, includes the .container class which sets the overall page or section width
 * Main wrapper in page.tpl.php, the .container class sets the width of the page, do not add width to it!
 */
/*
 * Wraps all header elements - branding and .region-header
 */
/*
 * Wraps the sidebars the content column
 */
/*
 * Main content column wrapper
 */
/*
 * Wraps the main-content-header, the content region and feed-icons. Use this wrapper to style the entire main content column
 */
/*
 * Wraps the content region, avoid applying styles to this wrapper, its used mainly for position and invisible gutters and can be problematic to style
 */
/*
 * Footer wrapper
 */
#footer {
	background: url("images/footer-bg.png") top left no-repeat;
	margin: 0 -20px;
	padding-top: 25px;
}
/*
 * Panels may need additional margin wrangling when in the $content region
 */
/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width of the contained element - you
 * can style this but never add any width/margin/padding/borders etc to .container
 */
/*
 * Wraps #page
 */
/*
 * Wraps the leaderboard
 */
/*
 * Wraps the header
 */
#header-wrapper {
	/* Debug styles, is this working */
	background: rgba(255, 192, 203, 0.5);
}
/*
 * Wraps the nav elements
 */
/*
 * Wraps breadcrumb
 */
/*
 * Wraps messages and help
 */
/*
 * Wraps the secondary content/preface region
 */
/*
 * Wraps the main content column
 */
/*
 * Wraps the tertiary content/postfix region
 */
/*
 * Footer wrapper
 */
#footer-wrapper {
	/* Debug styles, is this working? */
	background: rgba(255, 192, 203, 0.5);
}
/* =============================================================================
 *   Branding
 * ========================================================================== */
/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {
	float: left;
}
/*
 * Logo
 */
#logo {
	margin: 45px 0 10px 10px;
}
#logo img {
	vertical-align: bottom;
}
/*
 * Wrapper for the site name and slogan (hgroup)
 */
/*
 * Site name (h1)
 */
#site-name {
	margin: 0;
}
#site-name a:link, #site-name a:visited {
	text-decoration: none;
}
#site-name a:hover, #site-name a:focus {
	text-decoration: underline;
}
/*
 * Site slogan (h2)
 */
#site-slogan {
	margin: 0;
}
/* =============================================================================
 *   Page content header
 * ========================================================================== */
/*
 * Main content header wraps the page title, tabs and actions links
 */
/*
 * The main page title (h1)
 */
#page-title {
	margin: 0;
	color: #009a66;
	font-size: 2em;
	margin-bottom: 1em;
}
/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */
/*
 * Feed icons
 */
/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
	display: inline;
	float: none;
	margin-right: 10px;
}
.feed-details dt, .feed-details dd {
	display: inline;
	margin: 0;
}
/*
 * Generic styles for the more link
 */
/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
ul.links {
	margin: 0;
	padding: 0;
}
ul.links.inline {
	display: block;
}
ul.links li {
	display: inline;
	list-style: none;
	padding: 0 10px 0 0;
}
/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
	margin: 0;
}
/* =============================================================================
 *   Regions
 * ========================================================================== */
/*
 * Standard region wrapper, don't add width to any regions, you will bork the layout - no margin, padding or borders etc
 */
/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
/*
 * Regions can be nested, such as when using Panels
 */
/*
 * Header region, embedded in the #header
 */
.region-header {
	float: right;
	position: relative;
}
/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
/*
 * Secondary content
 */
/*
 * Sits above the main content header, like a content-top region
 */
/*
 * Sits below the main content, like a content-bottom region
 */
/*
 * Sidebars - targets both
 */
/*
 * First sidebar
 */
/*
 * Second sidebar
 */
/*
 * Tertiary content
 */
/*
 * Footer region
 */
.region-footer {
	background: #e0d9cb;
	padding: 10px 40px;
}
.region-footer .block {
	width: 30%;
	float: left;
	margin: 0 1.5%;
}
.region-footer #block-block-1 {
	width: 97%;
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
}
.region-footer .block-title {
	font-size: 1.8em;
	font-weight: normal;
	font-family: "Droid Sans", Verdana, sans-serif;
	color: #009a66;
	margin-bottom: 0.3em;
}
#block-find-person-find-person .form-item {
	margin: 0;
}
#block-find-person-find-person input.form-text {
	width: 254px;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
	padding: 11px 10px;
	font-size: 1.4em;
	float: right;
	border: none;
}
#block-find-person-find-person input.form-autocomplete {
	background-position: 98% 999px;
	background-image: url("images/89.gif");
}
#block-find-person-find-person input.throbbing {
	background-position: 98% 10px;
}
#block-find-person-find-person .form-submit {
	background: url("images/search-bg.png") center left no-repeat;
	width: 16px;
	height: 38px;
	display: block !important;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background-color: transparent;
}
/* =============================================================================
 *   Links
 * ========================================================================== */
a {
	text-decoration: none;
}
a:link, a:visited {
	color: #009a66;
}
a:active, a.active {
	color: #006c48;
}
a:hover, a:focus {
	color: #006c48;
	text-decoration: underline;
}
/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */
/*
 * Use one of the following id's for granular control:
 *  - #menu-bar (menu bar region)
 *  - #primary-menu (main menu)
 *  - #secondary-menu (secondary/user menu)
 * You can target all of these with .nav or div[id$="menu-bar"]
 */
#block-superfish-1 {
	margin: 0;
	padding: 0;
	background: url("images/menu-bg.png") top left repeat-x;
	width: 940px;
}
#block-superfish-1 > ul > li.last {
	float: right;
}
#block-superfish-1 > ul > li.last a {
	border-right: none;
	border-left: 5px solid white;
}
#block-superfish-1 ul li span, #block-superfish-1 ul li a {
	display: block;
	padding: 2px 18px;
	border-right: 5px solid white;
	/*font-size: 1.6em;*/
	font-size: 17px;
	color: white;
	font-weight: normal;
}
#block-superfish-1 ul li span:hover, #block-superfish-1 ul li span:active, #block-superfish-1 ul li span.active, #block-superfish-1 ul li span.active-trail,  #block-superfish-1 ul li a:hover,  #block-superfish-1 ul li a:active,  #block-superfish-1 ul li a.active,  #block-superfish-1 ul li a.active-trail {
	background: url("images/arrow-top.png") 18px 0 no-repeat;
}
#block-superfish-1 ul li.sf-depth-1.active > a, #block-superfish-1 ul li.sf-depth-1.active-trail > a {
	background: url("images/arrow-top.png") 18px 0 no-repeat;
}
#block-superfish-1 ul li span, #block-superfish-1 ul li a:link, #block-superfish-1 ul li a:visited {
	color: #fff;
}
#block-superfish-1 .sf-menu li:hover > ul, #block-superfish-1 .sf-menu li.sfHover > ul {
	left: 0;
	top: 48px;
}
#block-superfish-1 .sf-menu li:hover > ul ul, #block-superfish-1 .sf-menu li.sfHover > ul ul {
	top: 0;
}
#block-superfish-1 ul li ul {
	background: #e0d9cb;
}
#block-superfish-1 ul li.sf-depth-1 ul {
	/*padding-top: 16px !important;*/
	background: url("images/menu-dropdown-bg.png") 0 0 no-repeat #e0d9cb;
}

#block-superfish-1 ul li.sf-depth-1.sf-total-children-3 ul {
	background: url("images/menu-dropdown-bg-3.png") 0 0 no-repeat #e0d9cb;
}

#block-superfish-1 ul li.sf-depth-1.sf-total-children-2 ul {
	background: url("images/menu-dropdown-bg-2.png") 0 0 no-repeat #e0d9cb;
}

#block-superfish-1 ul li.sf-depth-1.sf-total-children-1 ul {
	background: url("images/menu-dropdown-bg-1.png") 0 0 no-repeat #e0d9cb;
}

#block-superfish-1 .sf-megamenu-wrapper {
	padding: 20px 0px 10px 0px !important;
	/*background: url("images/menu-arrow-bg.png") 0 0 no-repeat;*/
	
	background: url("/sites/default/files/mediearkiv/menu/menu-bg.png") right bottom no-repeat;
	min-height: 230px;
	-webkit-box-shadow: 0px 15px 5px -5px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 15px 5px -5px rgba(0, 0, 0, 0.3);
}
#block-superfish-1 ul li.sf-depth-1 ul li a.nolink {
	font-size: 1.6em;
	font-weight: normal;
	font-family: "Droid Sans", Verdana, sans-serif;
	color: #009a66;
	border-right: none;
	padding: 2px 10px 2px 20px;
	margin-bottom: 0.3em;
	cursor: default;
}
#block-superfish-1 ul li.sf-depth-1 ul li a.nolink:link, #block-superfish-1 ul li.sf-depth-1 ul li a.nolink:visited {
	color: #009a66;
}
#block-superfish-1 ul li.sf-depth-1 ul li a {
	padding: 2px 10px 2px 20px;
	text-transform: none;
	font-size: 11px;
	line-height: 1.2em;
	height: 1.2em;
	color: #000;
	border: none;
	background: none;
}
#block-superfish-1 ul li.sf-depth-1 ul li a:link, #block-superfish-1 ul li.sf-depth-1 ul li a:visited {
	color: #000;
}
#block-superfish-1 ul li.sf-depth-1 ul li a:hover, #block-superfish-1 ul li.sf-depth-1 ul li a:active, #block-superfish-1 ul li.sf-depth-1 ul li a.active, #block-superfish-1 ul li.sf-depth-1 ul li a.active-trail {
	background: none;
	color: #009a66;
}
#block-superfish-1 ul li ul li a {
	font-size: 13px;
	border-right: none;
}
#block-superfish-1 ul li ul li a:link, #block-superfish-1 ul li ul li a:visited {
	color: #000;
}
#block-superfish-1 ul li ul li a:hover, #block-superfish-1 ul li ul li a:active, #block-superfish-1 ul li ul li a.active, #block-superfish-1 ul li ul li a.active-trail {
	background: none;
	color: #009a66;
}
.sf-menu.sf-style-none ul.sf-megamenu li.sf-megamenu-wrapper ol, .sf-menu.sf-style-none ul.sf-megamenu li.sf-megamenu-wrapper ol li {
	margin: 0;
	padding: 0;
}
.sf-menu.sf-style-none ul.sf-megamenu li.sf-megamenu-wrapper a.menuparent {
	font-weight: bold;
}

.sf-menu.sf-style-none ul.sf-megamenu li.sf-megamenu-wrapper ol li  {
	display: inline;
	float: left;
	width: 188px;
	padding-bottom:20px;
	/*margin-right: 20px;*/
	/*border-right: 1px dashed white;*/
}

.sf-menu.sf-style-none ul.sf-megamenu li.sf-megamenu-wrapper ol li ol li  {
	/*border-right: 0;*/
	width:auto;
	clear:both;
	min-height:inherit;
	padding-bottom:0;
}


.sf-menu.sf-style-none ul.sf-megamenu li.sf-megamenu-wrapper ol li.sf-megamenu-column.last {
	/*margin-right: 0;*/
	border-right: none;
}
.sf-menu.sf-style-none.rtl ul.sf-megamenu li.sf-megamenu-wrapper ol li.sf-megamenu-column {
	float: right;
}

.sf-menu .sf-megamenu {
	width:940px;
}


#primary-menu-bar {
	margin: 15px 0;
}
#primary-menu-bar nav {
	margin: 0;
	padding: 0;
}
#primary-menu-bar ul {
	margin: 0;
	padding: 0;
	background: url("images/menu-bg.png") top left repeat-x;
}
#primary-menu-bar ul.menu li.last {
	float: right;
}
#primary-menu-bar li a,  #primary-menu-bar ul.menu li a {
	display: block;
	padding: 11px 26px;
	border-right: 5px solid white;
	font-size: 1.6em;
	color: white;
	font-weight: normal;
}
#primary-menu-bar li.last a,  #primary-menu-bar ul.menu li.last a {
	border-left: 5px solid white;
	border-right: 0;
}
.nav {
	clear: both;
	margin: 10px 0;
}
.nav ul,  .nav ul.menu {
	margin: 0;
	padding: 0;
}
.nav li,  .nav ul.menu li {
	position:static;
	display: inline;
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav li a,  .nav ul.menu li a {
	display: block;
	white-space: nowrap;
	padding: 0 10px;
}
.nav .block {
	margin-bottom: 0;
}
/* =============================================================================
 *   Superfish
 * ========================================================================== */
ul.sf-menu {
	margin-bottom: 0;
	position:relative;
}
ul.sf-menu a {
	border-left: 0;
	border-top: 0;
	padding: 0 10px;
	text-decoration: none;
	height: 2.5em;
	line-height: 2.5em;
}
ul.sf-menu li:hover, ul.sf-menu li.sfHover {
	outline: 0;
}
ul.sf-menu a:focus, ul.sf-menu a:hover, ul.sf-menu a:active {
	outline: 0;
}
/*
 * Superfish blocks
 */
.block-superfish ul {
	margin: 0;
	padding: 0;
}
.block-superfish li {
	margin: 0;
	padding: 0;
}
/*
 * Vertical style
 */
.sf-vertical {
	width: 100%;
}
.sf-vertical li {
	width: 100%;
}
.sf-vertical li:hover ul, .sf-vertical li.sfHover ul {
	left: 100%;
	top: 0;
	margin: 0;
	padding: 0;
}
.sf-vertical li a {
	padding: 0 10px;
}
/*
 * Navbar style
 */
.sf-navbar {
	padding-bottom: 0 !important;
}
/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
	padding: 0 10px;
}
/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */
ul.menu {
	padding-left: 15px;
}
ul.menu ul {
	padding-left: 15px;
}
ul.menu li {
	margin: 0;
}
/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
	padding: 0;
}
/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */
.book-navigation .page-up {
	/* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
	min-width: 2em;
	white-space: nowrap;
}
.book-navigation .menu {
	margin-left: 0;
}
/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */
#breadcrumb {
	margin: 10px 0;
/* If the label is set to show in theme settings the label class is added */ }
#breadcrumb .breadcrumb-label {
	font-size: 1em;
	display: inline;
	padding-right: 10px;
}
#breadcrumb .breadcrumb-label:after {
	content: ":";
}
#breadcrumb ol {
	margin: 0;
	padding: 0;
}
#breadcrumb .with-breadcrumb-label ol {
	display: inline;
}
#breadcrumb li {
	list-style: none;
	display: inline;
}
/* =============================================================================
 *   Pagers
 * ========================================================================== */
ul.pager {
	clear: both;
	margin: 0;
	text-align: center;
}
.item-list ul.pager li {
	margin: 0;
}
ul.pager li {
	background-image: none;
	display: inline;
	list-style-type: none;
	padding: .5em;
}
ul.pager li.pager-current {
	font-weight: 700;
}
.block ul.pager li {
	margin: 0;
}
/*
 * Theme the various states of pager links
 */
/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */
#skip-link {
	left: 50%;
	margin-left: -6.5em;
	margin-top: 0;
	padding: 0 0.5em;
	position: absolute;
	width: 12em;
	z-index: 50;
}
#skip-link a {
	background: #444;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	display: block;
	line-height: 2;
	padding: 0;
	text-align: center;
	text-decoration: none;
}
#skip-link a:link, #skip-link a:visited {
	background: #444;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	display: block;
	line-height: 2;
	padding: 0;
	text-align: center;
	text-decoration: none;
}
#skip-link a:hover, #skip-link a:focus, #skip-link a:active {
	outline: 0;
}
/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */
#tasks {
	margin-bottom: 15px;
}
ul.primary {
	border-bottom-color: #cccccc;
	margin: 20px 0;
	padding: 0 0 0 5px;
}
ul.primary li {
	display: block;
	float: left;
	margin: 0 1px -1px;
}
ul.primary li a {
	background-color: whitesmoke;
	border-color: #cccccc;
	margin-right: 1px;
	padding: 0 10px;
	display: block;
	float: left;
	height: 1.5em;
	line-height: 1.5em;
}
ul.primary li a:hover, ul.primary li a:focus {
	background-color: #eeeeee;
	border-color: #cccccc;
}
ul.primary li.active a,  ul.primary li.active a:hover,  ul.primary li.active a:focus {
	background-color: white;
	border-bottom-color: white;
}
ul.secondary {
	border-bottom: 1px solid #cccccc;
	margin: 1em 0 0;
	padding: 0 0.3em 1em;
}
ul.secondary li {
	border-right: 0;
	list-style: none;
	padding: 0 10px 0 0;
}
ul.secondary li a:hover, ul.secondary li a.active {
	border-bottom: none;
	text-decoration: underline;
}
/* =============================================================================
 *   Action links
 * ========================================================================== */
ul.action-links {
	margin: 20px 0 0;
	list-style: none;
}
/* =============================================================================
 *  Field Styling
 * ========================================================================== */
/*
 * Wrapper for any field
 */
/*
 * Above and inline classes are on the field wrapper
 */
/*
 * When labels are set to inline in field display settings the clearfix class is automatically added
 */
/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues
 */
.field-label {
	font-size: 1em;
	font-weight: 700;
	font-family: inherit;
	line-height: inherit;
	margin-bottom: 0;
}
.field-name-field-facts {
	margin-left: -60px;
	padding-left: 60px;
	color: #009a66;
}
.field-name-field-facts .field-label {
	background: url("images/facts-bg.png") bottom left no-repeat;
	font-size: 1.8em;
	text-align: right;
	margin: 0;
	padding: 0;
	padding-bottom: 30px;
	margin-left: -60px;
	padding-left: 60px;
	font-weight: normal;
}
.field-name-field-facts .condense_control {
	display: block;
	width: 32px;
	height: 16px;
	background: url("images/moreless.png") top left no-repeat;
	text-indent: -9999em;
}
.field-name-field-facts .condense_control_less {
	background-position: bottom left;
}
/*
 * Field types (Core)
 */
/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
	/* The same bottom margin as p, blockquote, ul, ol and dl */
	margin-bottom: 1.5em;
}
.field-type-taxonomy-term-reference.field-label-inline .field-items {
	margin: 0;
	padding: 0;
}
.field-type-taxonomy-term-reference.field-label-inline .field-item {
	display: inline;
	list-style: none;
	padding: 0 10px 0 0;
}
/*
 * Text
 */
/*
 * Long text
 */
/*
 * Text with summary
 */
/*
 * File
 */
/*
 * Number/Integer
 */
/*
 * Decimal
 */
/*
 * Number float
 */
/*
 * List
 */
/*
 * List boolean
 */
/*
 * List integer
 */
/*
 * List float
 */
/*
 * Field types (Contrib)
 */
/*
 * Named fields
 */
.node-news.node-full .field-name-field-image {
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
}
.node-news.node-teaser .node-title a {
	font-size: 0.575em;
	font-size:0.8em;
	padding-bottom:10px;
	display:block;
}
.node-news.node-teaser .node-title a:link, .node-news.node-teaser .node-title a:visited {
	color: #009a66;
	
}
.node-news.node-teaser .field-name-body {
	/*margin-left: 120px;*/
	
}

.node-news {
	margin-bottom: 20px;
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.node-news li{
	width: 100%;
	text-align: right;
}

 /***FIRST STYLE THE BUTTON***/
.node-news li.node-readmore a{
	padding:4px 15px; 
	background:#009a66; 
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color:#f3f3f3;
}

.node-news li.node-readmore a:hover{
	background-color :#004e33;
	text-decoration:none;
}

.node-news.node-teaser .field-name-field-image {
	float: left;
	margin-right: 20px;
}
.node-news.node-teaser .node-readmore {
	float: right;
}
/*
 * Underscores in field name are replaced with dashes
 */
/*
 * Image Alignment Theme Settings - included here so you can easily override 
 */
/*
 * Float none setting
 */
/*
 * Float left setting
 */
.ia-l .field-type-image figure, .iat-l .field-type-image figure {
	margin: 5px 20px 15px 0;
}
/*
 * Centered setting
 */
.ia-c .field-type-image figure, .iat-c .field-type-image figure {
	margin: 5px auto 15px;
}
/*
 * Float right setting
 */
.ia-r .field-type-image figure, .iat-r .field-type-image figure {
	margin: 5px 0 15px 20px;
}
/* =============================================================================
 *   Block Styling
 * ========================================================================== */
/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
	margin-bottom: 20px;
}
/*
 * Inner wrapper for most blocks, good for margin, padding and borders, block_system_main does not have it
 */
/*
 * The first block in the region
 */
/*
 * The last block in the region
 */
/*
 * Zebra striping for each block in the region
 */
/*
 * Zebra striping for each block in the region
 */
/*
 * Block title
 */
.block-title {
	margin: 0;
}
/*
 * Block content wrapper
 */
/*
 * Match item list and block menu margin and padding
 */
.block-content ul, .block-content ol {
	padding: 0 0 0 15px;
}
.block-content li {
	margin: 0;
	padding: 0;
}
/*
 * Block for the latest news items in the first category
 */
/*
 * Block for the latest news items in the first feed
 */
/*
 * First block created with "Add block" link
 */
#block-block-1 {
	padding-left: 120px;
	background: url("images/footer-logo-bg.png") top left no-repeat;
}
#block-block-5 {
	position: absolute;
	top: 81px;
	right: 178px;
	width: 200px;
}
/*
 * "Recent blog posts" block
 */
/*
 * "Book navigation" block for the current book's table of contents
 */
/*
 * "Recent comments" block
 */
/*
 * "Active forum topics" block
 */
/*
 * "New forum topics" block
 */
/*
 * Language switcher block
 */
/*
 * Custom menu block
 */
/*
 * "Recent content" block
 */
/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
/*
 * "Most recent poll" block
 */
/*
 * "Author information" block for the profile of the page's author
 */
/*
 * "Search form" block
 */
#block-find-person-find-person {
	margin: 0;
	margin-top: 12px;
	width: 174px;/* Jquery UI override */
  /*    
      .ui-state-active, 
      .ui-widget-content .ui-state-active, 
      .ui-widget-header .ui-state-active {
          background: #009a67;
          color: #212121;
          font-weight: normal;
          
          a {
              color: #fff;
          }
      }
  */ }
#block-find-person-find-person form {
	clear: both;
}
#block-find-person-find-person input.form-text {
	width: 158px;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
	padding: 11px 10px;
	font-size: 1.4em;
	float: right;
	border: none;
	background: #e0d9cb;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
#block-find-person-find-person .form-submit {
	background: url("images/search-bg.png") center left no-repeat;
	width: 16px;
	height: 38px;
	display: block !important;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background-color: transparent;
}
#block-find-person-find-person #autocomplete {
	z-index: 999;
}
#block-find-person-find-person #autocomplete ul li {
	padding: 0.3em 0.7em;
}
#block-find-person-find-person .ui-tabs {
	padding: 0;
}
#block-find-person-find-person .ui-tabs .ui-tabs-panel {
	padding: 0;
}
#block-find-person-find-person .ui-tabs .ui-tabs-nav li {
	padding: 0;
	margin: 0;
	-webkit-border-top-left-radius: 7px;
	-moz-border-radius-topleft: 7px;
	border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-moz-border-radius-topright: 7px;
	border-top-right-radius: 7px;
}
#block-find-person-find-person .ui-tabs .ui-tabs-nav li a {
	padding: 0.4em 0.4em;
	cursor: pointer;
}
#block-find-person-find-person .ui-tabs .ui-tabs-nav li.ui-state-active a {
	cursor: default;
}
#block-find-person-find-person .ui-tabs .ui-tabs-nav li.ui-state-active a:link, #block-find-person-find-person .ui-tabs .ui-tabs-nav li.ui-state-active a:visited {
	color: #999;
}
#block-find-person-find-person .ui-tabs-nav,  #block-find-person-find-person .ui-widget-header,  #block-find-person-find-person .ui-widget-content {
	border: none;
	background: none;
	padding: 0;
}
#block-find-person-find-person .ui-tabs-nav {
	float: right;
}
/*
 * "Shortcuts" block
 */
/*
 * "Popular content" block
 */
/*
 * "Main menu" block
 */
/*
 * "Management" block for Drupal management menu
 */
/*
 * "Navigation" block for Drupal navigation menu
 */
/*
 * "User menu" block for Drupal user menu
 */
/*
 * "System help" block
 */
/*
 * "Main page content" block
 */
#block-system-main {
	margin-bottom: 10px;
}
/*
 * "Powered by Drupal" block
 */
/*
 * "User login form" block
 */
/*
 * "Who's new" block for a list of the newest users
 */
/*
 * "Who's online" block for a list of the online users
 */
/* =============================================================================
 *   Node Styling
 * ========================================================================== */
.node {
	margin-bottom: 20px;
}
.node .node-title {
	margin: 0;
}
/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */
/*
 * Wrapper for the list of comments and its titles
 */
#comments {
	margin: 1.5em 0;
}
#comments h2.comment-title {
	margin: 0;
}
#comments h2.comment-form {
	margin: 0;
}
/*
 * Wrapper for a single comment
 */
.comment {
	margin-bottom: 20px;
}
/*
 * Comment title
 */
.comment-title {
	margin: 0;
}
/*
 * Comment states
 */
/*
 * Preview of the comment before submitting new or updated comment
 */
/*
 * "New" marker for comments that are new for the current user
 */
.new {
	color: #cc0000;
}
/*
 * Nested comments are indented
 */
.indented {
	margin-left: 40px;
}
/* =============================================================================
 *   Forms
 * ========================================================================== */
/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item input.error, .form-item textarea.error, .form-item select.error {
	border: 1px solid #cc0000;
}
.form-item label {
	font-weight: 700;
}
.form-item .description {
	font-size: 0.85em;
}
/*
 * Highlight marks and form required mark
 */
.marker, .form-required {
	color: #cc0000;
}
/*
 * The submit button
 */
.container-inline div, .container-inline label {
	display: inline;
}
/*
 * Define consistent borders
 */
fieldset {
	border: 1px solid #cccccc;
}
/*
 * Tips for Drupal's input formats
 */
/*
 * Buttons used by contrib modules like Media
 */
a.button {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}
/*
 * Password confirmation
 */
.password-parent, .confirm-parent {
	margin: 0;
}
/* =============================================================================
 *   Tables
 * ========================================================================== */
table {
	margin: 10px 0;
	padding: 0;
	width: 100%;
}
table.sticky-header {
	z-index: 10;
}
table, thead, tbody, tr, th, td {
	border-color: #cccccc;
}
table, td, th {
	vertical-align: middle;
}
caption, th, td {
	text-align: left;
}
thead tr {
	font-weight: 700;
	background-color: #e5e5e5;
}
td, th {
	border-bottom: 0;
	margin: 0;
	padding: 5px 7px;
}
tbody tr {
	border-top: 1px solid #cccccc;
}
tr {
/* Table row striping */ }
tr.odd {
	background: white;
}
tr.info, tr.even, tr:nth-child(2n+2) {
	border-bottom: 0;
	background-color: whitesmoke;
}
tr.odd td.active {
	background-color: #eeeeee;
}
tr.even td.active {
	background-color: #ebebeb;
}
/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td .created, #forum td .posts, #forum td .topics, #forum td .last-reply, #forum td .replies, #forum td .pager {
	white-space: normal;
}
/* =============================================================================
 *   Messages
 * ========================================================================== */
div.messages {
	margin-bottom: 10px;
	margin-top: 10px;
}
div.messages ul {
	margin-top: 0;
	margin-bottom: 0;
}
/*
 * Unpublished nodes
 */
.node-unpublished p.unpublished, .comment-unpublished p.unpublished {
	color: pink;
	color: rgba(239, 170, 170, 0.4);
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif;
	font-size: 50px;
	font-weight: 700;
	line-height: 1.2;
	height: 0;
	margin: 0;
	padding: 0;
	overflow: visible;
	text-align: center;
	text-transform: uppercase;
	word-wrap: break-word;
}
.ie6-7 .node-unpublished p.unpublished > *, .ie6-7  .comment-unpublished p.unpublished > * {
	position: relative;
}
/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */
.maintenance-page .container {
	padding: 40px 0;
}
.maintenance-page #site-name, .maintenance-page #page-title {
	margin: 0;
}
.db-offline .container {
	margin: 0 auto;
	padding: 40px 0;
	width: 100%;
	max-width: 960px;
}
.db-offline div.messages {
	margin: 20px 0 0;
}
.db-offline #content {
	padding: 20px 0;
}
/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */
/*
 * Admin menu overrides
 */
#admin-menu {
	margin: 0;
	padding: 0;
}
/*
 * Devel Module
 */
.dev-query {
	background: #eeeeee;
	padding: 30px;
}
/*
 * Styleguide module tweaks
 */
#styleguide-header {
	padding: 0 10px;
}
#styleguide-header .item-list {
	font-family: inherit;
	margin: 0 20px 20px 0;
	min-height: 260px;
	width: auto;
}
/*
 * Custom styles
 */
.page-image {
	position: relative;
	width: 576px;
	margin-bottom: 30px;
}
.page-image .caption {
	display: block;
	width: 356px;
	height: 144px;
	position: absolute;
	background: url("images/page-image-overlay.png") top left no-repeat;
	top: 0;
	right: 0;
}
.page-image .caption .caption-text {
	color: white;
	display: block;
	font-size: 2.2em;
	font-weight: bold;
	margin-left: 80px;
	margin-right: 80px;
	margin-top: 30px;
}
/* Menu block */
.block-menu-block ul {
	margin: 0;
	padding: 0;
	list-style-type: outside;
}
.block-menu-block li {
	background: #e0d9cb;
}
.block-menu-block li.expanded, .block-menu-block li.collapsed, .block-menu-block li.leaf {
	list-style: none outside none;
}
.block-menu-block li.active {
	background: url("images/arrow-left.png") center left no-repeat #e0d9cb;
}
.block-menu-block li ul {
	margin: 0;
	padding: 0;
}

.block-menu-block li ul li ul li{
	padding-left:15px;
}


.block-menu-block li ul li {
	padding-left: 0;
}
.block-menu-block li ul li a {
	padding-left: 55px;
}
.block-menu-block ul li a {
	display: block;
	padding: 11px 10px 11px 35px;
	border-bottom: 1px dashed white;
	text-decoration: none;
}
.block-menu-block ul li a:link, .block-menu-block ul li a:visited {
	color: black;
}
.block-menu-block ul li a:active, .block-menu-block ul li a.active {
	color: #009a66;
}
.block-menu-block ul li a:hover, .block-menu-block ul li a:focus {
	color: #009a66;
}
.block-menu-block ul li.last a {
	border-bottom: none;
}
.block-menu-block ul li ul li.last a {
	border-bottom: 1px dashed white;
}
/* Top menu */
#block-menu-menu-top-menu {
	margin: 16px 0 0 0;
}
#block-menu-menu-top-menu ul {
	margin: 0;
	padding: 0;
}
#block-menu-menu-top-menu ul li {
	list-style: none outside none;
	display: inline;
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-left: 5px;
}
#block-menu-menu-top-menu ul li a {
	display: block;
	width: 33px;
	height: 19px;
	text-indent: -9999em;
}
#block-menu-menu-top-menu ul li a:link, #block-menu-menu-top-menu ul li a:visited {
	color: black;
}
#block-menu-menu-top-menu ul li a:active, #block-menu-menu-top-menu ul li a.active {
	color: #009a66;
}
#block-menu-menu-top-menu ul li a:hover, #block-menu-menu-top-menu ul li a:focus {
	color: #009a66;
}
#block-menu-menu-top-menu ul li.first a {
	background: url("images/link-home-bg.png") top left no-repeat;
}
#block-menu-menu-top-menu ul li.last a {
	background: url("images/link-fb-bg.png") top left no-repeat;
}
/* Flexslider */
.node-page-slideshow {
	width: 885px;
	margin: 0 auto;
}

.flexslider {
    position: relative;
}

.flexslider .flex-viewport li {
	position: relative;
	background: url("images/slider-overlay.png") top left no-repeat;
}
.flexslider .flex-viewport li img {
	float: right;
}
.flexslider .flex-viewport li .flex-caption {
	background: url("images/slider-overlay.png") top left no-repeat;
	width: 414px;
	height: 294px;
	display: block;
	position: relative;
	z-index: 10;
}
.flexslider .flex-viewport li .flex-caption strong {
	color: white;
	display: block;
	font-size: 2.6em;
	font-weight: bold;
	position: absolute;
	left: 80px;
	top: 50px;
	display: block;
	right: 70px;
}
.flex-direction-nav a {
	display: block;
	width: 31px;
	height: 65px;
	background: url("images/flex-nav-bg.png") top left no-repeat;
	text-indent: -9999em;
	position: absolute;
	top: 35%;
	z-index: 100;
	outline: none;
}
.flex-direction-nav a.flex-prev {
	left: -31px;
}
.flex-direction-nav a.flex-next {
	background-position: top right;
	right: -31px;
}
#block-views-boxes-block, #block-views-boxes-block-1 {
	float: left;
}
#block-views-boxes-block-1 {
	margin-left: 27.5px;
	margin-right: 14px;
}
.view-boxes .views-row {
	width: 285px;
	float: left;
	margin-right: 14px;
}
.view-boxes .views-row .views-field-title {
	color: #009a66;
	font-weight: bold;
}
.view-boxes .views-row .box-header {
	position: relative;
}
.view-boxes .views-row .box-header .box-header-overlay a {
	position: absolute;
	top: 25%;
	right: 1px;
	display: block;
	width: 32px;
	height: 65px;
	background: url("images/box-overlay.png") top left no-repeat;
	text-indent: -9999em;
}
.view-boxes .views-row-last {
	margin-right: 0;
}
.view-boxes p {
	margin: 0;
}
/* Personer */
.view-persons .views-row {
	float: left;
	width: 140px;
	min-height:245px;
}
.view-persons .views-row .views-field {
	margin-left: 10px;
}

.view-persons .views-row .views-field-title {
	font-size: 1.2em;
	font-weight: bold;
}
.view-persons .views-row .views-field-title a:link, .view-persons .views-row .views-field-title a:visited {
	color: #505151;
}

.view-persons .view-footer {
	overflow: hidden;
 *overflow: visible;
 *zoom: 1;
	clear: both;
}
/* Front */
#block-block-2 {
	margin-bottom: -60px;
	left: 100px;
	position: relative;
	top: -80px;
	width: 198px;
	height: 29px;
	z-index: 20;
}
#block-block-2 .front-link a {
	display: block;
	background: url("images/button-bg.png") top left no-repeat;
	font-size: 1.8em;
	padding: 10px;
}
#block-block-2 .front-link a:link, #block-block-2 .front-link a:visited {
	color: #fff;
}
#block-block-3 .front-link a {
	display: inline-block;
	background: url("images/button-bg.png") top right no-repeat;
	font-size: 1.8em;
	padding: 10px;
	padding-right: 30px;
}
#block-block-3 .front-link a:link, #block-block-3 .front-link a:visited {
	color: #fff;
}
/* News slider */
#block-views-news-block-1 {
	width: 885px;
	margin: 10px auto;
}
#block-views-news-block-1 .block-title {
	float: left;
	padding: 11px 15px;
	width: 120px;
	background: #e0d9cb;
	color: #808285;
	font-size: 1.1em;
	cursor:pointer;
}

#block-views-news-block-1 .block-title:hover {
	color:#009a66;
}

#block-views-news-block-1 .block-content {
	float: left;
	width: 735px;
}
#block-views-news-block-1 .view-content {
	position: relative;
	border: 5px solid #e0d9cb;
	height: 10px;
	padding: 10px 20px;
	background: url("images/news-slider-bg.png") left center no-repeat;
}
#block-views-news-block-1 .view-content .views-row a {
	padding: 7px;
	display: block;
	padding-left: 20px;
	width: 100%;
}
/* Products */
.node-product .product-link {
	cursor: pointer;
	background: #009a66;
	color: #fff;
	padding: 0.4em 0.8em;
	display: inline-block;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
	border-radius: 7px;
}
.node-product .product-link:hover {
	background: #004e33;
}
.node-product .product-facts .product-link {
	width: 74px;
}
.node-product .field-name-field-product-data .field-items {
	display: none;
}
.flex-nav-container {
	float: right;
	margin-bottom: 0;
	position: relative;
	width: 100%;
}
/* =============================================================================
 *  Nyheds styles
 * ========================================================================== */
.node-type-simplenews #content {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	color: #505050;
}
.node-type-simplenews .bodyContent img {
	float: left;
	padding-bottom: 10px;
}
.node-type-simplenews table {
	border: 0;
}
.node-type-simplenews tbody, .node-type-simplenews tr {
	border-top: 0;
}
.node-type-simplenews td {
	padding: 0;
	vertical-align: top;
}
td.bodyContent {
	padding: 0 20px 20px 20px;
	border-bottom: 1px solid #eee;
}
.node-type-simplenews tr {
	background-color: #FFF;
}
.node-type-simplenews h4 {
	color: #009a66;
	font-size: 1.2em;
}
.node-type-simplenews td p {
	margin: 0;
}

/* =============================================================================
 *  Formularer	
 * ========================================================================== */
  .webform-component-fieldset {
	 clear:both;
 }
 
 .webform-component-textfield,
 .webform-component-email,
 .webform-component-number,
.webform-component-select {
	 width:50%;
	 float:left;
 }
 
  .webform-component-textfield input,
 .webform-component-email input,
 .webform-component-number input {
	 width:80%;
 }
 
.webform-component-textarea {
	clear:both;
	display: inline-block;
	width: 100%;
}

 /***FIRST STYLE THE BUTTON***/
.webform-client-form .form-submit,
#block-simplenews-1 .form-submit,
#block-system-main .form-submit{
	cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
	padding:4px 15px; /*add some padding to the inside of the button*/
	background:#009a66; /*the colour of the button*/
	border:1px solid #009a66; /*required or the default border for the browser will appear*/
	/*give the button curved corners, alter the size as required*/
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	/*style the text*/
	color:#f3f3f3;
	font-size:1.1em;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
.webform-client-form input.form-submit:hover, 
#block-simplenews-1 .form-submit:hover,
#block-system-main .form-submit:hover,
input#gobutton:focus{
background-color :#004e33; /*make the background a little darker*/
	
}

#block-system-main .form-submit{
	margin-right:20px;
}

#block-system-main .form-actions {
	clear:both;
	padding-top:10px;
}

.sf-depth-4 {
	display:none !important;
}


.flex-nav-container {
    float: right;
    margin-bottom: 0;
    position: relative;
    width: 100%;
}

.node-type-page-slideshow #content {
    width: 885px;
    margin: 0 auto;
}

.flexslider .flex-direction-nav {
    margin: 0;
    padding: 0;
}

.flex-direction-nav, .flex-direction-nav li {
    list-style: none;
}

