/* MODULES */

/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#fff 0 0;
	width: 100%;
	border:1px solid #ddd;
	margin:20px 0px 20px 0px;
	-background:#333;
}

/* accordion header */
#accordion h2 {
	background: #8FA9C2;
	margin:0;
	color:#fff;
	padding:5px 15px;
	font-size:14px;
	font-weight:normal;
	border:1px solid #fff;
	border-bottom:1px solid #ddd;
	cursor:pointer;		
}
/* currently active header */
#accordion h2.current {
	cursor:default;
		color:#fff;
	background-color:#8FA9C2;
}

/* accordion pane */
#accordion div.pane {
	border:1px solid #fff;
	border-width:0 2px;
	display:none;
	padding:15px;
	color:#111;
	font-size:14px;
}

/* a title inside pane */
#accordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}



/* New Module Scroller */

#modScroller {width:900px; margin-left:30px; }

/* remove margins from the image */ 
.items img { 
    margin:0; 
	padding:0;
} 
 
/* make A tags our floating scrollable items */ 
.items a { 
    display:block; 
    float:left; 
    margin:15px 5px 15px 5px; 
	
}  
 
 
/* tooltip styling */ 
#tooltip { 
    display:none;
	text-align:center;
    background:url(../img/black_arrow.png); 
    font-size:14px;
	line-height:16px;
	font-weight:bold;
    height:70px; 
    width:160px; 
    padding:25px; 
    color:#fff; 
}

/* scrollable should not disable gallery navigation */ 
#gallery .disabled { 
    visibility:visible !important; 
} 
 
#gallery .inactive { 
    visibility:hidden !important; 
}

/* active item */ 
.scrollable .active { 
   
    /* these two settings makes it visible over the mask */ 
    z-index:9999; 
    position:relative; 
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 815px;
	height:110px;
	padding:0;
	margin:0;
	
	/* custom decorations */
	
	background:url(../img/h300.png) repeat-x;
}

/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 0px 0 16px;
	padding:0px;
	border:none;
	cursor:pointer;
	width:74px;
	height:78px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../img/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
	padding:0;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../img/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;		
} 	

/* Button Styles */

.button1 /* Button with CSS only */ 
{
margin-top:10px;
     background: url(../img/download.png);
     height:235px;
	 width:240px;
	 display:block;
}
.button1:hover
{
     background-position:0px 240px;
}
/* Button with jQuery */ 
.button2
{
margin-top:15px;
     background: url(../img/contact.png);
     height:235px;
	 width:240px;
	 display:block;
	 background-position:0 -240px;
}
.button2 a
{
     background: url(../img/contact.png);
     height:235px;
	 width:240px;
	 display:block;
}
