/*   
Theme Name: Boniver
Theme URI: http://boniver.org
Description: Theme for Boniver
Author: Manuel Castellanos Raboso
Author URI: http://sevnthsin.com
Version: 1.0
*/

/*****************************
	Reset CSS
*****************************/

html, body, div, span, 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,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins  {background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }


body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 
 
/*****************************
	minimal base styles
*****************************/

body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background:#000; color:#f2f2f2; text-shadow: none; }
::selection { background:#000; color:#f2f2f2; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #000; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/* clear Outlines on links and buttons */
:focus {outline:none;}
::-moz-focus-inner {border:0;}


/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
ins { 
	text-decoration: none; 
}
del { 
	text-decoration: line-through;
}

.scroll-pane {
	width: 100%;
	height: 100%;
	overflow: auto;
}
/*
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
*/

body.loading {
	cursor:wait;
}

@media screen {

* { margin: 0; padding: 0; }

body {
	margin: 0px;
	padding: 0px;
	background-color: black;
	font-family: Arial;
	/*
	min-width: 955px;
	min-height: 600px;
	*/
	position:  relative;
	display: block;
	font-size: 14px;
	overflow: hidden;
	color: #ccc;
	word-wrap: break-word;
}

article, aside, figure, footer, header, hgroup, menu, nav, section { display: block; }

.group:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.group { display: inline-block; clear: both; }
* html .group { height: 1%; } .group { display: block; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

div#wrapper {
	position: fixed;
	_position: absolute;
	width: 100%;
	height: 100%;
	min-width: 955px;
	min-height: 600px;
}

/*****************************
	Typography
*****************************/

h1, h2, h3 { font-weight: normal; margin: 0 0 10px 0; }
h1 { }
h2 { }
h3 { }

p { margin: 0 0 10px 0; }

a:link {
	color: #6b7270;
	text-decoration: none;
}

a:visited {
	color: #6b7270;
	text-decoration: none;
}

a:hover {
	color: #848c8a;
	text-decoration: none;
}

a:active {
	color: #545958;
	text-decoration: none;
}

blockquote { }
blockquote p { }

ul, ol { margin: 0 0 10px 0; }

.post { }

.entry { }
.entry a { }
.entry a:hover { }

pre { }
code, tt { }

#meta { }
.postmetadata { }

#sidebar { }

.navgation { }
   .next-posts { }
   .prev-posts { }

#searchform { }
	#s { }
	#searchsubmt { }
	
ol.commentlist { list-style: none; }
ol.commentlist li { }
ol.commentlist li.alt { }
ol.commentlist li.bypostauthor { }
ol.commentlist li.byuser { }
ol.commentlist li.comment-author-admin { }
ol.commentlist li.comment { border-bottom: 1px dotted #666; padding: 10px; }
ol.commentlist li.comment div.comment-author { }
ol.commentlist li.comment div.vcard { }
ol.commentlist li.comment div.vcard cite.fn { font-style: normal; }
ol.commentlist li.comment div.vcard cite.fn a.url { }
ol.commentlist li.comment div.vcard img.avatar { float:right; margin: 0 0 10px 10px; }
ol.commentlist li.comment div.vcard img.avatar-32 { }
ol.commentlist li.comment div.vcard img.photo { }
ol.commentlist li.comment div.vcard span.says { }
ol.commentlist li.comment div.commentmetadata { }
ol.commentlist li.comment div.comment-meta { font-size: 10px; }
ol.commentlist li.comment div.comment-meta a { color: #ccc; }
ol.commentlist li.comment p { }
ol.commentlist li.comment ul { }
ol.commentlist li.comment div.reply { font-size: 11px; }
ol.commentlist li.comment div.reply a { font-weight: bold; }
ol.commentlist li.comment ul.children { list-style: none; margin: 10px 0 0; }
ol.commentlist li.comment ul.children li { }
ol.commentlist li.comment ul.children li.alt { }
ol.commentlist li.comment ul.children li.bypostauthor { }
ol.commentlist li.comment ul.children li.byuser { }
ol.commentlist li.comment ul.children li.comment { }
ol.commentlist li.comment ul.children li.comment-author-admin { }
ol.commentlist li.comment ul.children li.depth-2 { border-left: 5px solid #555; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-3 { border-left: 5px solid #999; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-4 { border-left: 5px solid #bbb; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-5 { }
ol.commentlist li.comment ul.children li.odd { }
ol.commentlist li.even { background: #fff; }
ol.commentlist li.odd { background: #f6f6f6; }
ol.commentlist li.parent { border-left: 5px solid #111; }
ol.commentlist li.thread-alt { }
ol.commentlist li.thread-even { }
ol.commentlist li.thread-odd { }

form { }
input[type=text] { }
textarea { }

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

em, .em {
	
	font-style: italic;
	font-weight: 500;
}

/*****************************
	Scroll - Boniver Skin
*****************************/

.jspContainer {
	overflow: hidden;
	position: relative;
}

.jspPane {
	position: absolute;
}

.jspVerticalBar {
	position: absolute;
	top: 10px;
	right: 8px;
	width: 13px;
	height: 100%;
}

.jspHorizontalBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 13px;
}

.jspVerticalBar *,
.jspHorizontalBar * {
	margin: 0;
	padding: 0;
}

.jspTrack {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_scrollbar.png) repeat-y -52px 0px;
	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 2px 0px;
}

.jspDrag {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_scrollbar.png) repeat-y -12px 0px;
	position: relative;
	top: 0;
	left: 2px;
	width: 9px;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.jspDrag .jspDragTop {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_scrollbar.png) no-repeat -22px 2px;
	position: absolute;
	width: 12px;
	height: 8px;
	top: -8px;
	left: 0;
	cursor: pointer;
	display: none;
}
.jspDrag .jspDragBottom {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_scrollbar.png) no-repeat 2px -2px;
	position: absolute;
	width: 12px;
	height: 6px;
	bottom: -6px;
	left: 0;
	cursor: pointer;
	display: none;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
	float: left;
	height: 100%;
}

.jspArrow {
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled {
	cursor: default;
	background: #80808d;
}

.jspVerticalBar .jspArrow {
	height: 16px;
}

.jspHorizontalBar .jspArrow {
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus {
	outline: none;
}

.jspCorner {
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
	margin: 0 -3px 0 0;
}

/*****************************
	Main Page Strcuture
*****************************/

div#botNav {
	position: absolute;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_horizontalTile.png) repeat-x scroll bottom center;
	background-color: #151515\9;
	background-image: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/footer_nav_bg_ie.jpg)\9;
    *background-color: #151515;
	*background-image: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/footer_nav_bg_ie.jpg);
	bottom: 0px;
	left: 0px;
	width: 100%;
	min-width: 955px;
	height: 65px;
	z-index: 999999;
}

div#main {
	position: fixed;
	_position: absolute;
	width: 100%;
	height: 100%;
	z-index: 999;
}

div#content {
	position: absolute;
	left: 0px;
	bottom: -1600px;
	width: 100%;
	min-width: 955px;
	/*min-height: 600px;*/
	padding-bottom: 15px;
	background: rgba(21,21,21,0.8);
	background-color: #151515\9;
	background-image: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/content_main_bg_ie.jpg)\9;
    *background-color: #151515;
	*background-image: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/content_main_bg_ie.jpg);
	z-index: 9999;
}

div#background {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/mini-prealoder.gif) no-repeat scroll center center;
	z-index: 0;
	*z-index: 1;	
}

div#flash {
	position: absolute;
	_position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#video {
	display: block;
	width: 100%;
	height: 100%;
}

#contentWrapper {
	/*position: relative;*/
	display: block;
	width: 840px;
	margin: 0px auto;
	height: 100%;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_main_tile.png) repeat scroll center center;
	background-color: #1f1f1f\9;
	background-image: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/center_content_bg_ie.jpg)\9;
    *background-color: #1f1f1f;
	*background-image: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/center_content_bg_ie.jpg);
}

div#contentWrapperWide {
/*  position: relative;*/
	margin: 0 auto;
	width: 100%;
	height:100%;
}

#content_resizer {
	display: block;
}


/**** Dotted lines with images - TOP ****/
span.dotLine {
/*  position: absolute;
  top: 0px;*/
  left: 0px;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_horizontalTile.png) repeat-x scroll center center;
	display:block;
	margin-bottom:10px;
	width: 100%;
	height: 1px;
}
/**** Dotted lines with images - BOTTOM ****/
span.dotLine_bot {
/*  position: absolute;
  bottom: 0px;*/
  left: 0px;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_horizontalTile.png) repeat-x scroll center center;
	display:block;
	margin-top:10px;
	width: 100%;
	height: 1px;
}

iframe {
	width: 540px !important;
}

#player iframe {
	width: 100% !important;
}

/*****************************
	Video Player
*****************************/

div#closeAll {
	position: fixed;
	_position: absolute;
	width: 100%;
	height: 100px;
	z-index: 1;
	cursor: default;
}

div#videoControls {
	position: fixed;
	_position: absolute;
	width: 100%;
	height: 50px;
	z-index: 999;
}

div#titleControl {
	position: absolute;
	top: 21px;
	left: 25px;
	color: #ccc;
	z-index: 999;
}

div#titleControl span#loadStatus {
	font-size: 9px;
	font-weight: 600;
	color: #f2f2f2;
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
}

div#videoControls ul#playerControls {
	position: absolute;
	top: 25px;
	right: 25px;
	height: 20px;
	list-style-type: none;
	z-index: 999;
}

div#videoControls ul#playerControls li {
	position: relative;
	float: left;
	margin-right: 10px;
	cursor: pointer;
}

div#videoControls ul#playerControls ul li:hover {
	color: rgba(255,0,0,0.5);
}

div#videoControls ul#playerControls li#volume:hover,
div#videoControls ul#playerControls li.time:hover,
div#videoControls ul#playerControls li#loadStatus:hover {
	color: rgba(255,255,255,1);
	cursor: default;
}

div#prevVid,
div#nextVid {
	position: absolute;
	top: 0px;
	width:  50px;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
	display: none;
	background-repeat: no-repeat;
	opacity: 0.5;
}
div#prevVid {
	background-position: left center;
}
div#nextVid {
	background-position: right center;
}
div#prevVid:hover,
div#nextVid:hover {
	opacity: 0.6;
}
div#prevVid img,
div#nextVid img {
	position: fixed;
	top: 50%;
	margin-top: -62px;
	opacity: 0;
}

div#prevVid img:hover,
div#nextVid img:hover {
	opacity: 0.5;
}

div#prevVid { 
	left: 0px;
}
div#nextVid {	
	right:  0px;
}


/*****************************
	Footer Navigation
*****************************/

#logo { 
	position: relative;
	display: block;
	float: left;
	width: 140px;
	height: 40px;
	top: 13px;
	left: 20px;
	overflow: hidden;
	text-indent: -999999px;
	background: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_main.png) no-repeat scroll -200px 0px;
}

div#botNav ul#menu {
	position: relative;
	display: block;
	float: right;
	height: 64px;
	list-style-type: none;
	margin: 1px 20px 0px 0px;
}

div#botNav ul#menu li {
	position: relative;
	display: block;
	float: left;
	list-style: none;
	padding: 0px 10px;
	line-height: 64px;
	height: 64px;
	color: #ccc;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_hovernav_tile.png) repeat-x scroll 0px 128px;
	border-left: 1px solid rgba(109, 111, 108, 0);
	border-right: 1px solid rgba(109, 111, 108, 0);
	cursor: pointer;
}

div#botNav ul#menu li a {
	color: #ccc;
	text-decoration: none;
	font-size: 16px;
}

div#botNav ul#menu li:hover {
  cursor: pointer;
  background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_hovernav_tile.png) repeat-x scroll 0px -128px;
  border-left: 1px solid rgba(109, 111, 108, 0.2);
  border-right: 1px solid rgba(109, 111, 108, 0.2);
}
div#botNav ul#menu li:active {
	cursor: pointer;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_selectednav_tile.png) repeat-x scroll 0px 0px;
	border-left: 1px solid rgba(109, 111, 108, 0);
	border-right: 1px solid rgba(109, 111, 108, 0);
}
div#botNav ul#menu li.selected,
div#botNav ul#menu li.selected:hover {
	cursor: pointer;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_selectednav_tile.png) repeat-x scroll 0px 0px;
	border-left: 1px solid rgba(109, 111, 108, 0.8);
	border-right: 1px solid rgba(109, 111, 108, 0.8);
}
div#botNav ul#menu li span {
	top: 21px;
}

#signup_link span {
  margin-top:20px;
}

/*****************************
	Icons
*****************************/

.icons span {
	display: block;
	/*position: relative;*/
	display: block;
	width: 20px;
	height: 20px;
	top: 0px;
	left: 0px;
	overflow: hidden;
	text-indent: -999999px;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_main.png) no-repeat scroll 0px 0px;
	cursor: pointer;
}

.icons span.play { background-position: 0px 0px; }
.icons span.play:hover { background-position: 0px -20px; }
.icons span.play:active { background-position: 0px -40px; }

.icons span.pause { background-position: -200px -160px; }
.icons span.pause:hover { background-position: -200px -180px; }
.icons span.pause:active { background-position: -200px -200px; }

.icons span.next { background-position: -240px -160px; }
.icons span.next:hover { background-position: -240px -180px; }
.icons span.next:active { background-position: -240px -200px; }

.icons span.prev { background-position: -260px -160px; }
.icons span.prev:hover { background-position: -260px -180px; }
.icons span.prev:active { background-position: -260px -200px; }

.icons span.audio { background-position: -20px 0px; }
.icons span.audio:hover { background-position: -20px -20px; }
.icons span.audio:active { background-position: -20px -40px; }

.icons span.mute { background-position: -218px -160px; }
.icons span.mute:hover { background-position: -218px -180px; }
.icons span.mute:active { background-position: -218px -200px; }

.icons span.share { background-position: -40px 0px; }
.icons span.share:hover { background-position: -40px -20px; }
.icons span.share:active { background-position: -40px -40px; }

.icons span.chrome { background-position: -60px 0px; }
.icons span.chrome:hover { background-position: -60px -20px; }
.icons span.chrome:active { background-position: -60px -40px; }

.icons span.fullScreen { background-position: -80px 0px; }
.icons span.fullScreen:hover { background-position: -80px -20px; }
.icons span.fullScreen:active { background-position: -80px -40px; }

.icons span.signup { background-position: -100px 0px; }
.icons span.signup:hover { background-position: -100px -20px; }
.icons span.signup:active { background-position: -100px -40px; }

.icons span.twitter { background-position: -120px 0px; }
.icons span.twitter:hover { background-position: -120px -20px; }
.icons span.twitter:active { background-position: -120px -40px; }

.icons span.facebook { background-position: -140px 0px;}
.icons span.facebook:hover { background-position: -140px -20px; }
.icons span.facebook:active { background-position: -140px -40px; }

.icons span.email { background-position: -160px 0px; }
.icons span.email:hover { background-position: -160px -20px; }
.icons span.email:active { background-position: -160px -40px; }

.icons span.home { background-position: -180px 0px; }
.icons span.home:hover { background-position: -180px -20px; }
.icons span.home:active { background-position: -180px -40px; }

.icons a.home {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	top: 0px;
	left: 0px;
	overflow: hidden;
	text-indent: -999999px;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_main.png) no-repeat scroll -180px 0px;
}

.icons a.home:hover { background-position: -180px -20px; }
.icons a.home:active { background-position: -180px -40px; }

.icons span.close { background-position: -200px -40px; }

.icons span.sharetext { display: block; background-position: -348px 0px; width: 60px; }

/*****************************
	Sub Navigation
*****************************/

div#topNav {
	position: relative;
	/*top: -40px;*/
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_horizontalTile.png) repeat-x scroll top center;
	background-color: #1f1f1f\9;
	background-image: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/top_nav_bg_ie.jpg)\9;
    *background-color: #1f1f1f;
	*background-image: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/top_nav_bg_ie.jpg);
	height: 43px;
	width: 100%;
	font-size: 12px;
}

div.numbers {
	position: absolute;
	top: 14px;
	margin-left: 50%;
	left: 300px;
	text-align: right;
	width: 100px;
}

div.number_two {
	left: 235px;
}

div#topNav #homeLink {
	position: absolute;
	top: 10px;
	margin-left: 50%;
	left: -355px;
	border-bottom: 3px solid transparent;
	z-index: 999;
}

div#topNav #homeLink:hover {
	border-bottom: 3px solid #ccc;
}

div#topNav ul {
	position: absolute;
	list-style-type: none;
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	width: 540px;
	font-size: 13px;
	color: #ccc;
}

div#topNav ul.aligned {
	margin: 0px 0px 0px 50%;
	left: -215px;
}

div#topNav ul.centered {
	position: relative;
	margin: 0px auto;
	text-align: center;
}

div#topNav ul.aligned_two {
	left: -520px;
	margin: 0px;
    margin-left: 50%;
}

div#topNav ul li {
	position: relative;
	float: left;
	padding: 12px 12px 3px 12px;
	cursor: pointer;
	font-weight: 700;
	text-transform: lowercase;
}

div#topNav ul.centered li {
	float: none;
	display: inline-block;
	zoom: 1;
	*display:inline;
}

div#topNav ul li:hover {
	border-bottom: 3px solid #ccc;
}

div#topNav ul li.selected,
div#topNav ul li.selected :hover {
	border-bottom: 3px solid #ccc;
}

div#topNav ul.aligned li:first-child,
div#topNav ul.aligned li:first-child:hover {
	color: #cccccc;
	border-bottom: none;
	font-weight: 200;
}

div#topNav ul li a,
div#topNav ul li a:visited,
div#topNav ul li a:hover,
div#topNav ul li a:active,
div#topNav ul li.selected a,
div#topNav ul li.selected a:visited,
div#topNav ul li.selected a:hover,
div#topNav ul li.selected a:active {
	color: #ccc;
	text-decoration: none;
	border-bottom: none;
}

/*****************************
	Bubble Nav
*****************************/

div.bubble_nav {
	position: relative;
	height: 45px;
	color: #dfdfdf;
	font-weight: 300;
	text-transform: lowercase;
}

div.bubble_nav ul {
	position: relative;
	text-align: center;
	margin: 0px;
	padding: 15px 0px 0px 0px;
	list-style-type: none;
	font-size: 12px;
}

div.bubble_nav ul li {
	position: relative;
	display: inline-block;
	zoom: 1;
	*display:inline;
}

div.bubble_nav ul li:first-child {
	color: #ccc;
	font-weight: 300;
	margin-right: 8px;
}

div.bubble_nav ul li a,
div.bubble_nav ul li a:visited {
	color: #ccc;
	font-weight: 700;
	text-decoration: none;
	padding: 2px 8px 2px 8px;
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	behavior: url(http://boniver.org/wp-content/themes/Boniver2012Theme/css/border-radius.htc);
}

div.bubble_nav ul li a:hover, 
div.bubble_nav ul li a:active {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_hoversubnav_tile.jpg) repeat-x;
}

div.bubble_nav ul li.selected a,
div.bubble_nav ul li.selected a:visited,  
div.bubble_nav ul li.selected a:hover, 
div.bubble_nav ul li.selected a:active {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_hoversubnav_tile.jpg) repeat-x;
}

/*****************************
	Posts Pannels
*****************************/

div.sectionsWrap {
	position: relative;
	display: block;
	width: 840px;
	height: 80%;
}

div#sections_nav {
	position: relative;
	display: block;
	top: 0px;
}

div.grayBar {
	position: relative;
	display: block;
	height: 37px;
	width: 100%;
	background-color: #4b5151;
}

div#sections_scroller,
div#images_scroller {
	position: relative;
	display: block;
	height: 40px;
	width: 770px;
	margin: 0px auto;
	overflow: hidden;
}

div#images_scroller {
	height: 165px;
}

div#sections_scroller a,
div#images_scroller a {
	/*
	position: relative;
	*/
	display: block;
	float: left;
	margin-right: 15px;
}

div#images_scroller a {
	margin-right: 0px 5px 0px 0px;
}
/*
div#sections_scroller ul {
	position: absolute;
	display: block;
	width: auto;
	text-align: left;
	padding: 0px;
	list-style-type: none;
}

div#sections_scroller ul li {
	position: relative;
	display:inline-block;
	float: left;
	font-size: 12px;
	font-weight: 700px;
	margin-right: 8px;
	padding: 10px 8px 10px 0px;
}
*/

div#sections_scroller a,
div#sections_scroller a:visited,
div#sections_scroller a:hover,
div#sections_scroller a:active {
	color: #818b8b;
	text-decoration: none;
}
div#sections_scroller span.selected a,
div#sections_scroller span.selected a:visited,
div#sections_scroller span.selected a:hover,
div#sections_scroller span.selected a:active {
	color: #ccc;
	text-decoration: none;
}

div#sections_nav .arraw,
div#imageSlider .arraw {
	position: absolute;
	display: block;
	top: 10px;
	width: 20px;
	height: 20px;
	text-indent: -999999px;
	overflow: hidden;
	cursor: pointer;
	z-index: 999;
}

div#imageSlider .arraw {
	top: 85px;
}

div#sections_nav #prev_tags,
div#imageSlider #prev_tags {
	left: 10px;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_main.png) no-repeat scroll -220px -40px;
}

div#sections_nav #next_tags,
div#imageSlider #next_tags {
	right: 10px;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_main.png) no-repeat scroll -240px -40px;
}

div#section_desc {
	position: relative;
	display: block;
	width: 840px;
	margin: 0px auto;
	text-align: center;
	min-height: 5px;
	font-size: 12px;
	color: #dfdfdf;
	font-weight: 300;
	padding-top: 15px;
}

div#section_desc h2 {
	margin: 0px;
	padding: 0px;
}

div.post_box {
	/*position: relative;*/
	width: 690px;
	margin: 0px auto;
	padding: 0px 0px;
	min-height: 90px;
	font-weight: 500;
}

div.post_box div.leftDesc {
	/*position: relative;*/
	float: left;
	width: 130px;
	margin-right: 20px;
	padding-top: 15px;
}

div.post_box div.leftDesc h2,
div.post_box div.leftDesc a {
	font-size: 18px;
	color: #ccc;
	font-weight: 300;
	padding-bottom: 10px;
}

div.post_box div.leftDesc h6,
div.post_box div.leftDesc .date {
	font-size: 12px;
	color: #6B7270;
	text-transform: uppercase;
	font-weight: 500;
	padding-bottom: 10px;
}

div.post_box div.leftDesc h2 span.twitter {
	/*position: relative;*/
	float:left;
	margin-right: 5px;
}

div.post_box div.leftDesc .date {
	display: inline;
	background: none;
	text-indent: 0px;
}

div.post_box div.rightContent {
	/*position: relative;*/
	float: left;
	width: 540px;
	padding-top: 15px;
}

div.post_box div.rightContent p.tweet {
	font-size: 18px;
	color: #dfdfdf;
	font-weight: 300;
}

div.post_box div.rightContent p.tweet a,
div.post_box div.rightContent p.tweet a:visited {
	font-size: 16px;
	color: #5c5c5b;
	text-decoration: none;
}

div.post_box div.rightContent p.tweet a:hover {
	color: #8f8f8d;
	text-decoration: underline;
}

div.post_box div.rightContent p.tweet a:active {
	color: #8f8f8d;
	text-decoration: none;
}

div.post_box div.rightContent div.post p {
	font-size: 14px;
	color: #dfdfdf;
	font-weight: 300;
}

div.post_box div.rightContent div.post p a.endtags,
div.post_box div.rightContent div.post p a.endtags:visited,
div.post_box div.rightContent div.post p a.endLink,
div.post_box div.rightContent div.post p a.endLink:visited {
	font-size: 10px;
	color: #5c5c5b;
	font-weight: 500;
	text-decoration: none;
	text-transform: lowercase;
}

div.post_box div.rightContent div.post p a.endLink:hover {
	color: #8f8f8d;
	text-decoration: underline;
}

div.post_box div.rightContent div.post p a.endLink:active {
	color: #8f8f8d;
	text-decoration: none;
}

div.post_box div.rightContent div.post .asset {
	width: 500px;
}

div.post_box div.rightContent ul {
	margin: 5px 15px;
	list-style-type: square;
	color: #dfdfdf;
}

/*****************************
Albums Pannels
*****************************/

div#album_lyrics_list {
	/*height: 523px;*/
}

div#album_tracks_list {
	/*height: 332px;*/
}

div#album_tracks_list li.no_highlight {
	color: #666;
}

div#album_tracks_list li.track_highlight a {
	color: #fff;
}

div.albumBox {
/*  position: relative;*/
	/*border: 1px solid red;*/
	min-height: 300px;
	padding-bottom: 25px;
}

div.albums {
/*  position: relative;*/
	display: block;
	width: 670px;
	min-height: 385px;
	margin-left: 150px;
	padding-top: 30px;
	padding-bottom: 20px;
}

div.albums div.cover {
	display: block;
	float: left;
	width: 198px;
	margin-right: 40px;
}

div.albums div.words {
	display: block;
	width: 400px;
	float: left;
	height: 100%;
	color: #dfdfdf;
}

div.albums div.words h4 {
	font-size: 14px;
	font-weight: 700;
	padding-top: 0px;
	margin-top: 0px;
}

div.albums div.words p {
	font-size: 14px;
	font-weight: 300;
}

/* LPs */
div.covers_nav {
	position: relative;
	color: #dfdfdf;
	padding-bottom: 10px;
	font-weight: 300;
}

div.covers_nav ul {
	position: relative;
	text-align: center;
	margin: 0px;
	padding: 15px 0px 0px 0px;
	list-style-type: none;
	font-size: 10px;
}

div.covers_nav ul li {
	position: relative;
	display: inline-block;
	zoom: 1;
	*display:inline;
}

div.covers_nav ul li a,
div.covers_nav ul li a:visited {
	color: #ccc;
	font-weight: 700;
	text-decoration: none;
	padding: 2px 8px 2px 8px;
	border-bottom: 3px solid transparent;
}

div.covers_nav ul li a:hover, 
div.covers_nav ul li a:active {
}

div.covers_nav ul li.selected a,
div.covers_nav ul li.selected a:visited,  
div.covers_nav ul li.selected a:hover, 
div.covers_nav ul li.selected a:active {
}

div.albums_description {
	display: block;
	height: 70%;
	margin-left: 40px;
	padding-top: 30px;
	padding-bottom: 20px;
	color: #dfdfdf;
}

div.albums_description div.cover {
	display: block;
	float: left;
	margin-right: 40px;
}

div.albums_description div.tracks {
	display: block;
	float: left;
	margin-right: 40px;
	width: 150px;
}

div.albums_description div.tracks ol {
	display: block;
	margin: 0px;;
	padding: 0px;
	list-style-position: inside;
}

div.albums_description div.tracks ol li {
	margin-left: 2px;
}

div.albums_description div.desc {
	display: block;
	float: left;
	height: 100%;
	width: 290px;
}

div.albums_description div.desc h2 {
	font-weight: 700;
	font-size: 14px;
}

div.albums_description div.desc p {
	font-size: 13px;
	font-weight: 500;
	margin: 0px;
	padding: 0px 25px 8px 0px;
}

/*****************************
	Tours Pannels
*****************************/

/*div.tourArt {
  position: relative;
  display: block;
  float: left;
  left: 20px;
  top: 20px;
  width: 20%;
  max-width: 200px;
  height: auto;
  text-align: center;
  margin-right: 20px;
}*/

/*****************************
	Box Models
*****************************/

div#online_news {
	height: 387px;
}

div#online_clippings {
	height: 92%;
}

div#images_grid {
	height: 100%;
}

/**** Tatami Boxes ****/
div#tatami {
	/*margin:0 auto;*/
	clear: both;
	padding: 0px;
	overflow-y: auto;
	overflow-x: hidden;
}

div#tatami .box {
	margin: 5px;
	padding: 5px;
	font-size: 11px;
	line-height: 1.4em;
	float: left;
}

div#tatami .boxr {
  /*border: 5px solid #535857;*/
  background-color: #535857;
  margin: 5px;
  padding: 5px 5px 0px 5px;
  font-size: 11px;
  line-height: 1.4em;
  float: left;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

div#tatami .boxr h2 {
	position: absolute;
	display: block;
	bottom: 4px;
	z-index: 9;
	width: 170px;
	height: 20px;
	padding: 8px 5px 16px 5px;
	margin: 0px;
	/*background: url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_main_tile.png) repeat;*/
	font-size: 14px;
	font-weight: 700;
}

div.galleries_caption {
	background-color:#535857; 
	display:block;
	height: 45px;
}


div#tatami .gal h2 {
	background: none;
	padding: 0px 5px;
	height: 32px;
	width: 120px;
	font-size: 14px;
}

div#tatami div.galleries_caption h2 {
	bottom: 8px !important;
}

div#tatami .gal span.count {
	position: absolute;
	display: block;
	width: 50px;
	bottom: 7px;
	right: 5px;
	z-index: 10;
	font-size: 9px;
	text-align: right;
}

div#tatami .box img,
div#tatami #tumblelog img {
	display: block;
	width: 100%;
}

div#tatami.rtl .box {
	float: right;
	text-align: right; 
	direction: rtl;
}

div#tatami .photoCaption {
	display: block;
	margin-bottom: 1px;
	filter: alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
}

/**** Columns ****/

div#tatami .col1 { width: 140px; }
div#tatami .col1_5 { width: 180px; }
div#tatami .col2 { width: 300px; }
div#tatami .col3 { width: 340px; }
div#tatami .col4 { width: 440px; }
div#tatami .col5 { width: 540px; }

div#tatami .col1 img { width: 100%; height: auto; }
div#tatami .col1_5 img { width: 100%; height: auto; padding: 0px; margin: 0px; }
div#tatami .col2 img { width: 100%; height: auto; }
div#tatami .col3 img { width: 100%; height: auto; }
div#tatami .col4 img { width: 100%; height: auto; }
div#tatami .col5 img { width: 100%; height: auto; }

/**** Gutters ****/

div#tatami .has-gutters .box {
  margin: 5px 0;
}

div#tatami .has-gutters .col1 { width: 90px; }
div#tatami .has-gutters .col2 { width: 230px; }
div#tatami .has-gutters .col3 { width: 370px; }
div#tatami .has-gutters .col4 { width: 550px; }

/**** Multi Columns ****/

div#doubleCol {
	height: 100%;
	padding-top: 20px;
}

div#doubleCol div#columnsWrap {
	margin: 0 auto;
	padding-left: 20px;
	width: 515px;
}

div#doubleCol div#columnsWrap div.col {
	float: left;
	width: 210px;
	margin-right: 25px;
	padding: 15px;
	font-size: 14px;
	line-height: 18px;
	font-weight: 300;
	color: #dfdfdf;
}

div#doubleCol div#columnsWrap div.col:last-child {
	margin-right: 0px;
}

div#tripleCol {
	height: 100%;
	padding-top: 20px;
}

div#tripleCol div#columnsWrap {
	margin: 0 auto;
	width: 740px;
}

div#tripleCol div#columnsWrap div.col {
	float: left;
	width: 210px;
	margin-right: 15px;
	padding: 10px;
	font-size: 14px;
	line-height: 18px;
	font-weight: 300;
	color: #dfdfdf;
}

div#tripleCol div#columnsWrap div.col h2 {
	font-size: 14px;
	line-height: 18px;
	font-weight: 700;
	margin: 0px;
	padding: 10px 0px 8px 0px;
}

div#tripleCol div#columnsWrap div.col p {
	margin: 0px;
	padding: 0px 0px 10px 0px;
}

div#tripleCol div#columnsWrap div.col:last-child {
	margin-right: 0px;
}


/*****************************
Sign up Window
*****************************/

div#signUp-window {
	position: absolute;
	top: -107px;
	right: 12px;
	z-index: 999999;
	width: 469px;
	height: 121px;
	background:  transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_sendmail_tooltip.png) no-repeat scroll 0px 0px;
	display: none;
}

table.group {
	border-collapse: collapse;
	width: 100%; 
	border: 1px solid black;
}

table.group thead {
	font-size: 8pt;
	border-bottom: 1px solid black;
}

table.group thead td {
	font-size: 8pt;
	border-right: 1px solid black;
	border-left: 1px solid black;
	text-align: center;
	padding: 0px 2px;
}						

table.group thead td.song-title {
	text-align: left;
}

table.group tbody tr {
	border-bottom: 1px dotted #AAA;
}

table.group td.icon {
	width: 18px;
	text-align: center;
}

table.group td.buy-intro {
	font-size: 8pt;
	text-align: right;
	font-style: italic;
}

h3.group-title{
	margin-top: 1em;
}

div.albumArt {
	float: right;
	padding: 0px 0px 7px 7px;
}

div.hear { line-height: 20px; }

div.hear object { position: relative; top: 3px;}

div#song-actions, div#song-info { padding-left: 1em; margin-bottom: 1em; }


input::-webkit-input-placeholder {
	color:#404040;
}

input:-moz-placeholder {
	color:#404040;
}

select {
	margin:0 6px 0 0;
}

#signUp-window #signUp-result {
	display:none;
	padding: 25px 0 0 32px;
}

#signUp-window #signUp-initial {
	padding: 25px 0 0 32px;
}

#signUp-window p {
	text-transform:lowercase;
}

#signUp-window .email {
	background:#1c1c1c;
	border:1px inset #343434;
	color:#404040;
	font-size:12px;
	font-weight:bold;
	margin-right:10px;
	padding:4px;
}

#signUp-window  .mc_button {
	background:#6b7270;
	border:0;
	color:#fff;
	font-size:10px;
	font-weight:bold;
	padding:7px 11px;
	-moz-border-radius:2px;
	border-radius:2px;
	margin-right:37px;
  float:right;
}

.btn_close {
	background-image:url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/btn_close.png);
	background-repeat:no-repeat;
	cursor:pointer;
	height:18px;
	position:absolute;
	right:10px;
	top:7px;
	width:18px;
}

.btn_close span {
	display:none;
}


/*****************************
	Image Slider
*****************************/

div#imageSlider {
	position: relative;
	display: block;
	width: 840px;
	height: 165px;
	margin: 0px auto;
	padding: 10px 0px;
}

div#info_about_images {
	position: absolute;
	margin-left: 50%;
	top: 124px;
	left: -385px;
}
div#info_about_text {
	display: block;
	margin-left: 40px;
	width: 770px;
	height: 100%;
	margin-top: 0px;
	padding-bottom: 30px;
}

/******************************* 
	LIGHT BOX
*******************************/

/* Z-index of #mask must lower than #boxes .window */

#boxes {
	position: fixed; left: 0; top: 0;
	z-index: 999999;
	width: 100%;
	height: 100%;
	display: none;
}

#mask {
	position: fixed; left: 0; top: 0;
	z-index: 9999;
	background-color: #000;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
	display: none;
	width: 100%;
	height: 100%;
}
 
 /*
#boxes .imagePrevHolder {
	position: relative;
	display: block;
	width: 550px;
	height: 550px;
}
*/

#boxes .window {
	display: block;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	z-index: 999999;
	position: fixed;
	top: 50%; left: 50%;
	/*
	width: 550px;
	height: 550px;
	margin-left: -275px;
	*/
}

#boxes img {
	padding: 5px;
	background-color: #666;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px; 
	/*width: 550px;
	height: auto;*/
}

a#bf_next,
a#bf_prev {
	position: fixed;
	display: block;
	width: 72px;
	height: 140px;
	z-index: 999999;
}

a#bf_close {
	top: 10px;
	right: 10px;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/lightbox_close.png) no-repeat center center !important;
	position: fixed;
	display:none;
	width: 40px;
	height: 40px;
	z-index: 999999;
}

a#bf_next {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/nextprev.png) no-repeat -100px 0px;
	right: -100px;
    top: 50%;
}
a#bf_prev {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/nextprev.png) no-repeat 22px 0px;
	left: -100px;
    top: 50%;
}

a#bf_next:hover {
	background-position: -100px -150px;
}
a#bf_prev:hover {
	background-position: 22px -150px;
}
a#bf_close:hover {
}


/******************************* 
	SHARE TOOL TIP
*******************************/

div.shareToolTip {
	/*position: relative;*/
	display: block;
	width: 50px;
}

div.shareTools {
	position: absolute;
	display: none;
	filter: alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
	width: 162px;
	height: 67px;
	top: -20px;
	left: 140px;
	z-index: 9999;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/sprite_main.png) no-repeat scroll -222px -72px;
}
div.shareTools p.shareTitle {
	color: #CCCCCC;
  display: block;
  font-size: 11px;
  left: 36px;
  position:absolute;
  text-align: center;
  padding-top: 9px;
}
div.shareTools ul {
	margin-left: 40px;
  list-style-type: none;
  position: absolute;
  top: 21px;
}
div.shareTools  ul li {
	/*position: relative;*/
	float: left;
	padding: 5px;
}
div.shareTools ul li a {
}


div.shareToolsLeft {
	position: absolute;
	top: -25px;
	left: -180px;
	display: none;
    width: 162px;
	height: 69px;
	filter: alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_share_tooltipLeft.png) no-repeat scroll 0 0;
	z-index:99999;
    
}
div.shareToolsLeft p.shareTitle {
	color: #CCCCCC;
    display: block;
    font-size: 11px;
    left: -6px;
    position: relative;
    text-align: center;
    top: 12px;
}
div.shareToolsLeft ul {
	position: relative;
	left: 20px;
    list-style-type: none;
    top: 0px;
}
div.shareToolsLeft ul li {
	float: left;
	padding: 5px;
	display: block !important;
}
div.shareToolsLeft ul li a {
}


div.blog_image_gallery ul.gallery_blog {
					width: 500px;
	display: block;
	list-style-type: none !important;
	margin: 0px !important;
	padding: 0px !important;
}
div.blog_image_gallery ul.gallery_blog .gallery-item {
	float: left !important;
	margin-top: 10px !important;
	margin-right: 10px !important;
	width:!important;
}
div.blog_image_gallery ul.gallery_blog img {
	width: 50px;
	height: 50px;
	padding: 3px;
	background-color: none;
}
div.blog_image_gallery ul.gallery_blog img:hover {
	background-color: #333;
}
div.blog_image_gallery .blog_large_preview {
	display: block;
	width: 540px;
	padding-top: 10px;
}
div.blog_image_gallery .blog_large_preview img {
	display: block;
	width: 470px;
	height: auto;
	padding: 3px;
	background-color: none;
	margin-bottom: 15px;
}

div#loadingSpinner {
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/mini-prealoder.gif) no-repeat center center;
	height: 100%;
	left: 0;
	position: absolute;
	top: 43px;
	width: 100%;
}


/******************************* 
	BUY LINKS
*******************************/

p.buyLinks {
	text-align: center;
}

p.buyLinks a,
p.buyLinks a:visited {
	color: #ccc;
	font-weight: 700;
	text-decoration: none;
	padding: 2px 8px 2px 8px;
	-moz-border-radius: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	font-size: 12px;
	behavior: url(http://boniver.org/wp-content/themes/Boniver2012Theme/css/border-radius.htc);
	background: transparent url(http://boniver.org/wp-content/themes/Boniver2012Theme/images/bg_hoversubnav_tile.jpg) repeat-x;
}

p.buyLinks a:hover, 
p.buyLinks a:active {
	color: #fff;
}


/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) )"; } 
  abbr:after { content: " (" attr(title) )"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}
