

/* -------------------------------------------------------------- 
  
   Reset.css
   * Resets default browser CSS styles.
   
   Original by Erik Meyer:
   * meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
   
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

html { height:100%; }
body { line-height: 1; color: #333; background: white; }

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.php] */

.clear { display: inline-block; }   
.clear:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }


/* -------------------------------------------------------------- 
   
   Typography.css
   * Sets some default typography.
  
-------------------------------------------------------------- */   

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5; /* Unitless for proper inheritance */
  color: #3b3b3b;
/*  letter-spacing: -0.4px;*/
}

/* This is where you set your desired font size. The line-height 
   and vertical margins are automatically calculated from this. 
   
   You have to add an extra calculation here because of IE, so that 
   all users may resize text manually in their browsers.
   
   The top one is for IE: The percentage is of 16px (default IE text size)
   10px is 62.5%, 12px is 75%, 13px is 81.25%, and so forth).
   The second value is what all other browsers see (the wanted font size). */
   
body          { font-size: 81.25%; line-height:1.2em; }   /* IE */
html > body   { font-size: 13px; line-height:1.2em; }  /* Other browsers */


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: bold; }

h1 { font-size: 2em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; line-height:1;  margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1em; }
p.last      { margin-bottom: 0; }
p img       { float: left; margin: 0; padding: 0; }
p img.top   { margin-top: 0; } /* Use this if the image is at the top of the <p>. */
img         { margin: 0; }

ul, ol      { margin:0; }
ul          { list-style-type: circle; }
ol          { list-style-type: decimal; }
dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}

a:focus, 
a:hover     { color: #000; border-bottom:1px dotted #000; }
a           { color: #000; text-decoration: none; outline:none; border-bottom:1px dotted #000; font-weight:bold; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin-top: 1.5em; font-style: italic; }
del         { color:#666; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; background: #ffc; }
dfn         { font-weight: bold; }
pre,code    { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'monotype.com', 'lucida console', monospace; line-height: 1.5; } 
tt          { display: block; margin: 1.5em 0; line-height: 1.5; }


/* Tables
-------------------------------------------------------------- */

table   { margin-bottom: 1.4em; }
th      { border-bottom: 0px solid #ccc; font-weight: bold; }
td      { border-bottom: 0px solid #ddd; }
th,td   { padding: 4px 10px 4px 0; }
tfoot   { font-style: italic; }
caption { background: #ffc; }

/* Use this if you use span-x classes on th/td. */
table .last { padding-right: 0; } 


/* Some default classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.quiet      { color: #666; }

.hide       { display: none; }
.highlight  { background:#ff0; }
.added      { color:#060; }
.removed    { color:#900; }

.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

.strong,
.bold		{ font-weight:bold; }



/*
** keep the whitespace in front of the ^=, hides rule from konqueror
** this is css3, the validator doesn't like it when validating as css2
*/
/*
a.external,
a[href ^="http://"] {
	background: url(/css/icons/external.png) center right no-repeat;
	padding-right: 15px;
}
a[href ^="https://"],
.link-https {
	background: url(/css/icons/lock_icon.gif) center right no-repeat;
	padding-right: 15px;
}
a[href ^="mailto:"],
.link-mailto {
	background: url(/css/icons/mail_icon.gif) center right no-repeat;
	padding-right: 20px;
}
a[href ^="news://"] {
	background: url(/css/icons/news_icon.png) center right no-repeat;
	padding-right: 20px;
}
a[href ^="ftp://"],
.link-ftp {
	background: url(/css/icons/file_icon.gif) center right no-repeat;
	padding-right: 18px;
}

a.noicon { background: none; padding:0; }
*/


/* -------------------------------------------------------------- 
   
   grid.css
   * Sets up an easy-to-use grid of 24 columns.
   
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Khoi Vinh         [subtraction.com]
   
   By default, the grid is 950px wide, with 24 columns 
   spanning 30px, and a 10px margin between columns.
   
   If you need fewer or more columns, use this 
   formula to find the new total width: 
   Total width = (columns * 40) - 10
   
   Read more about using a grid here:
   * subtraction.com/archives/2007/0318_oh_yeeaahh.php
   
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  width: 870px;
  margin: 0 auto;
}
/*.container { background: url(/css/grid.png); }*/


/* Columns
-------------------------------------------------------------- */

/* Use this class together with the .span-x classes
   to create any composition of columns in a layout. */
   
.column {
  float: left;
  margin-right: 10px;
}


/* The last column in a row needs this class. */
.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1   { width: 30px; }
.span-2   { width: 70px; }
.span-3   { width: 110px; }
.span-4   { width: 150px; }
.span-5   { width: 190px; }
.span-6   { width: 230px; }
.span-7   { width: 270px; }
.span-8   { width: 310px; }
.span-9   { width: 350px; }
.span-10  { width: 390px; }
.span-11  { width: 430px; }
.span-12  { width: 470px; }
.span-13  { width: 510px; }
.span-14  { width: 550px; }
.span-15  { width: 590px; }
.span-16  { width: 630px; }
.span-17  { width: 670px; }
.span-18  { width: 710px; }
.span-19  { width: 750px; }
.span-20  { width: 790px; }
.span-21  { width: 830px; }
.span-22  { width: 870px; }
.span-23  { width: 910px; }
.span-24  { width: 950px; margin: 0; }

/* Add these to a column to append empty cols. */
.append-1   { padding-right: 40px; }  
.append-2   { padding-right: 80px; } 
.append-3   { padding-right: 120px; } 
.append-4   { padding-right: 160px; } 
.append-5   { padding-right: 200px; } 
.append-6   { padding-right: 240px; } 
.append-7   { padding-right: 280px; } 
.append-8   { padding-right: 320px; } 
.append-9   { padding-right: 360px; } 
.append-10  { padding-right: 400px; } 
.append-11  { padding-right: 440px; } 
.append-12  { padding-right: 480px; } 
.append-13  { padding-right: 520px; } 
.append-14  { padding-right: 560px; } 
.append-15  { padding-right: 600px; } 
.append-16  { padding-right: 640px; } 
.append-17  { padding-right: 680px; } 
.append-18  { padding-right: 720px; } 
.append-19  { padding-right: 760px; } 
.append-20  { padding-right: 800px; } 
.append-21  { padding-right: 840px; } 
.append-22  { padding-right: 880px; } 
.append-23  { padding-right: 920px; } 

/* Add these to a column to prepend empty cols. */
.prepend-1   { padding-left: 40px; }  
.prepend-2   { padding-left: 80px; } 
.prepend-3   { padding-left: 120px; } 
.prepend-4   { padding-left: 160px; } 
.prepend-5   { padding-left: 200px; } 
.prepend-6   { padding-left: 240px; } 
.prepend-7   { padding-left: 280px; } 
.prepend-8   { padding-left: 320px; } 
.prepend-9   { padding-left: 360px; } 
.prepend-10  { padding-left: 400px; } 
.prepend-11  { padding-left: 440px; } 
.prepend-12  { padding-left: 480px; } 
.prepend-13  { padding-left: 520px; } 
.prepend-14  { padding-left: 560px; } 
.prepend-15  { padding-left: 600px; } 
.prepend-16  { padding-left: 640px; } 
.prepend-17  { padding-left: 680px; } 
.prepend-18  { padding-left: 720px; } 
.prepend-19  { padding-left: 760px; } 
.prepend-20  { padding-left: 800px; } 
.prepend-21  { padding-left: 840px; } 
.prepend-22  { padding-left: 880px; } 
.prepend-23  { padding-left: 920px; } 


/* Border on right hand side of a column. */
.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #eee;
}


/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column. */

.pull-1  { margin-left: -40px; }
.pull-2  { margin-left: -80px; }
.pull-3  { margin-left: -120px; }
.pull-4  { margin-left: -160px; }

.push-0  { margin: 0 0 0 18px; }
.push-1  { margin: 0 -40px 0 18px; }
.push-2  { margin: 0 -80px 0 18px; }
.push-3  { margin: 0 -120px 0 18px; }
.push-4  { margin: 0 -160px 0 18px; }
.push-0, .push-1, .push-2, .push-3, .push-4 { float: right; }


/* Misc classes and elements
-------------------------------------------------------------- */

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #eee; 
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
/*  clear: both; */
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.4em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear { display: inline-block; }   
.clear:after, .container:after {
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }


/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

form table,
form table tr,
form table td { vertical-align:middle; }

label { font-weight: bold; cursor:pointer; }


/* Fieldsets */
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }

/* Text fields */
input.text, input.title   { width: 250px; margin:0; }
input.text, input.title   { border:1px solid #bbb; background:#f6f6f6; padding:5px; }
input.text:focus,
input.title:focus         { border:1px solid #999; background:#fff; }
input.title               { font-size:1.5em; }
/* IE */
input.input-focus         { border:1px solid #999; background:#fff; }

/* Textareas */
textarea            { width: 400px; height: 150px; margin:0.5em 0.5em 0.5em 0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { border:1px solid #999; background:#fff; }
/* IE */
textarea.textarea-focus { border:1px solid #999; background:#fff; }

/* Select fields */
select              { border:1px solid #ccc; background:#f6f6f6; width:200px; }
select:focus        { border:1px solid #999; background:#fff; }
/* IE */
select.select-focus { border:1px solid #999; background:#fff; }

/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #529214; border-color: #C6D880; }
.error a    { color: #D12F19; }
.notice a   { color: #817134; }
.success a  { color: #529214; }


/* -------------------------------------------------------------- 
  
   buttons.css
   * Gives you some great CSS-only buttons.
   
   Created by Kevin Hale [particletree.com]
   * particletree.com/features/rediscovering-the-button-element

   See Readme.txt in this folder for instructions.

-------------------------------------------------------------- */

a.button, button {
/*  display:block;
  float:left;*/
  margin:0 0 0 0;
  padding:5px 10px 5px 7px;   /* Links */
  
  border:1px solid #dedede;
  border-top:1px solid #eee;
  border-left:1px solid #eee;

  background-color:#f5f5f5;
  font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
  font-size:100%;
  line-height:130%;
  text-decoration:none;
  font-weight:bold;
  color:#565656;
  cursor:pointer;
}
button {
  width:auto;
  overflow:visible;
  padding:4px 10px 3px 7px;   /* IE6 */
}
button[type] {
  padding:4px 10px 4px 7px;   /* Firefox */
  line-height:17px;           /* Safari */
}
*:first-child+html button[type] {
  padding:4px 10px 3px 7px;   /* IE7 */
}
button img, a.button img{
  margin:0 3px -3px 0 !important;
  padding:0;
  border:none;
  width:16px;
  height:16px;
  float:none;
}


/* Button colors
-------------------------------------------------------------- */

/* Standard */
button:hover, a.button:hover{
  background-color:#dff4ff;
  border:1px solid #c2e1ef;
  color:#336699;
}
a.button:active{
  background-color:#6299c5;
  border:1px solid #6299c5;
  color:#fff;
}

/* Positive */
body .positive {
  color:#529214;
}
a.positive:hover, button.positive:hover {
  background-color:#E6EFC2;
  border:1px solid #C6D880;
  color:#529214;
}
a.positive:active {
  background-color:#529214;
  border:1px solid #529214;
  color:#fff;
}

/* Negative */
body .negative {
  color:#d12f19;
}
a.negative:hover, button.negative:hover {
  background:#fbe3e4;
  border:1px solid #fbc2c4;
  color:#d12f19;
}
a.negative:active {
  background-color:#d12f19;
  border:1px solid #d12f19;
  color:#fff;
}


/* -------------------------------------------------------------- 
  
   CSS Framework
   
   * Native site styles *
      
-------------------------------------------------------------- */


/* -------------------------------------------------------------- 
	Default classes
---------------------------------------------------------------*/
.left   { float:left; }
.right  { float:right; }

.hide   { display:none; }

.reset-margin   { margin:0; } 
.reset-padding  { padding:0; } 
.reset          { margin:0; padding:0; } 

.align-justify  { text-align:justify; } 
.align-left     { text-align:left; } 
.align-center   { text-align:center; } 
.align-right    { text-align:right; } 


/* -------------------------------------------------------------- 
	Body and Site wrapper
---------------------------------------------------------------*/
body { background: #000; }
.wrapper { width: 950px; margin:0px auto; padding-bottom:25px; background: #fff url('/images/wrapper.bg.bottomcontact.jpg') bottom right no-repeat; }


/* -------------------------------------------------------------- 
	Brand colours
---------------------------------------------------------------*/
.black  { color: #636363; }
.orange { color: #fbb514; }
.green  { color: #b2c70f; }
.white  { color: #ffffff; }
.grey   { color: #797979; }
.yellow { color: #ffc20e; }


/* -------------------------------------------------------------- 
	Custom styles
---------------------------------------------------------------*/

.header { text-align:center; }
.header img { display:block; }

.navigation_row1 { background: url('/images/navigation.bg.off.jpg') bottom left;  }
.navigation_row1 ul { list-style:none; }
.navigation_row1 ul li { float:left; }
.navigation_row1 ul li a { display:block; text-align:center; font-size:0.9em; border:0; text-decoration:none; height:30px; font-weight:bold; text-transform:uppercase; padding:15px 7px 0px 7px; color: #fff; background: url('/images/navigation.divider.jpg') center right no-repeat; }
.navigation_row1 ul li a.arrow { padding:0; background: none; }
.navigation_row1 ul li a:hover { text-decoration:underline; border:0; font-weight:bold; color: #fff; }
.navigation_row1 ul li a.selected { background: url('/images/navigation.bg.on.jpg') bottom left repeat-x; }
.navigation_row1 ul li a.last { background: none; }

.searchinput { padding:10px 7px 0px 7px; }
.searchinput input { vertical-align:middle; }
.searchinput input.searchquery { width:65px; padding:2px; }
.searchinput input.searchgo { }

.navigation_row2 { background: #ffc20e; }
.navigation_row2 ul { list-style:none; padding:0; margin:0; }
.navigation_row2 ul li { float:left; }
.navigation_row2 ul li a { display:block; background: #ffc20e; font-weight:normal; padding:6px 4px; color: #000; font-size:0.8em; border:0; border-right: 1px solid #ffe8a6; }
.navigation_row2 ul li a:hover { background: #ffda6e; border:0; font-weight:normal; border-right: 1px solid #ffe8a6;  }
.navigation_row2 ul li a.selected { background: #ffda6e; }
.navigation_row2 ul li a.last { border:0; }


.breadcrumb { margin:18px 0px; padding-left:15px; font-size:0.9em; }
.breadcrumb a { color: #636363; border:0; font-weight:normal; }
.breadcrumb a:hover { color: #fbb514; border:0; font-weight:normal; }

.pagebody { }

.footer { margin-top:20px; font-size:0.85em; }
.footer p { margin:0 0 7px 0; padding:0; }
.footer p.last { margin:0; }
.footer img { margin-right:4px; }
.footer a { color: #636363; font-weight:normal; border:0; }
.footer a:hover { color: #fbb514; font-weight:normal; border:0; }

.debugFooter { width:940px; margin:20px auto 0 auto; padding:5px; background: #666; border:1px dotted #fbb514; color: #fff; }
.debugFooter p { margin:0; padding:0; }

.rightColumn { margin-bottom:50px; text-align:right; }


.tabs { background: #fff; margin:0px; }
/*
.tabs ul { list-style:none;  }
.tabs ul li { float:left; }
.tabs ul li a { display:block; color: #000; padding:10px; background: #FFC20E; margin-right:1px; border-bottom:1px solid white; text-transform:uppercase; font-size:0.8em; font-weight:bold; }
.tabs ul li a:hover { background: #FFC20E; color: #000; font-weight:bold; }
.tabs ul li a.selected { background: #fff0c3; border:1px solid #fff0c3; }
*/

.pagecontent-frame { background: #fff0c3 url('/images/pagecontent.bg.curve.jpg') top right no-repeat; padding:5px 5px 0px 5px; }
.pagecontent { padding:10px 10px 0px 10px; background: url('/images/pagecontent.photo.1.jpg') bottom right no-repeat; min-height:460px; }
.pagecontent-nobg { padding:10px 10px 0px 10px; min-height:460px; }

.pagecontent-left  { margin-right:185px; border:0px solid red; padding-right:5px; }
.pagecontent-right { float:right; width:180px; min-height:180px; border-left:2px solid #cfc3a2; }

.pagecontent ul,
.pagecontent-nobg ul { list-style:none; margin:0 0 10px 0; padding:0; }
.pagecontent ul li,
.pagecontent-nobg ul li { margin:0; padding:0; }
.pagecontent-nobg ul li,
.pagecontent ul li { background: url('/images/arrow.png') left 3px no-repeat; padding-left:20px; }

.promotiles-inner { text-align:center; }
.promotiles-inner a,
.promotiles-inner a:hover { border:0; }

.promotiles a,
.promotiles a:hover { border:0; }
.promotile-top    { width:164px; height:56px; margin-bottom:5px; background: url('/images/promotile.top.jpg') center center no-repeat; }
.promotile-middle { width:164px; height:56px; background: url('/images/promotile.middle.jpg') center center no-repeat; }
.promotile-bottom { width:164px; height:56px; margin-top:5px; background: url('/images/promotile.bottom.jpg') center center no-repeat; }

.promotile-news { width:164px; margin-bottom:25px; text-align:left; }
.promotile-news-header { }
.promotile-news-content { border-left:2px solid #fff3cf; border-bottom:2px solid #fff3cf; border-right:2px solid #fff3cf; }
.promotile-news .item { padding:10px 15px; }
.promotile-news h1 { color: #b2c70f; font-size:13px; font-weight:bold; text-transform: uppercase; }
.promotile-news p { margin:0 0 0.5em 0; padding:0; font-size:0.9em; }
.promotile-news a { border:0; }

.footeremaillink { position:absolute; bottom:0; right:0; width:262px; height:60px; display:block; border:0; text-decoration:none; }
.footeremaillink:hover { border:0; text-decoration:none; }

.left-ul-header { margin-bottom:10px; }
.left-ul { list-style:none; margin:0 0 0 28px; padding:0; }
.left-ul li { margin:0; padding:0; }
.left-ul li a { display:block; margin-bottom:5px; padding-left:20px; color: #767676; border:0; text-decoration:none; background: url('/images/arrow.png') left 3px no-repeat; }
.left-ul li a:hover { text-decoration:none; color: #000; border:0; }
.left-ul li a.selected { font-weight:bold; color: #fbb514; text-decoration:none; }

.sitemap-div { margin-left:20px; }
.sitemap-div ul li { padding-bottom:5px; }
.sitemap-div ul li a { color: #767676; }
.sitemap-div ul li a:hover { color: #000; }
.sitemap-div ul li ul { padding-top:3px; }
.sitemap-div ul li ul li { background: url('/images/li-treesub.gif') left 3px no-repeat; }
.sitemap-div ul li ul li a,
.sitemap-div ul li ul li a:hover { font-weight:normal; }


.vacancies h4 { margin-bottom:0px; }
.vacancies h4 span { font-size:12px; }
.vacancy_fullinfo { display:none; padding-top:5px; }
.vacancy_fullinfo p { margin:0; padding:0; }
.vacancy_fullinfo p.description { margin-top:5px; }
.vacancies ul li { padding-bottom:15px; }

.homepagepanels a { border:0; font-weight:normal; }
.homepagepanels a:hover { border:0; font-weight:normal; }

.morelink { margin:20px 0px; }
.morelink a { border:0; }
.morelink a:hover { border:0; }

.stickyInactive { color: #AAA; }

.newsletterSubscribe { margin:25px 0px; width:194px; padding:0px; }
.newsletterSubscribe div { margin:3px 0px; text-align:center; padding:2px 5px; }
.newsletterSubscribe p { margin:0; padding:0; font-size:10px; text-align:left; }
.newsletterSubscribe div.theheader { margin:0px; background: #ffc20e; font-weight:bold; padding:0px; }
.newsletterSubscribe div.thebody { border: 2px solid #ffc20e; background: #d0d0d0; margin:0; }
.newsletterSubscribe input.text { font-size:10px; width:90%; }
.newsletterSubscribe button { width:100%; }



#bestlicensetopractice-button {
	width:172px;
	height:208px;
	position:absolute;
	top:-208px;
	left:32px;
	z-index:200;
	cursor:pointer;
}
	#bestlicensetopractice-button a {
		display:block;
		width:172px;
		height:208px;
		background: url('/images/bestlicensetopractice-button.png');
		text-decoration:none;
		border:0;
		cursor:pointer;
	}
		#bestlicensetopractice-button a span {
			display:none;
		}


/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
/*
    font-family: "Trebuchet MS", Trebuchet, Verdana, Helvetica, Arial, sans-serif;
*/
    font-size: 11px;
}
.ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
    float: left;
    margin: 0 0 0 1px;
    min-width: 84px; /* be nice to Opera */
}
.ui-tabs-nav a, .ui-tabs-nav a span {
    display: block;
    padding: 0 10px;
    background: url(/images/tab.png) no-repeat;
}
.ui-tabs-nav a {
    margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    color: #000;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
	text-transform:uppercase;
	border:0;
}
.ui-tabs-nav .ui-tabs-selected a {
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
    color: #000;
	font-weight:bold;
	border:0;
}
.ui-tabs-nav a span {
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 12px;
    padding-right: 0;
	padding-bottom:6px;
}
*>.ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.ui-tabs-nav .ui-tabs-selected a span {
    padding-bottom: 6px;
}
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active {
    background-position: 100% -150px;
}
.ui-tabs-nav a, .ui-tabs-nav .ui-tabs-disabled a:hover, .ui-tabs-nav .ui-tabs-disabled a:focus, .ui-tabs-nav .ui-tabs-disabled a:active {
    background-position: 100% -100px;
}
.ui-tabs-nav .ui-tabs-selected a span, .ui-tabs-nav a:hover span, .ui-tabs-nav a:focus span, .ui-tabs-nav a:active span {
    background-position: 0 -50px;
}
.ui-tabs-nav a span, .ui-tabs-nav .ui-tabs-disabled a:hover span, .ui-tabs-nav .ui-tabs-disabled a:focus span, .ui-tabs-nav .ui-tabs-disabled a:active span {
    background-position: 0 0;
}
.ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected a:visited, .ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
.ui-tabs-nav .ui-tabs-unselect a:hover, .ui-tabs-nav .ui-tabs-unselect a:focus, .ui-tabs-nav .ui-tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.ui-tabs-disabled {
    opacity: .6;
    filter: alpha(opacity=60);
}
.ui-tabs-panel {
    border-top: 0px solid #97a5b0;
    padding: 1em 7px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}
.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(/images/tabs.loading.gif) no-repeat 0 50%;
}

/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}


.ui-tabs-nav a.tabLevel1, .ui-tabs-nav a.tabLevel1 span {
    background-image: url(/images/tab.png);
	background-repeat: no-repeat;
}
.ui-tabs-nav a.tabLevel2, .ui-tabs-nav a.tabLevel2 span {
    background-image: url(/images/tab.level2.png);
	background-repeat: no-repeat;
}
.ui-tabs-nav a.tabLevel3, .ui-tabs-nav a.tabLevel3 span {
    background-image: url(/images/tab.level3.png);
	background-repeat: no-repeat;
}
