@charset "UTF-8";
/* CSS Document */
			
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.awards_scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 460px; 
    height: 280px;
	margin-top:30px;
	} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super 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.awards_scrollable div.awards_items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
	} 
 
/* 
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.awards_scrollable div.awards_items div { 
    float:left; 
	} 
 
/* you may want to setup some decorations to active item */ 
div.awards_items div.active { 
    background-color:#fff; 
	}
	
	#awards {
		float:left;
		width: 460px;
		height: 260px;
		padding-top: 20px;
		}
		
		#awards_logo {
			float:left;
			width: 150px;
			}
		#awards_text {
			float: right;
			width: 280px;
			height: 280px;
			text-align:center;
			}
			
			#awards_text p {
				color:#FFFFFF;
				font-size: 10px;
				margin-bottom: 10px;
				line-height: 16px;
				}
				
				.awards_highlight {
					color:#f27315;
					font-style:italic;
					}
		
				/* prev, next,buttons */
					a.less, a.more {
						display: block;
						width: 50px;
						height: 30px;
						background: url(../images/projects/project_arrow-prev-100.gif) center no-repeat;
						cursor: pointer;
						margin-top: 10px;
						}
						
					a.more { float:right; margin-right: 0px;; background: url(../images/projects/project_arrow-next-100.gif) center no-repeat;}
					
					a.less { float:left;}
						
					/* mouseover state */
					a.less:hover {
						background: url(../images/projects/project_arrow-prev-100o.gif) center no-repeat;	
						}
					a.more:hover {
						background: url(../images/projects/project_arrow-next-100o.gif) center no-repeat;	
						}
					/* disabled navigational button */
					a.disabled {
						visibility:hidden !important;		
						}
