/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('../fancybox/fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('../fancybox/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('../fancybox/blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('../fancybox/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('../fancybox/fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('../fancybox/fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('../fancybox/fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('../fancybox/fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('../fancybox/fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('../fancybox/fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('../fancybox/fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('../fancybox/fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('../fancybox/fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('../fancybox/fancy_title_over.png');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('../fancybox/fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('../fancybox/fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('../fancybox/fancybox.png') -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }

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

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

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

/* Fonts */
@font-face {
	font-family: 'FuturaLTLight';
	src: url('../fonts/futuralt-light-webfont.eot');
	src: local('☺'), url('../fonts/futuralt-light-webfont.woff') format('woff'), url('../fonts/futuralt-light-webfont.ttf') format('truetype'), url('../fonts/futuralt-light-webfont.svg#webfontxe6S3fNJ') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'FuturaLTBook';
	src: url('../fonts/futuralt-book-webfont.eot');
	src: local('☺'), url('../fonts/futuralt-book-webfont.woff') format('woff'), url('../fonts/futuralt-book-webfont.ttf') format('truetype'), url('../fonts/futuralt-book-webfont.svg#webfontdHH81Oik') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'FuturaLT';
	src: url('../fonts/futuralt-webfont.eot');
	src: local('☺'), url('../fonts/futuralt-webfont.woff') format('woff'), url('../fonts/futuralt-webfont.ttf') format('truetype'), url('../fonts/futuralt-webfont.svg#webfontEE8CWfhC') format('svg');
	font-weight: normal;
	font-style: normal;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.backgroundBlack {
	background-color: black;
	color: white;
}
.column {
	width: 33%;
	float: left;
	margin: 0;
}
.active {
	font-weight: bold;
	color: black !important;
}

* {
	outline: none;
}
body {
	color: #666;
	font-family: arial, verdana, sans-serif;
	font-size: 62.5%;
}
a {
	text-decoration: none;
	color: #000;
}
.bold {
	font-weight: bold;
	color: black;
}
.italic {
	font-style: italic;
	color: black
}
.ajax-load {
	width: 16px;
	height: 16px;
	position: absolute;
	background: url(../img/ajax-loader.gif) no-repeat center;
}
p {
	font-size: 1.6em;
	line-height: 20px;
	color: #807F83;
	text-align: justify;
	text-align-last: left;
	margin: 10px 0;
}
#mask {
	width: 100%;
	height: 100%;
	opacity: 0.9;
	background-color: #000;
	position: relative;
}
#accordion {
	margin-top: -1px;
}
#accordion > div {
	padding: 2em;
}
#logo {
	width: 440px;
	height: 123px;
	display: block;
	margin: 20px auto 0;
	position: relative;
}
.logoImg {
	width: inherit;
	height: inherit;
}
#banner {
	margin: 0;
	width: 900px;
	height: 340px;
}

#main-wrapper {
	width: 900px;
	margin: 0 auto;
}

h2.section {
	font-size: 1.5em;
	font-weight: 300;
	padding: 5px;
	display: block;
	font-family: 'FuturaLTBook';
	text-transform: uppercase;
	margin: 1px 0 0;
	cursor: pointer;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
}
h2#about-us { background-color:#9b9ca0;}

h2#capabilities { background-color:#b5b7b9;}

h2#our-team { background-color:#c8c9cb;}

h2#portfolio { background-color:#d1d2d3;}

h2#clients { background-color:#dddedf;}

h2#references { background-color:#eaebec;}

h2#contact-us { background-color:#f2f2f3;}

h2.selected, h2.hover { background-color: black !important; color: white !important;}

h2.selected a, h2.hover a { color: white;}

div[for] {
	overflow: hidden;
}
div[for] .menu {
	width: 200px;
	float: left;
	padding: 0 5px;
}
div[for] .menu .sect {
	margin: 0 0 15px 0;
	border: none;
}
div[for] .menu h3 {
	text-transform: uppercase;
	font-family: "FuturaLT";
	font-weight: bold;
	font-stretch: condensed;
	font-size: 16px;
	margin: 0 0 5px 0;
	color: #000;
	text-align: right;
}
div[for] .menu a {
	display: block;
	color: #807F83;
	font-size: 1.4em;
	line-height: 1.6em;
	text-align: right;
	white-space: nowrap;
}
div[for] .menu a:hover {
	color: black;
}
div[for] .menu .alphabetic {
	text-align: right;
}
div[for] .menu .alphabetic a {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 1px #999 dotted;
	color: #666;
	text-align: center;
	line-height: 1.4em;
	padding: 3px 2px 0 2px;
	margin: 1px 0;
}
div[for] .menu .alphabetic a:hover {
	color: black;
}
div[for=about-us] {
	height: 335px;
}
div[for=about-us] #top-header {
	font-family: "FuturaLTLight";
	font-size: 39px;
	color: #3F93B0;
	text-transform: uppercase;
	font-weight: 200;
	width: inherit;
	text-align: center;
	display: block;
}
div[for=about-us] #bottom-header {
	font-style: italic;
	font-size: 1.70em;
	width: inherit;
	text-align: center;
	display: block;
	color: black;
}
div[for=about-us] span.bold {
	margin: 15px 0 10px;
	display: block;
	font-size: 1.6em;
}
div[for=about-us] li {
	list-style: none;
	color: #807F83;
	width: 98%;
	margin: 0 0 5px;
	font-style: italic;
	font-size: 1.6em;
}
div[for=about-us] > div {
	margin: 25px 0;
}
div[for=about-us] > div:first-child {
	margin-top: 0px;
}
div[for=about-us] .num {
	font-weight: bold;
}
div[for=portfolio] {
	max-height: 30px !important;
	padding: 0 !important;
}
div[for=portfolio] .menu {
	list-style: none;
	height: 30px;
	width: 100%;
	margin: 0;
	padding: 0;
	float: none;
	text-align: center;
}
div[for=portfolio] .menu li:last-child {
	background-image: none;
}
div[for=portfolio] .menu li {
	display: inline-block;
	padding: 5px 20px 0 15px;
	height: inherit;
	background: url(../img/menu_seperator_white.jpg) right top no-repeat;
	background-position-y: 2px;
	text-transform: uppercase;
	font-family: "FuturaLT";
}
div[for=clients] .view {
	height: 530px;
}
div[for=clients] .client {
	font-size: 1.2em;
	padding: 5px 0;
}
div[for=clients] .title {
	padding-bottom: 10px;
	margin-bottom: 5px;
	border-bottom: 1px dotted #B2B2B2;
	width: 100%;
	float: left;
}
div[for=clients] .title.letter {
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 0;
	font-size: 1.8em;
}
div[for=clients] .section, div[for=clients] .category {
	padding-bottom: 15px;
	border-bottom: 1px dotted #B2B2B2;
}
div[for=clients] .column {
	padding-right: 10px;
}
div[for=clients] .section.letter {
	border-bottom: none;
}
div[for=clients] .category {
	padding-bottom: 5px;
}
div[for=clients] .category .title {
	font-size: 1.3em;
	border-bottom: none;
	margin-top: 8px;
	padding-bottom: 0px;
	margin-bottom: 2px;
}
div[for=clients] .category .column {
	width: 50%;
}
div[for=contact-us] .bold {
	width: inherit;
	font-family: "FuturaLT";
	font-weight: bold;
	display: block;
	margin: 10px 0 15px;	
}
div[for=references] .view {
	height: 700px;
}
div[for=references] .container{
	width: 95%;
	margin: 15px;
	height: inherit;
}
div[for=references] img {
	width: inherit;
}
div[for=references] .ajax-load {
	top: 342px;
	left: 298px;
}
div[for=our-team] .menu { height: 225px;}

.view {
	width: 610px;
	min-height: 500px;
	margin: 0px 15px;
	float: left;
	position: relative;
	overflow: hidden;
}
.view .container {
	width: inherit;
	height: 200em;
	position: absolute;
	top: 0;
	left: 0;
}
.view h3 {
	color: #000;
	font-size: 1.6em;
	font-weight: 300;
	margin: 0 0 5px 0;
	display: block;
	font-family: 'FuturaLTBook';
	text-transform: uppercase;

}
.view p {
	font-size: 1.4em;
	line-height: 1.6em;
	color: #807F83;
	margin: 0 0 15px;
	padding-bottom: 15px;
	border-bottom: #B2B2B2 dotted 1px;
}


#footer {
	width: inherit;
	height: 40px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 7px;
	font-family: "FuturaLT";
	font-size: 1.2em;
	padding: 20px 0 0;
}
/* 
	Portfolio Modal 
*/
#modalContainer {
	position: fixed;
	display: none;
	z-index: 9999;
	top:0;
	left:0;
}
#modalPortfolio {
	width: 890px;
	height: 700px;
	/*position: absolute;*/
	position: relative;
	background-color: #545454;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	/*
	-moz-box-shadow: 0 0 50px #000;
	-webkit-box-shadow: 0 0 50px #000;
	*/
	overflow: hidden;
}
#modalPortfolio #loading {
	width: inherit;
	color: 'white';
	height: inherit;
	text-align: center;
	padding-top: 20px;
	font-size: 20px;
	z-index: 9999;
}
#modalPortfolio #slider {
	height:550px;
	width: inherit;
	margin: 0 auto;
	background-color: white;
}
#modalPortfolio .ajax-load {
	top: 217px;
	left: 437px;
	display: none;
}
#modalPortfolio #slider .container {
	margin: 0 auto;
	width: inherit;
	height: inherit;
}
#modalPortfolio #slider .container img {
	margin: 0 auto;
	z-index: 9999;
}
#modalPortfolio .left.prev {
	left: 0;
	width: 30px;
	height: 30px;
	background: url(../img/modalPortfolio.jpg) no-repeat 0px 0px;
	top: 250px;
	z-index: 9998;
	position: absolute;
}
#modalPortfolio .left.prev:hover {
	background-position: -60px 0px;
}
#modalPortfolio .right.next {
	right: 0;
	width: 30px;
	height: 30px;
	background: url(../img/modalPortfolio.jpg) no-repeat -30px 0px;
	top: 250px;
	z-index: 9999;
	position: absolute;	
}
#modalPortfolio .right.next:hover {
	background-position: -90px 0px;
}
#modalPortfolio .menu {
	list-style: none;
	height: 30px;
	width: 100%;
	background-color: black;
	margin: 0;
	padding: 0;
	float: none;
}
#modalPortfolio .menu li {
	display: block;
	float: left;
	padding: 5px 16px 0 10px;
	font-size: 1.2em;
	font-family: "FuturaLT";
	line-height: 1.4em;
	height: inherit;
	text-transform: uppercase;
	text-align: center;
	background: url(../img/menu_seperator.jpg) no-repeat right top;
}
#modalPortfolio .menu li:last-child {
	background-image: none;
	padding-right: 0;
}
#modalPortfolio .menu li a{
	color: #666 !important;
	letter-spacing: 1.5px;
}
#modalPortfolio .menu li a.active {
	font-weight: bold !important;
}
#modalPortfolio .menu li.title {
	font-weight: bold;
	border-right: #545454 solid 3px;
	height: inherit;
	background-image: none;
	padding: 5px 10px 0;
	text-align: center;
}
#modalPortfolio .menu li.title a {
	color: white !important;
}
#modalPortfolio #bottomBar {
	width: inherit;
	height: 120px;
	position: relative;
}
#modalPortfolio #description {
	position: absolute;
	top: 0px;
	left: 10px;
	width: 60%;
	height: inherit;
}
#modalPortfolio #description .title {
	color: #f2f2f3;
	text-transform: uppercase;
	font-size: 1.4em;
	letter-spacing: 3px;
	font-weight: 300;
	font-family: "FuturaLT";
	margin-top: 15px;
}
#modalPortfolio #description .text {
	color: #eaebec;
	font-size: 1.2em;
	line-height: 1.4em;
	margin: 5px 0;
	width: 500px;
	text-align: justify;
} 
#modalPortfolio #bottomBar .scrollable {
	width: 254px;
	height: 60px;
	margin: 5px 10px 0;
	float: right;
	position: relative;
	overflow: hidden;
}
#modalPortfolio #bottomBar .scrollable .items {
	position: absolute;
	height: 60px;
	left: 0;
	top: 0;
	width: 999em;
	
}
#modalPortfolio #bottomBar .innerWrapper {
	position: absolute;
	top: 0;
	left: 0;
	height: inherit;
	margin:0;
	padding: 0;
	width: 254px;
}
#modalPortfolio #bottomBar .thumb {
	width: 55px;
	height: 55px;
	overflow: none;
	display: inline-block;
	margin: 0 2px;
	background-color: white;
	border: 2px solid white;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); 
	 -moz-opacity: 0.5;
	 -khtml-opacity: 0.5;
	 opacity: 0.5;
}
#modalPortfolio .thumb.active { 
	border: 2px solid #999 !important;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); 
	 -moz-opacity: 1.0;
	 -khtml-opacity: 1.0;
	 opacity: 1.0 !important;
}
#modalPortfolio #bottomBar .navigate {
	height: 20px;
	width: 68px;
	display: block;
	position: absolute;
	line-height: 2.2em;
	text-align: center;
	bottom: 10px;
	color: white;
	text-transform: uppercase;
	background: url(../img/modalPortfolio.jpg) 0 -31px no-repeat;
}
#modalPortfolio #bottomBar #prev {
	right: 194px;
}
#modalPortfolio #bottomBar #next {
	background-position: -68px -31px;
	right: 120px;
}
#modalPortfolio #bottomBar #close {
	background-position: -135px -31px;
	width: 100px;
	right: 10px;
	color: #a4a4a4;
}
#modalPortfolio #bottomBar a#prev:hover {
	background-position: 0 -51px;
	color: black;
} 
#modalPortfolio #bottomBar a#next:hover {
	background-position: -68px -51px;
	color: black;
}
#modalPortfolio #bottomBar a#close:hover {
	background-position: -135px -51px;
	color: white;
}