@charset "UTF-8";
/* CSS Document */

body	{margin:0; padding:0; background-color:#d4efed; font-family:"Myriad Pro",Arial, Helvetica, sans-serif;}

#content {position:relative;} 
#content-outer {background:url(img/bg-content.png) repeat-x top left; width:100%; height:100%;}

#header-outer {width:100%; height:204px; background:url(img/header-bg.png) repeat-x center top;}
#header {display:block;height:204px; background:url(img/Name-Bar.png) top right no-repeat;}


/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow: hidden;
    width: 960px; 
    height:1000px;
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

.bubble-work{
	display:block;
}
.bubble-work-item {position:relative; background-color:#eaf7f6;margin:10px 0px 20px;-moz-border-radius: 5px;
-webkit-border-radius: 5px;border: 1px solid #eaf7f6;padding: 10px;}
.bubble-work-item h2 {margin:0; padding:0;}
.bubble-work-item .company-info {font-size:.8em;}
.bubble-work-item p {margin:0;padding:0;font-size:.8em;}
.bubble-work-item p strong {margin:0px;padding:0;font-size:1.2em;}
.responsibilities {padding-top:10px !important;}
div.items div img{
	display:block;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(img/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	cursor:pointer;
	font-size:1px;
	z-index:10;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; position:absolute; right:25px; top:25px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ position:absolute; top:25px; left:-50px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(img/scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


/* the thumbnails */
#triggers {
	text-align:center;
}

#triggers img {
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	margin:15px 2px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	float:left;
}

/* the active thumbnail */
#triggers a.active img {
	outline:1px solid #000;

	/* show on top of the expose mask */
	z-index:9999;
	position:relative;
}



