/*----------------------------------------------------------------------------
 * 
 * common.css: global reset styles and helper classes used EVERYWHERE
 *
 *---------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------
 * Reset styles
 *---------------------------------------------------------------------------*/

* {
	margin: 0px;
	padding: 0px;
}

html, body {
	min-height: 100%;
	height: 100%;
	font-family: arial, helvetica, sans-serif;
	font-size: 0.9em;
}

html>body, html>body #container {
    height: auto;
}

body { 
	text-align: left;
}

p {
	margin: 0 0 1em 0;
}

img, iframe { 
    border: none;
}

a, a:link {}
a:visited {}
a:hover {}
a:active {}

h1, h2, h3, h4, h5, h6 {
	font-family: "trebuchet ms", arial, helvetica, sans-serif;
	font-weight: bold;
	font-size: 100%;
	clear: left;
}

em {
	font-style: italic;
}
	
input, textarea, select {
	margin: 0;
	padding: 1px;
	font-size: 100%;
	font-family: inherit;
}
	
select { padding: 0; }

strong, b { font-weight: bold; }


/*----------------------------------------------------------------------------
 * Global helper classes
 *---------------------------------------------------------------------------*/

ul.inline {
	list-style-type: none;
	margin: 0;
}

ul.inline li {
	display: inline;
	margin-right: 1em;
}

.hidden {
	display: none;
}

.clear {
    clear: both;
    display: block;
}
    
.clear_left {
    clear: left;
    display: block;
}
    
.clear_right {
    clear: right;
    display: block;
}
    
.float_left {
    float: left;
}
    
.float_right {
    float: right;
}

.text_left {
    text-align: left;
}
    
.text_center {
    text-align: center;
}
    
.text_right {
    text-align: right;
}

br.clear {
    height: 1px;
}

.print {
	display: none;
	}


/*----------------------------------------------------------------------------
 * Pagination
 *
 * Should this be here? Probably not.  It could perhaps be in a pagination.css
 * file, or we could create a folder of pagination stylesheets for import.
 *
 * Credits: Dynamic Drive CSS Library
 * URL: http://www.dynamicdrive.com/style/csslibrary/item/css-pagination-links/ 
 *---------------------------------------------------------------------------*/

.pagination {
    padding: 0;
    margin: 0;
}

.pagination ul {
    margin: 0; padding: 0;
    text-align: left; /*Set to "right" to right align pagination interface*/
    font-size: 0.9em;
}

.pagination li {
    list-style-type: none;
    display: inline;
    padding-bottom: 0;
}

.pagination a, .pagination a:visited {
    padding: 2px 5px;
    background: #e7e7e7;
    text-decoration: none; 
    color: #666;
}

.pagination a:hover, .pagination a:active {
    color: #000;
    background: #ccc;
}

.pagination li.currentpage {
    font-weight: bold;
    padding: 2px 5px;
    background-color: #999;
    color: #fff;
}

.pagination li.disablepage {
    padding: 2px 5px;
    background: transparent;
    color: #ccc;
}

.pagination li.nextpage {
    font-weight: bold;
}

/* IE 6 and below. Adjust non linked LIs slightly to account for bugs */
* html .pagination li.currentpage, * html .pagination li.disablepage { 
    margin-right: 5px;
    padding-right: 0;
}

.pagination.bottom {
	margin-bottom: 1em;
}


/*----------------------------------------------------------------------------
 * Terms
 *---------------------------------------------------------------------------*/

div#terms_container_1 {
	border: 1px solid #ccc;
}

div#terms_container_2 {
	margin: 2px;
	padding: 10px;
	width: auto;
	height: 260px;
	overflow: auto;
}

.terms_content {
	font-family: monospace;
	font-size: 1.1em;
	text-align: left;
	line-height: 1.25em;
	color: #666;
	margin-bottom: 1em;
}

.terms_content * {
	font-family: monospace;
}

#content .terms_content a {
	color: #666;
}

.terms_content h1, h2, h3, h4, h5 {
	margin-bottom: 0.5em;
}

.terms_content p {
	margin-bottom: 1em;
}

.terms_content h2 {
	font-size: 1.5em;
	line-height: 1.1em;
	margin: 0 0 0.5em 0;
}

.terms_content h3 {
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 1em 0 0.5em 0;
}

.terms_content dt {
	width: 4em;
	float: left;
	clear: left;
}

.terms_content dd {
	margin: 0 0 1em 4.5em;	
}

.terms_content ul, ol {
	margin-top: 0.75em;
	margin-bottom: 1em;
	margin-left: 5em;
}

.terms_content li {
	margin-bottom: 0.5em;
}

.terms_content ul {
	list-style: disc;
}

.terms_content ol {
	list-style: lower-roman;
}

/*----------------------------------------------------------------------------
 * Light view forms
 *---------------------------------------------------------------------------*/
body.lightview {
  background-image: none;
  background-color: #fff;
}
/*----------------------------------------------------------------------------
 * Custom button styling
 *---------------------------------------------------------------------------*/

.button { display: block; position: relative; background: #ffae00; padding: 5px; float: right; color: #fff; text-decoration: none; cursor: pointer; line-height: normal; font-weight: bold;}
.button:hover { background:#00a12d; }
.button * { font-style: normal; background-image: url("/global/images/btn2.png"); background-repeat: no-repeat; display: block; position: relative; }
.button i { background-position: top left; position: absolute; margin-bottom: -5px; top: 0; left: 0; width: 5px; height: 5px; }
.button span { background-position: bottom left; left: -5px; padding: 0 0 5px 10px; margin-bottom: -5px; }
.button span i { background-position: bottom right; margin-bottom: 0; position: absolute; left: 100%; width: 10px; height: 100%; top: 0; }
.button span span { background-position: top right; position: absolute; right: -10px; margin-left: 10px; top: -5px; height: 0; }
* html .button span, * html .btn i { float: left; width: auto; background-image: none; cursor: pointer; }
.button[class] { background-image: url("/global/images/patterns/button_shade.png"); background-position: bottom; }
form .button { float: left; }


/*----------------------------------------------------------------------------
 * 
 * common/layout.css: cross-theme stylesheet for layout styles applicable to all agencies.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core layout components.
 *
 *---------------------------------------------------------------------------*/
 
 
  
  
 	
/*----------------------------------------------------------------------------
 * Logo
 *---------------------------------------------------------------------------*/

h1 a {
	text-decoration: none;
	font-size: 2.2em;
}


/*----------------------------------------------------------------------------
 * 
 * common/content.css: cross-theme stylesheet for content styles applicable to all agencies.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core content components (e.g. login, registration).
 *
 *---------------------------------------------------------------------------*/
 
 
/*----------------------------------------------------------------------------
 * User info area
 *---------------------------------------------------------------------------*/

div#header_right {
    text-align: right;
    }


/*----------------------------------------------------------------------------
 * Sidebar
 *---------------------------------------------------------------------------*/

#sidebar #uhome_module {
    text-align: center;
    }
    
#sidebar #uhome_module p {
    margin: 1em;
    }

	
/*----------------------------------------------------------------------------
 * Industry logos
 *---------------------------------------------------------------------------*/

#site_industry_logos_content {
	text-align: center;
	margin-top: 10px;
	padding: 10px;
}

#site_industry_logos_content li {
	padding: 10px 10px 25px 10px;
	display: inline;
}

#site_industry_logos_content li img { 
	vertical-align: middle;
}


/*----------------------------------------------------------------------------
 * 
 * common/controllers.css: cross-theme stylesheet for content styles applicable to all agencies.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core controller components (e.g. login, registration).
 *
 *---------------------------------------------------------------------------*/
 
 
 /*----------------------------------------------------------------------------
 * Registration
 *---------------------------------------------------------------------------*/

dl#area_tree_selector dd {
    border: 1px solid #ccc;
    background: #eee;
    display: inline-block;
    }

dl#area_tree_selector dd div {
    padding: 1em;
	}
	
ul.tree {
    }
    
ul.tree input {
    margin-left: 0.5em;
    }
    
ul.tree li {
    }
    
ul.tree ul {
    margin-bottom: 0.5em;
    }
    
    
/*----------------------------------------------------------------------------
 * Profile: Saved searches
 *---------------------------------------------------------------------------*/

table {
    width: 100%;
    }
    
table tr {
    vertical-align: top;
    }
    
table th {    
    text-align: left;
    }
    
table thead th {
    border-bottom: 1px solid #ccc;
    padding: 0.25em;
    }
    
table tbody th {
    font-weight: normal;
    }
    
table tbody th,
table td {
    padding: 0.25em;
    }
    
    
/*----------------------------------------------------------------------------
 * Account: Registration
 *---------------------------------------------------------------------------*/

body.account_register .item {
    margin-bottom: 0;
    }
    
	
/*----------------------------------------------------------------------------
 * Search: results
 *---------------------------------------------------------------------------*/

.search_header {
	margin-bottom: 0.5em;
	}
	
.search_footer {
	margin-top: 0.5em;
	}
	
ul.search_actions {
	margin: 0.25em 0 0.75em 0;
	}
	
#search_header .pagination,
#search_footer .pagination {
	margin: 0 0 1em 0;
	}

	
/*----------------------------------------------------------------------------
 * Search: results
 *---------------------------------------------------------------------------*/

body.contact select {
	width: 90%;
	}
	
body.contact textarea {
	width: 90%;
	height: 10em;
	}


/*----------------------------------------------------------------------------
 * Branches
 *---------------------------------------------------------------------------*/

body.branches div#gmap {
    height: 300px;
    margin-bottom: 1em;
    }
    
body.branches .contact_details {
	font-size: 0.9em;
	margin-bottom: 8px;
	}
	
body.branches .contact_details ul {
	list-style: none;
	list-position: inside;
	margin-left: 0px;
	}

body.branches .contact_details .photo {
	float: right;
	border:none;
        margin-left: 5px;
}

body.branches p.more {
	float: right;
	margin: 0 0 1em 0;
	}
	
body.branches #main p.more a {
	font-size: 0.85em;
	display: block;
	padding: 3px 22px 6px 0;
	margin-right: 4px;
	background: right 50% no-repeat url(/global/images/icons_small/navigate_right2_grey.png);
	}

/*----------------------------------------------------------------------------
 * Lightview - some styles to override the controller ones for tables
 *---------------------------------------------------------------------------*/

body.lightview {
	min-height: 0;
}

body.lightview thead tr th {
	border-bottom:2px solid #FF9900;
}

body.lightview tbody tr th,
body.lightview tbody tr td { 
	padding: 0.5em 1em 0.35em;
	text-align: left;
}

body.lightview table.list {
	width: 780px;
}

body.lightview p {
	padding: 1em 0 0;
	text-align: left;
	font-size: 1em;
}

body.lightview a {
	border-bottom: 1px dotted #999999;
	color: black;
	text-decoration: none;
}

body.lightview a:hover {
	background-color: #FFFBCF;
}

/*----------------------------------------------------------------------------
 * 
 * common/layout.css: cross-theme stylesheet for layout styles applicable to all site types eg portal & agency.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core layout components.
 *
 *---------------------------------------------------------------------------*/
 
 .png_fix { behavior: url(/global/stylesheets/iepngfix.htc) }
 
 
 /*----------------------------------------------------------------------------
 * Administration toolbar
 *---------------------------------------------------------------------------*/
 
#admin_container {
    font-size: 0.85em;
    }

#admin_container p {
    display: block;
    padding: 0.5em;
    background: #ccc;
    position: absolute;
    top: 0; left: 0;
    border-bottom: 1px solid #bbb;
    border-right: 1px solid #bbb;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    }

body #admin_container a {
    color: #fff;
    }
    
#admin {
    padding: 0.5em 0 0 0.5em;
    margin: 0;
    background: #ccc;
    color: #fff;
    border-bottom: 1px solid #bbb;
    }

#admin.hover {
    background: #aaa;
    border-bottom-color: #999;
    }

body #admin_container a:hover {
    color: black;
    }
    
#admin ul {
    margin: 0 0 0.5em 0;
    }

#admin li.sep {
	padding-right: 1.2em;
	border-right: 1px solid #999;
	}
	
#admin h3 {
    margin: 0 1em 0.5em 0;
    float: left;
    }

	
 /*----------------------------------------------------------------------------
 * Administration toolbar
 *---------------------------------------------------------------------------*/
 
 #slideshow div#slideshow_overlay {
    opacity: 0.6;
    filter: alpha(opacity=60);
	-moz-opacity: 0.6;
    bottom: 0px;
    top: auto;
    left: 0px;
    font-family: trebuchet, "trebuchet MS", helvetica, sans-serif;
    position: absolute;
    z-index: 999;
    color: black;
    background: #fff; 
    width: 100%; 
    font-size: 1.3em; 
    font-weight: bold;
    padding: 0.25em 0;
    margin: 0;
    }

#slideshow_overlay p {
	margin: 0 0.5em;
	}


	

/*----------------------------------------------------------------------------
 * 
 * common/content.css: cross-theme stylesheet for content styles applicable to all sites.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core content components (e.g. login, registration).
 *
 *---------------------------------------------------------------------------*/
 
 
/*----------------------------------------------------------------------------
 * General
 *---------------------------------------------------------------------------*/

ul {
    margin: 0 0 1em 2em;
    }

h2, h3, h4, h5, h6 {
	line-height: 1.25em;
	}
	

/*----------------------------------------------------------------------------
 * Icons
 *---------------------------------------------------------------------------*/

td.icon_with_filename a.pdf {
    display: block;
    padding: 58px 17px 6px 20px;
    background: 50% 6px url(/global/images/icons_misc/document_pdf_48x48.png) no-repeat;
    font-size: 0.8em;
	color: #666;
    text-decoration: none;
    color: #666;
	}


/*----------------------------------------------------------------------------
 * Maps
 *---------------------------------------------------------------------------*/
 
#gmap {
	height: 300px;
	}
 
#gmap .bubble {
	padding: 0;
	color: #333;
	font-size: 0.9em;
	}

html body #gmap .bubble h3 {
	color: #666;
	margin: 0 1em 0.25em 0; 
	padding: 0;
	border: none;
	font-size: 1.1em;
	}
	
#gmap .bubble p.thumbnail {
	float: left;
	margin: 0 10px 0 0;
	}

#gmap .bubble p.thumbnail img {
	width: 80px; height: 60px;
	border: none;
	}
	
#gmap .bubble ul {
	float: left;
	list-style: none;
	margin: 0;
	}
	
#gmap .bubble ul li {
	margin: 0 0 0.25em 0;
	}
	
#gmap .bubble ul li.more {
	font-size: 0.9em;
	color: #666;
	margin-top: 0.75em;
	}

#gmap .bubble p.short_description {
	clear: left;
}


/*----------------------------------------------------------------------------
 * Forms
 *---------------------------------------------------------------------------*/
 
dd ul {
 	margin: 0;
	list-style-type: none;
	}


/*----------------------------------------------------------------------------
 * Trees
 *---------------------------------------------------------------------------*/

ul.tree li input {
	line-height: 1.5em;
}


/*----------------------------------------------------------------------------
 * Photos
 *---------------------------------------------------------------------------*/

div.media_block {
    margin-bottom: 20px;
}

div.media_block p {
 	margin: 0 0 0.1em;
    font-size: 0.9em;
}
	



/*
 * CSS for Standard tree layout
 * Copyright (C) 2005 SilverStripe Limited
 * Feel free to use this on your websites, but please leave this message in the fies
 * http://www.silverstripe.com/blog
 */
 
ul.tree{
	width: auto;
	padding-left : 0px;
	margin-left : 0px;
}

ul.tree img{
 	border : none;
}
 

ul.tree, ul.tree ul {
	padding-left: 0;
}

ul.tree ul {
	margin-left: 16px;
		
}
ul.tree li.closed ul {
	display: none;
}


ul.tree li {
	list-style: none;
	background: url(i-repeater.gif) 0 0 repeat-y;
	display: block;
	width: auto;
	/* background-color:#FFFFFF; */
}



ul.tree li.last {
	list-style: none;
	background-image: none;
}



/* Span-A: I/L/I glpyhs */
ul.tree span.a {
	background: url(t.gif) 0 50% no-repeat;
	display: block;
}
ul.tree span.a.last {
	background: url(l.gif) 0 50% no-repeat;
}

/* Span-B: Plus/Minus icon */
ul.tree span.b {
    width: 12px;
    padding-left: 12px;
}
ul.tree span.a.children span.b {
	background: url(minus.gif) 0 50% no-repeat;
	cursor: pointer;
}
ul.tree li.closed span.a.children span.b {
	background: url(plus.gif) 0 50% no-repeat;
	cursor: pointer;
}

/* Span-C: Spacing and extending tree line below the icon */
ul.tree span.c {
	margin-left: 6px;
}
ul.tree span.a.children span.c {
	background: url(i-bottom.gif) 0 50% no-repeat;
}
ul.tree span.a.spanClosed span.c {
	background-image: none;
}


/* Anchor tag: Page icon */
ul.tree a  {
	white-space: nowrap;
	overflow: hidden;
	
	padding: 10px 0px 10px 18px;
	line-height: 16px;

	background: url(page-file.png) 0 50% no-repeat;
}
ul.tree span.a.children a {
	background-image: url(page-openfoldericon.png);
}
ul.tree span.a.children.spanClosed a {
	background-image: url(page-foldericon.png);
}

/* Unformatted tree */
ul.tree.unformatted li {
	background-image: none;
	padding-left: 16px;
}
ul.tree.unformatted li li {
	background-image: none;
	padding-left: 0px;
}

/*
 * Divs, by default store vertically aligned data
 */

ul.tree li div {
	float: right;
	clear: right;
	height: 1em;
	margin-top: -26px;
}
/* As inside DIVs should be treated normally */
ul.tree div a  {
	padding: 0;
	background-image: none;
	min-height: auto;
	height: auto;
}

ul.tree li A:link, ul.tree li A:hover, ul.tree li A:visited {
	color : #111111;
}


ul.tree li .over{
	background-color : pink;
}


/* lightview.css
   http://www.nickstakenburg.com/projects/lightview
*/

#lightview {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 150px;
	width: 150px;
	margin: -75px 0 0 -75px;
	padding: 0;
	text-align: left;
}

/* The container that holds everything */
.lv_Container {
	position: relative;
	width: 100%;
	height: 100%;
	background: none;
	padding: 0;
	margin: 0;
}

.lv_Button {
	cursor: pointer;
	text-decoration: none;
	border: none;
	background: none;
	margin: 0;
	padding: 0;
}

/* The buttons on the side when you view a gallery */
.lv_Sides {
	position: absolute;
	top: 50%;
	left: 0;
	clear: both;
	width: 100%;
	padding: 0;
	margin: 0;
}
.lv_Sides * { padding: 0; margin: 0; }
.lv_Sides li {
	list-style-type: none;
	position: relative;
}

.lv_PrevSide { float: left; }
.lv_NextSide { float: right; }
.lv_Sides .lv_Wrapper {
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.lv_Sides .lv_Button {
	float: left;
	background: none;
}

/* The frames above and below the center, that hold the corners.
   It's recommended not to change anything here, a lot is done in
   javascript to build further upon this based on your settings.
*/
.lv_Frames {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0;
	margin: 0;
}
.lv_Frames li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.lv_Frame {
	width: 100%;
	display: block;
}
.lv_Frame * { padding: 0; margin: 0; }
.lv_FrameTop {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
}
.lv_FrameBottom {
	position: relative;
	float: left;
	clear: both;
}

.lv_Liquid {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
	clear: both;
}
.lv_Liquid .lv_Filler {
	position: absolute;
	height: 100%;
	width: 2px;
	top: 0;
	left: 50%;
}

.lv_Half {
	display: block;
	height: 100%;
	clear: both;
	line-height: 0px;
}
.lv_Half li { list-style-type: none; }
.lv_Corner {
	float: left;
	position: relative;
}
.lv_CornerTr, .lv_CornerBr { float: right; }

.lv_Fill {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.lv_Half .lv_CornerWrapper {
	float: left;
	position: relative;
	width: 50%;
	height: 100%;
	overflow: hidden;
}
.lv_HalfRight .lv_CornerWrapper { float: right; }

.lv_Corner { position: relative; }
.lv_Corner canvas { position: relative; }
.lv_HalfLeft .lv_Corner { float: left; }
.lv_HalfRight .lv_Corner {
	position: relative;
	float: right;
}

/* To position content correctly in the center with correct
   rounded corner display we need a few wrappers.
   This is to get it right on all browsers.
*/
.lv_Center {
	position: relative;
	clear: both;
	height: 100%;
	overflow: hidden;
	background: none;
	padding: 0;
	margin: 0;
}
.lv_WrapUp {
	position: absolute;
	left: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.lv_WrapDown {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.lv_WrapCenter {
	position: relative;
	padding: 0;
	margin: 0;
}

/* The loading indicator */
.lv_Loading {
	position: absolute;
	top: 50%;
	left: 50%;
}
.lv_Loading .lv_Button {
	float: left;
	height: 100%;
	width: 100%;
}

.lv_MediaWrapper {
	position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
	clear: both;
	padding: 0;
	margin: 0;
}
.lv_MediaWrapper img {
	position: relative;
	float: left;
	padding: 0;
	margin: 0;
}

/* The overlays on top of images that toggle the previous/next buttons */
.lv_PrevNext {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
.lv_PrevNext * { padding: 0; margin: 0; }
.lv_PrevNext .lv_Button {
	position: relative;
	height: 100%;
}
.lv_PrevButton { float: left; }
.lv_NextButton { float: right; }

/* The bar that holds title, caption, imagenumber, slideshow and closebutton */
.lv_MenuBar {
	clear: both;
	position: relative;
	width: 100%;
	font: 11px Arial, Helvetica, sans-serif;
	color: #7a7a7a;
	padding: 0;
	margin: 0;
	text-align: left;
}
.lv_MenuBar * { padding: 0; margin: 0;}


.lv_Close {
    position: relative;
	float: right;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.lv_Data {
	position: relative;
	float: left;
	padding-bottom: 3px;
	line-height: 13px;
	overflow: hidden;
}

/* simulates padding-left inside .lv_Data 
.lv_DataText div, .lv_ImgNumber div { margin-left: 3px; } */

.lv_Data li {
	list-style-type: none;
	float: left;
	margin-top: 3px;
}
.lv_DataText { width: 100%; }
.lv_DataText .lv_Title {
	font-weight: bold;
	margin-bottom: 2px;
}
.lv_DataText .lv_Caption { clear: both; }
.lv_Data .lv_ImgNumber {
	color: #a7a7a7;
	margin-right: 5px;
	margin-top: 5px;
}

.lv_Data .lv_innerPrevNext, 
.lv_Data .lv_Slideshow {
	position: relative;
	border-left: 1px solid #d7d7d7;
	padding: 0 5px;
	margin-top: 5px;
	vertical-align: middle;
}
.lv_Data .lv_Slideshow { padding-right: 0px; }

.lv_Data .lv_innerPrevNext .lv_Button, 
.lv_Data .lv_Slideshow .lv_Button { /* play and stop */
	float: left;
	background-position: center left;
	background-repeat: no-repeat;
}

/* the boxes that hold media or external content */
.lv_contentTop,
.lv_contentBottom {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	clear: both;
}

#lightview iframe {
	float: left;
	border: 0;
	clear: both;
	padding: 0;
	margin: 0;
	background: none;
}

/* The container that hold buttons above the view, currently only topclose */
.lv_topButtons {
	position: absolute;
	left: 0;
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.lv_topcloseButtonImage { cursor: pointer; }


/* The error/warning/download message that will appear when
   a required plugin is not installed.
*/
#lightviewError p { padding: 0 0 10px 0; }
#lightviewError div {
	padding: 6px;
	font: 11px Arial, Helvetica, sans-serif;
}
#lightviewError .message {
	background: #fcb5b5;
	color: #dd1f1f;
	margin-bottom: 3px;
}
#lightviewError .type { font-weight: bold; }
#lightviewError .pluginspage {
	background: #b5fcbd;
	color: #21be30;
}
#lightviewError a,
#lightviewError a:hover,
#lightviewError a:visited {
	color: #21be30;
	text-decoration: none;
	background: none;
	font-weight: bold;
	border-bottom: 1px solid #7de689;
}
#lightviewError p {
	margin-left: 0;
	padding: 0;
}

#lv_overlay {
  position: absolute; /* Opera will use fixed */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* navbar
   Adds a bar below the view that takes over the default Controller
*/
#lightviewController {
	position: fixed;
	bottom: 0;
	top: 0;
	left: 50%;
	margin: 0;
	padding: 0;
	color: #d2d2d2;
	font: 11px Arial, Helvetica, sans-serif;
}
* html body #lightviewController { /* IE6 */
	position: absolute;
	top: auto;
	margin-top: expression( (-1 * this.offsetHeight / 2 + (document.documentElement ? document.documentElement.scrollTop : 0) + (Lightview.controllerOffset || 0)) + 'px');	
}
#lightviewController ul {
	display: block;
	height: 100%;
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
}
.lv_controllerTop, .lv_controllerMiddle, .lv_controllerBottom {
	list-style-type: none;
	float: left;
	display: block;
	position: relative;
	clear: both;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.lv_controllerCenter  { width: auto; float: left; }
.lv_controllerCornerWrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
.lv_controllerCornerWrapperTopLeft,
.lv_controllerCornerWrapperBottomLeft { top: 0; left: -100%;}
.lv_controllerCornerWrapperTopRight,
.lv_controllerCornerWrapperBottomRight { top: 0; left: 100%;}

#lightviewController .lv_CornerWrapper {
	width: 100%;
}
#lightviewController .lv_Corner { float: left; }
#lightviewController .lv_Corner {
	float: right;
	position: relative;
}
#lightviewController .lv_CornerTr, #lightviewController .lv_CornerBr { float: left; }
.lv_controllerBetweenCorners {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.lv_controllerMiddle {
	position: relative;
	height: 100%;
	float: left;
}
.lv_controllerCenter { float: left; width: auto;}
.lv_controllerCenter li {
	list-style-type: none;
	float: left;
	display: inline;
	position: relative;
	clear: none;
}
.lv_controllerSetNumber {
	float: left;
	text-align: center;
}

#lightviewController .lv_Button {
	float: left;
	position: relative;
	height: 100%;
	clear: none;
}
.lv_controllerSetNumber {
	position: relative;
	height: 100%;
	padding-right: 3px;
}
.lv_controllerPrev, 
.lv_controllerNext, 
.lv_controllerSlideshow, 
.lv_controllerClose {
	float: left;
	position: relative;
	height: 100%;
	padding-left: 3px;
}

.lv_controllerPrev { border-left: 1px solid #3c3c3c; }
#lightviewController .lv_controllerNext { padding-right: 3px; border-right: 1px solid #3c3c3c; }

* html #lightview { /* IE6 */
	position: absolute;
	margin-top: expression( (-1 * this.offsetHeight / 2 + (document.documentElement ? document.documentElement.scrollTop : 0) - (Lightview.controllerHeight || 0)) + 'px');
	margin-left: expression( -1 * this.offsetWidth / 2 + (document.documentElement ? document.documentElement.scrollLeft : 0) + 'px');
}

/* Always cover 100% of the screen in IE6 */
html #lv_overlay {
	position: absolute;
	height: expression(((window.Enumerable && window.Enumerable.max) ? [document.body.scrollHeight, document.documentElement.scrollHeight, document.body.offsetHeight, document.documentElement.clientHeight].max() : document.documentElement.scrollHeight) + 'px' );
	width: expression(((window.Enumerable && window.Enumerable.max) ? [document.body.scrollWidth, document.documentElement.scrollWidth, document.body.offsetWidth, document.documentElement.clientHeight].max() : document.documentElement.scrollWidth) + 'px' );
}