/* -------------------------------------------------------------- 
   
   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
   
-------------------------------------------------------------- */

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


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  margin:0.5em 0;
  border:1px solid #bbb;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; overflow:auto; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
/* -------------------------------------------------------------- 
   
   grid.css
   * Sets up an easy-to-use grid of 24 columns.
   
   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, namespaces or semantic
   element names, use the compressor script (lib/compress.rb)
   
   Note: Changes made in this file will not be applied when
   using the compressor: make changes in lib/blueprint/grid.css.rb
   
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  width: 950px;
  margin: 0 auto;
}

/* Use this class on any .span / container to see the grid. */
.showgrid { background: url(grid.png);  }


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

/* Sets up basic grid floating and margin. */
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, 
div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, 
div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, 
div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, 
div.span-21, div.span-22, div.span-23, div.span-24 {
  float: left;
  margin-right: 10px; 
}

/* The last column in a row needs this class. */
.last, div.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; }
.pull-5 { margin-left: -200px; }

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5 {
  float:left;
	position:relative;
}

.push-1 { margin: 0 -40px 1.5em 40px; }
.push-2 { margin: 0 -80px 1.5em 80px; }
.push-3 { margin: 0 -120px 1.5em 120px; }
.push-4 { margin: 0 -160px 1.5em 160px; }
.push-5 { margin: 0 -200px 1.5em 200px; }

.push-1, .push-2, .push-3, .push-4, .push-5 { 
  float: right;
	position:relative;
}


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

/* In case you need to add a gutter above/below an element */
.prepend-top { 
	margin-top:1.5em; 
}
.append-bottom { 
	margin-bottom:1.5em; 
}

.right {
	float: right;
}

.left {
	float: left;
	padding-right: 0.5em;
}

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

/* 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.45em;
  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] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }
/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, 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;
}

body { 
  line-height: 1.5; 
}

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

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

/* Remove annoying border on linked images. */
a img { border: none; }
/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body {
	font-size: 75%;
	color: #471706;
	background: #fff;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


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

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

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; 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; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}


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

p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 0.45em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 0.45em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
#content strong      {
	color: #CCCCCC;
}
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

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

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
#left_column_copy ol li,
#content ul li,
#content ol li		{ margin:0 1.5em 1.5em; !important }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


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

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th 		{ background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc 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; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

/* Main Body Styles
-------------------------------------------------------------- */

a#logolink {
	text-indent: -9999px;
	font-size: 0;
	height: 137px;
	width: 470px;
	display: block;
	text-indent: -9999px;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01_ie.png);
	float: left;
	background-position: -1750px 10px;
	background-repeat: no-repeat;
}

a:hover#logolink {
	background-position: -1750px -158px;
}

#header h1 {
	font-size: 0;
}

#left_column_copy {
	color: #C1BFC6;
	padding-top: 55px;
	padding-right: 35px;
	padding-bottom: 45px;
	padding-left: 45px;
	line-height: 22px;
}


#welcome #left_column_copy {
	padding-top: 0;
}

#graphicdesign #left_column_copy {
	padding-top: 20px;	
}

#left_column_copy h3, #left_column_copy h2 {
	color: #fff;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

#left_column_copy h4 {
	color: #fff;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

#left_column_copy ul {
	margin-left: 0;
}

#left_column_copy ul li {
	padding-bottom: 1em;
	list-style-type: none;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/wardrobe/list.png);
	background-position: left 0.4em;
	background-repeat: no-repeat;
	padding-left: 2.7em;
}

/* Blog */

.xoxo {
	display: block;
	float: left;
}

.widgetcontainer {
	float: left;
}

#search-2 h3 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/sidebar_headers.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	text-indent: -9999px;
	height: 14px;
	margin-bottom: 10px;
}

#searchform label {
	display: none;
}

#searchform {
	float: left;
	margin-top: 0.5em;
}

#search-2 #s, #noresults-s, #error404-s {
	background: #d7d5d2;
	border: none;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/sidebar_headers.png);
	background-position: 0px -105px;
	padding: 5px 3px 0px;
	width: 244px;
	margin: 0;
	float: left;
	height: 20px;
	-webkit-border-top-left-radius: 3px 3px;
	-webkit-border-bottom-left-radius: 3px 3px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-bottomleft:3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	outline: none;

}

#noresults-s, #error404-s {
	width: 340px;
}
#search-2 #searchsubmit, #noresults-searchsubmit, #error404-searchsubmit {
	border: 0 solid;
	text-indent: -9999px;
	background:transparent url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/sidebar_headers.png) no-repeat 0px -65px;
	width: 27px;
	height: 25px;
	margin: 0;
	padding: 0;
	float: left;
	
}

widget_categories li {
	font-style: italic;
}

.widget_alternateRecentPosts li a {
	font-size: 1.1em;
	font-style: normal;
	margin-bottom: 0.5em;
	float: left;
	text-decoration: none;
}

.widget_alternateRecentPosts {
	margin-bottom: 1em;
}


.aside h3 {
	margin-bottom: 10px;
	margin-top: 5px;
}

.widget_recent_entries h3 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/sidebar_headers.png);
	background-repeat: no-repeat;
	background-position: 0px -15px;
	text-indent: -9999px;
	height: 16px;
	width: 300px;
}

.widget_categories, .widget_thematic_rsslinks {
	float: left;
	width: 135px;
}

.widget_categories h3 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/sidebar_headers.png);
	background-repeat: no-repeat;
	background-position: 0px -30px;
	text-indent: -9999px;
	height: 18px;
	width: 150px;
}

.widget_thematic_rsslinks h3 {
background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/sidebar_headers.png);
	background-repeat: no-repeat;
	background-position: 0px -49px;
	text-indent: -9999px;
	height: 16px;
	width: 300px;
	margin-top: 7px;
}


/* Blog Roll */

#blog_header a {
	text-indent: -9999px;
	font-size: 0;
	height: 0;
	display: block;
	padding-top: 80px;
	width: 470px;
	text-indent: -9999px;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01_ie.png);
	background-position: -795px top;
	background-repeat: no-repeat;
	margin-top: 31px;
}

h2#blog_header {
	margin-bottom: 0;
}

#blogroll {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	
}

#blogroll li {
	list-style-type: none;
	padding-left: 55px;
	padding-right: 50px;
	padding-top: 1em;
	padding-right: 3em;
}


#welcome #left_column {
	color: #B8B6BF;
}

#welcome .byline {
	color: #8e9487;
	font-style:italic;
	font-size: 0.9em;
	margin-bottom: 22px;
	font-family: Georgia, "Times New Roman", Times, serif;
}

#welcome .byline a {
	color: #bfbebd;
	font-style:italic;
	font-size: 1em;
	text-decoration: none;
}

#welcome .byline a:hover {
	color: #ffffff;
}

#welcome #left_column_copy h2 {
	font-size: 1.75em;
	margin-bottom: 0.5em;
	line-height: 1.5em;
}

#welcome #left_column_copy h2 a {
	text-decoration: none;
	color: #C1BFC6;
	font-family: Georgia, "Times New Roman", Times, serif;
}

#welcome #left_column_copy h2 a:hover {
	color: #FFFFFF;
}

#blogroll li a:hover {
	color: #fff;
	text-decoration: underline;
}

#blogroll_controls {
	padding-left: 0px;
	padding-right: 50px;
	padding-top: 23px;
	padding-bottom: 45px;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

#blogroll_controls a {
	color: #c0bebd;
	text-decoration: none;
}

#blogroll_controls a:hover {
	color: #fff;
	text-decoration: underline;
}

#rss_link {
	padding-left: 1.5em;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01_ie.png);
	background-repeat: no-repeat;
	background-position: left -33px;
}

/* Design Blog Roll */

#mini_blog_roll {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: repeat-y;
	background-position: -396px top;
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
}

#mini_blog_roll ul {
	margin: 0;
}


#mini_blog_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: -1px 0px;
	text-indent: -9999px;
	height: 59px;
	margin-bottom: 0;
	display: block;
	outline: none;
}

#mini_twitter_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: -1px -203px;
	text-indent: -9999px;
	height: 59px;
	margin-bottom: 0;
	display: block;
	outline: none;
}

#mini_post_header {
	text-indent: -9999px;
	height: 14px;
	margin-bottom: 2px;
	margin-left: 61px;
}

#graphicdesign #mini_post_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: 0px -112px;
}

#publicspeaking #mini_post_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/publicspeaking/publicspeaking_posts.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

#wardrobe #mini_post_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/wardrobe/wardrobe_posts.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

.mini_blog_roll_top {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: -792px top;
	height: 60px;
	margin-top: 40px;
	padding-bottom: 15px;
}

#mini_blogroll a {
	color: #bebdbd;
	font-size: 1.35em;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-decoration: none;
}

#mini_blogroll a:hover {
	color: #fff;
}

#mini_blogroll li {
	padding-left: 62px;
	list-style-type: none;
	padding-right: 50px;
	padding-top: 1em;
}

#mini_blogroll li .byline {
	color: #8e9487;
	font-style:italic;
	font-size: 0.9em;
}

#mini_blogroll li .byline a {
	color: #bfbebd;
	font-style:italic;
	font-size: 1em;
}

#mini_blogroll_controls {
	padding-left: 62px;
	padding-top: 1.5em;
	padding-right: 50px;
	padding-bottom: 0px;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

#mini_blogroll_controls a {
	color: #c0bebd;
	text-decoration: none;
}

#mini_blogroll_controls a:hover {
	color: #fff;
	text-decoration: underline;
}

.mini_blog_roll_bottom {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: -792px bottom;
	height: 30px;
}

/* Mini Contact */

.mini_contact_top {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: -792px top;
	height: 30px;
	margin-top: 0px;
	padding-bottom: 15px;
}

.mini_contact_top_twitter {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: -792px top;
	height: 59px;
	margin-top: 10px;
	padding-bottom: 30px;
}

.mini_contact_bottom_twitter {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: -792px bottom;
	height: 30px;
}

.mini_contact_bottom {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: -792px bottom;
	height: 20px;
}

.mini_contact {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: repeat-y;
	background-position: -396px top;
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #fff;
	font-size: 1.2em;
}

.mini_contact p {
	padding-left: 52px;
}


.mini_contact a {
	color: #ccc;
	text-decoration: none;
}

#twitterfeed hr {
	color: #666666;
	background:#666666 none repeat scroll 0 0;
}


.mini_contact a:hover {
	color: #fff;
	text-decoration: underline;
}

#mini_contact_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	height: 12px;
	width: 103px;
	background-position: 0px -187px;
	text-indent: -9999px;
	margin-bottom: 16px;
	margin-left: 52px;
}

ul#twitterfeed {
	list-style-type: none;
	margin-left: 0;
	padding-left: 52px;
	padding-right: 26px;
	font-size: 0.85em;
	font-family:Arial, Helvetica, sans-serif;
	color: #B8B6BF;
}

ul#twitterfeed a {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #8E9487;
}

ul#twitterfeed li {
	padding-bottom: 1em;	
}

.twitteruser a {
	color: #fff!important;
	font-weight: bold;
}

/* Slideshow Header */

#slideshow_container h2 {
	text-indent: -9999px;
	background-position: 0px -126px;
	background-repeat: no-repeat;
	float: right;
	font-size: 0;
}

#graphicdesign #slideshow_container h2 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	height: 44px;
	width: 176px;
	background-position: 0px -126px;
	margin-top: 8px;
}

#wardrobe #slideshow_container h2 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/wardrobe/wardrobe_header.png);
	height: 44px;
	width: 119px;
	background-position: 0px 5px;
	margin-top: 1px;
}

.wordpress #slideshow_container a {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/blog_header.png);
	height: 0;
	display: block;
	padding-top: 39px;
	text-indent: -9999px;
	width: 262px;
	background-position: 0px 0px;
	margin-top: 1px;
}

#publicspeaking #slideshow_container h2 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/publicspeaking/publicspeaking_header.png);
	height: 44px;
	width: 184px;
	background-position: 0px 5px;
	margin-top: 1px;
}

#caseinpoint #slideshow_container h2 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/caseinpoint/caseinpoint_header.png);
	height: 44px;
	width: 152px;
	background-position: 0px 0px;
	margin-top: 1px;
}

#packages #slideshow_container h2 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/packages/packages_header.png);
	height: 44px;
	width: 104px;
	background-position: 0px 5px;
	margin-top: 1px;
}

#about #slideshow_container h2 {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/about/about_header.png);
	height: 44px;
	width: 107px;
	background-position: 0px 5px;
	margin-top: 1px;
}

#slideshow_container p {
	line-height: 1.9em;
}
/* Gallery */

#graphicdesign #web_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: 0px -59px;
	height: 18px;
	width: 108px;
	text-indent: -9999px;
}

#graphicdesign #print_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: 0px -77px;
	height: 17px;
	width: 108px;
	text-indent: -9999px;
}

#graphicdesign #logo_header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_v2.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/design_elements_ie6.png);
	background-repeat: no-repeat;
	background-position: 0px -94px;
	height: 18px;
	width: 108px;
	text-indent: -9999px;
}

#gallery li { display: inline; text-indent: -9999px; font-size: 0; text-align: left; }

#gallery ul { margin: 0 0 20px; float: left; }

#gallery li a {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/gallery/thumbnails.jpg);
	background-repeat: no-repeat;
	padding-top: 116px;
	margin-right: 8px;
	margin-bottom: 10px;
	height: 0;
	width: 191px;
	text-indent: -9999px;
	float: left;
}

#gallery li a.end_link {
	margin-right: 0px;
}

.gallery_group {
	float: left;
}

/* Frames */

#frame_logo p {
	font-size: 0;
	text-indent: -9999px;
}

#viewing_text {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/frames/viewing_text.png);
	width: 100px;
	height: 1.5em;
	float: left;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: left bottom;
}

.viewing_link {
	font-size: 1.25em;
	color: #c1c1c1;
	text-decoration: none;
}

.viewing_link:hover {
	color: #fff;
}

#return_to_gallery {
	padding-top: 25px;
}

#return_to_gallery a {
	color: #9e0a0c;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	font-size: 1em;
	text-decoration: none;
}

#return_to_gallery a:hover {
	color: #DE000E;
	text-decoration: none;
}



/* Web Gallery */

#web_gallery #web_gallery_01 a {
	background-position: 0px 0px;
}

#web_gallery #web_gallery_01 a:hover, #web_gallery #web_gallery_01 a:focus {
	background-position: -190px 0px;
}

#web_gallery #web_gallery_02 a {
	background-position: 0px -116px;
}

#web_gallery #web_gallery_02 a:hover, #web_gallery #web_gallery_02 a:focus {
	background-position: -190px -116px;
}

#web_gallery #web_gallery_03 a {
	background-position: 0px -232px;
}

#web_gallery #web_gallery_03 a:hover, #web_gallery #web_gallery_03 a:focus {
	background-position: -190px -232px;
}

#web_gallery #web_gallery_04 a {
	background-position: 0px -348px;
}

#web_gallery #web_gallery_04 a:hover, #web_gallery #web_gallery_04 a:focus {
	background-position: -190px -348px;
}

/* Print Gallery */

#print_gallery #print_gallery_01 a {
	background-position: 0px -464px;
}

#print_gallery #print_gallery_01 a:hover, #print_gallery #print_gallery_01 a:focus {
	background-position: -190px -464px;
}

#print_gallery #print_gallery_02 a {
	background-position: 0px -580px;
}

#print_gallery #print_gallery_02 a:hover, #print_gallery #print_gallery_02 a:focus {
	background-position: -190px -580px;
}

#print_gallery #print_gallery_03 a {
	background-position: 0px -696px;
}

#print_gallery #print_gallery_03 a:hover, #print_gallery #print_gallery_03 a:focus {
	background-position: -190px -696px;
}

#print_gallery #print_gallery_04 a {
	background-position: 0px -812px;
}

#print_gallery #print_gallery_04 a:hover, #print_gallery #print_gallery_04 a:focus {
	background-position: -190px -812px;
}

/* Logo Gallery */

#logo_gallery #logo_gallery_01 a {
	background-position: 0px -928px;
}

#logo_gallery #logo_gallery_01 a:hover, #logo_gallery #logo_gallery_01 a:focus {
	background-position: -190px -928px;
}

#logo_gallery #logo_gallery_02 a {
	background-position: 0px -1044px;
}

#logo_gallery #logo_gallery_02 a:hover, #logo_gallery #logo_gallery_02 a:focus {
	background-position: -190px -1044px;
}

#logo_gallery #logo_gallery_03 a {
	background-position: 0px -1160px;
}

#logo_gallery #logo_gallery_03 a:hover, #logo_gallery #logo_gallery_03 a:focus {
	background-position: -190px -1160px;
}

#logo_gallery #logo_gallery_04 a {
	background-position: 0px -1276px;
}

#logo_gallery #logo_gallery_04 a:hover, #logo_gallery #logo_gallery_04 a:focus {
	background-position: -190px -1276px;
}


/* Footer */

#footer {
	font-family: Georgia, "Times New Roman", Times, serif;
	padding-top: 35px;
	font-size: 0.95em;
	color: #2A2B2B;
}

#siteinfo {
	text-align: right;
}

#footer_copyright p {
	text-align: right;
	margin: 0;
}


#footer_copyright .designed {
	color: #371300;
}

/* Featured Work */

#featured_header {
	text-indent: -9999px;
	width: 430px;
	height: 66px;
	font-size: 0;
}

#tag_line {
	margin-top: 20px;
}/* -------------------------------------------------------------- 
   
   layout.css
   * Sets up basic page elements.
   
-------------------------------------------------------------- */

body {
	background-color: #070301;
	margin: 0!important;
}

/* Header */

#header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/content_bg.jpg);
	background-repeat: repeat-x;
	background-position: -20% -26px;
	height: 137px;
	width: 100%;
}


#graphicdesign #header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/design_content_bg.jpg);
}

#publicspeaking #header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/publicspeaking_content_bg.jpg);
}

#wardrobe #header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/wardrobe_content_bg.jpg);
}

#packages #header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/packages_content_bg.jpg);
}

#about #header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/about_content_bg.jpg);
}

#caseinpoint #header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/caseinpoint_content_bg.jpg);
}

.wordpress #header, #welcome #header {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/blog_content_bg.jpg);
}

/* Main Navigation */

div#nav {
	font-size: 0.8em;
	overflow:hidden;
	background-color: #2c1a0d;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/content_bg.jpg);
	background-repeat: repeat-x;
	background-position: center -163px;
}

* html div#nav {
    /* hide ie/mac \*/
    height: 35px;
    /* end hide */
}

.wrapper {
	left: 0;
	bottom: 0;
	height: 35px;
	margin: 0 auto;
	width: 950px;
}
#nav  { height: 33px; margin: 0; }
#nav #menu { margin: 0; padding: 0; padding-left: 0px; }
#nav #menu li { display: inline; text-indent: -9999px; font-size: 0; text-align: left; }
#nav #menu li a {
	float: left;
	width: 136px;
	height: 0;
	padding-top: 35px;
	overflow: hidden;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01_ie.png);
	background-repeat: no-repeat;
	outline: none;
}

#nav #menu li a:focus
{
  -moz-outline-style: none;
}

/* BUTTONS */
#nav #menu li#n_graphicdesign a { background-position: 0 -110px; }
#nav #menu li#n_publicspeaking a { background-position: -136px -110px; }
#nav #menu li#n_wardrobe a { background-position: -272px -110px; }
#nav #menu li#n_caseinpoint a { background-position: -408px -110px; }
#nav #menu li#n_packages a  { background-position: -544px -110px; }
#nav #menu li#n_blog a  { background-position: -680px -110px; }
#nav #menu li#n_about a  { background-position: -816px -110px; width: 134px; }

/* OVER STATE */
#nav #menu li a:hover {
	background-color: #246059;
}

/* PRESSED STATES */

/* ON STATES */
#graphicdesign #nav #menu li#n_graphicdesign a, #graphicdesign #nav #menu li#n_graphicdesign a:hover, #graphicdesign #nav #menu li#n_graphicdesign a:active {
	background-color: #4e1702; !important; cursor: default;
}

#wardrobe #nav #menu li#n_wardrobe a, #wardrobe #nav #menu li#n_wardrobe a:hover, #wardrobe #nav #menu li#n_wardrobe a:active {
	background-color: #4e1702; !important; cursor: default;
}

#publicspeaking #nav #menu li#n_publicspeaking a, #publicspeaking #nav #menu li#n_publicspeaking a:hover, #publicspeaking #nav #menu li#n_publicspeaking a:active {
	background-color: #4e1702; !important; cursor: default;
}

#caseinpoint #nav #menu li#n_caseinpoint a, #caseinpoint #nav #menu li#n_caseinpoint a:hover, #caseinpoint #nav #menu li#n_caseinpoint a:active {
	background-color: #4e1702; !important; cursor: default;
}

#packages #nav #menu li#n_packages a, #packages #nav #menu li#n_packages a:hover, #packages #nav #menu li#n_packages a:active {
	background-color: #4e1702; !important; cursor: default;
}

.wordpress #nav #menu li#n_blog a, .wordpress #nav #menu li#n_blog a:hover, .wordpress #nav #menu li#n_blog a:active {
	background-color: #4e1702; !important; cursor: default;
}

#about #nav #menu li#n_about a, #about #nav #menu li#n_about a:hover, #about #nav #menu li#n_about a:active {
	background-color: #4e1702; !important; cursor: default;
}

/* Home Slideshow */

div#head_slideshow_wrapper {
	width: 100%;
	background-color: #FFFFFF;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/head_slideshow/background/head_slideshow.png);
	background-repeat: repeat-x;
	background-position: center -430px;
}

.wordpress #slideshow_container {
	min-height: 75px;
	padding-top: 40px;
	padding-bottom: 0px;
}

#graphicdesign #slideshow_container, #wardrobe #slideshow_container, #publicspeaking #slideshow_container, #caseinpoint #slideshow_container, #about #slideshow_container, #packages #slideshow_container, .wordpress #slideshow_container {
	width: 100%;
}

#caseinpoint #slideshow_container {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/caseinpoint/slideshow_bg.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

#welcome #slideshow_container, #welcome #head_slideshow_wrapper {
	height: 215px;
}

#graphicdesign #slideshow_container, #wardrobe #slideshow_container, #publicspeaking #slideshow_container, #caseinpoint #slideshow_container, #packages #slideshow_container, #about #slideshow_container {
	padding-top: 40px;
	padding-bottom: 20px;
}

#slideshow_alt {
	text-indent: -9999px;
	width: 950px;
	height: 215px;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/head_slideshow/background/head_slideshow.png);
	background-position: center top;
}

/* Main Body */

#main_body {
	background-color: #4e1d01;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/content_bg.jpg);
	background-repeat: repeat-x;
	background-position: -20% -198px;
	min-height: 416px;
	width: 100%;
	padding-bottom: 0;
}

#graphicdesign #main_body {
	background-color: #290500;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/design_content_bg.jpg);
}

#packages #main_body {
	background-color: #413f17;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/packages_content_bg.jpg);
}

#publicspeaking #main_body {
	background-color: #0a3644;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/publicspeaking_content_bg.jpg);
}

#caseinpoint #main_body {
	background-color: #412011;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/caseinpoint_content_bg.jpg);
}

#about #main_body {
	background-color: #1b3015;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/about_content_bg.jpg);
}


#wardrobe #main_body {
	background-color: #2a5b56;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/wardrobe_content_bg.jpg);	
}

#welcome #main_body {
	background-color: #8b2311;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/backgrounds/blog_content_bg.jpg);	
}

.wordpress #main {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/water_mark.png);
	background-repeat: no-repeat;
	background-position: right 400px;
}

.container {
	padding-bottom: 0;
	display: block;
}

#about #main_body .container {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/about/watermark.png);
	background-repeat: no-repeat;
	background-position: right 400px;
}

#packages #main_body .container {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/packages/watermark.png);
	background-repeat: no-repeat;
	background-position: right 400px;
}

#graphicdesign #main_body .container {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/design/water_mark.png);
	background-repeat: no-repeat;
	background-position: right 400px;
}
#wardrobe #main_body .container {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/wardrobe/water_mark.png);
	background-repeat: no-repeat;
	background-position: 410px 250px;
}

#publicspeaking #main_body .container {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/publicspeaking/water_mark.png);
	background-repeat: no-repeat;
	background-position: 340px 270px;
}

#caseinpoint #main_body .container {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/caseinpoint/watermark.png);
	background-repeat: no-repeat;
	background-position: right 300px;
}

#welcome #main_body .container {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/blog/water_mark.png);
	background-repeat: no-repeat;
	background-position: right 400px;
}

/* Featured Work */

#featured_work {
	margin: 16px auto 0;
	width: 390px;
	height: 340px;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_02.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01_ie.png);
	background-repeat: no-repeat;
	background-position: -2247px -25px;
}

#featured_work #slideshow {
	width: 348px;
	height: 256px;
	margin-left: 24px;
}

#darken {  
    position:absolute;  
    top:0;  
    left:0;  
    width:100%;  
    height:100%;  
    display:none;  
    z-index:199;  
    background:#0f0904;
    opacity:1;  
    filter:Alpha(opacity=100); /* Transparency in IE */  
}

#slider {
    width: 348px; /* important to be same as image width */
    height: 256px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}
#sliderContent {
    width: 348px; /* important to be same as image width or wider */
    position: absolute;
	top: 0;
	margin-left: 0;
}
.sliderImage {
    float: left;
    position: relative;
	display: none;
}
.sliderImage span {
	position: absolute;
	font: 11px/15px "Helvetica Neue", Arial, Helvetica, sans-serif;
	width: 408px;
	background-color: #0e0904;
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;
	-khtml-opacity: 0.9;
	opacity: 0.9;
	color: #bebdbd;
	display: none;
	padding-top: 20px;
	padding-right: 13px;
	padding-bottom: 20px;
	padding-left: 13px;
}
.clear {
	clear: both;
}
.sliderImage span strong {
    font-size: 14px;
}
.top {
	top: 0;
	left: 0;
}
.bottom {
	bottom: 0;
    left: 0;
}
#featured_work ul { list-style-type: none; margin: 0; }

/* Gallery */

#graphicdesign #gallery {
	margin-top: 27px;
}

#frame {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/frames/frame_bg.jpg);
	background-repeat: repeat-x;
	background-position: center -87px;
	background-color: #010000;
}

#frame_logo {
	text-indent: -9999px;
	font-size: 0;
	height: 87px;
	width: 280px;
	display: block;
	text-indent: -9999px;
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/frames/frame_bg.jpg);
	float: left;
	background-position: center 0;
	background-repeat: no-repeat;
}

#frame_logo {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/frames/frame_bg.jpg);
	background-repeat: repeat-x;
	background-position: center 0;
	padding-top: 87px;
	height: 0;
}

/* Main Body */

#left_column {
	background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01.png);
	_background-image: url(http://images.bigpictureimage.com/bpi_content/images/elements/content/body/elements_01_ie.png);
	background-repeat: repeat-y;
	background-position: -2660px top;
	min-height: 420px;
}

#packages #left_column, #about #left_column {
	min-height: 760px;
}

#footer {
	background-color: #070301;
	min-height: 75px;
	width: 100%;	
}html, body {
	height: 100%;
}

div#fancy_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	display: none;
	z-index: 30;
}

* html div#fancy_overlay {
	position: absolute;
	height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

div#fancy_wrap {
	text-align: left;
}

div#fancy_loading {
	position: absolute;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: none;
	overflow: hidden;
	background: transparent;
	z-index: 100;
}

div#fancy_loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background: transparent url('/bpi_content/images/elements/fancybox/fancy_progress.png') no-repeat;
}

div#fancy_loading_overlay {
	position: absolute;
	background-color: #666;
	z-index: 30;
}

div#fancy_loading_icon {
	position: absolute;
	background: url('/bpi_content/images/elements/fancybox/fancy_loading.gif') no-repeat;
	z-index: 35;
	width: 16px;
	height: 16px;
}

div#fancy_outer {
	position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    padding: 18px 18px 33px 18px;
    margin: 0;
    overflow: hidden;
    background: transparent;
    display: none;
}

div#fancy_inner {
	position: relative;
	width:100%;
	height:100%;
	border: 1px solid #444444;
	background: #FFF;
}

div#fancy_content {
	margin: 0;
	z-index: 100;
	position: absolute;
}

div#fancy_div {
	background: #000;
	color: #FFF;
	height: 100%;
	width: 100%;
	z-index: 100;
}

img#fancy_img {
	position: absolute;
	top: 0;
	left: 0;
	border:0; 
	padding: 0; 
	margin: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
}

div#fancy_close {
	position: absolute;
	top: -12px;
	right: -15px;
	height: 30px;
	width: 30px;
	background: url('/bpi_content/images/elements/fancybox/fancy_closebox.png') top left no-repeat;
	cursor: pointer;
	z-index: 181;
	display: none;
}

#fancy_frame {
	position: relative;
	width: 100%;
	height: 100%;
	display: none;
}

#fancy_ajax {
	width: 100%;
	height: 100%;
	overflow: auto;
}

a#fancy_left, a#fancy_right {
	position: absolute; 
	bottom: 0px; 
	height: 100%; 
	width: 35%; 
	cursor: pointer;
	z-index: 111; 
	display: none;
	background-image: url(data:image/gif;base64,AAAA);
	outline: none;
}

a#fancy_left {
	left: 0px; 
}

a#fancy_right {
	right: 0px; 
}

span.fancy_ico {
	position: absolute; 
	top: 50%;
	margin-top: -15px;
	width: 30px;
	height: 30px;
	z-index: 112; 
	cursor: pointer;
	display: block;
}

span#fancy_left_ico {
	left: -9999px;
	background: transparent url('/bpi_content/images/elements/fancybox/fancy_left.png') no-repeat;
}

span#fancy_right_ico {
	right: -9999px;
	background: transparent url('/bpi_content/images/elements/fancybox/fancy_right.png') no-repeat;
}

a#fancy_left:hover {
  visibility: visible;
}

a#fancy_right:hover {
  visibility: visible;
}

a#fancy_left:hover span {
	left: 20px; 
}

a#fancy_right:hover span {
	right: 20px; 
}

.fancy_bigIframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

div#fancy_bg {
	background-color: #000;
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	z-index: 70;
	border: 0;
	padding: 0;
	margin: 0;
}
	
div.fancy_bg {
	position: absolute;
	display: block;
	z-index: 70;
	border: 0;
	padding: 0;
	margin: 0;
}

div.fancy_bg_n {
	top: -18px;
	width: 100%;
	height: 18px;
}

div.fancy_bg_ne {
	top: -18px;
	right: -13px;
	width: 13px;
	height: 18px;
}

div.fancy_bg_e {
	right: -13px;
	height: 100%;
	width: 13px;
}

div.fancy_bg_se {
	bottom: -18px;
	right: -13px;
	width: 13px;
	height: 18px;
}

div.fancy_bg_s {
	bottom: -18px;
	width: 100%;
	height: 18px;
}

div.fancy_bg_sw {
	bottom: -18px;
	left: -13px;
	width: 13px;
	height: 18px;
}

div.fancy_bg_w {
	left: -13px;
	height: 100%;
	width: 13px;
}

div.fancy_bg_nw {
	top: -18px;
	left: -13px;
	width: 13px;
	height: 18px;
}

div#fancy_title {
	position: absolute;
	bottom: -33px;
	left: 0;
	width: 100%;
	z-index: 100;
	display: none;
}

div#fancy_title div {
	color: #FFF;
	font: bold 12px;
	padding-bottom: 3px;
}

div#fancy_title table {
	margin: 0 auto;
}

div#fancy_title table td {
	padding: 0;
	vertical-align: middle;
}

td#fancy_title_left {
	height: 32px;
	width: 15px;
}

td#fancy_title_main {
	text-align: center;
	height: 32px;
}

td#fancy_title_right {
	height: 32px;
	width: 15px;
}