/* first load styles */
#main {
  margin:20px;
}
#player, #cortadoPlayerContainer, #flashPlayerContainer, #installJavaContainer {
	display:none;
}
#live {
  color: red;
  font-weight: bold;
}
#programTitle {
  width:90%;
  font-weight: bold;
  margin-bottom: 20px;
}
#programDescription {
  margin-top: 20px;
  font-size:75%;
  width:90%;
}
#programDownloads a {
  color: red;
}
#programDownloads  {
  margin-top: 20px;
  font-size:0.7em;
  width:90%;
}
/*  Style for scrollable */
  /* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
  */
  div.scrollable0, 
  div.scrollable1 {
    /* required settings */
    position:relative;
    overflow:hidden;	 	
    width: 500px;	
    /* custom decorations */
    padding:10px 0;	
    /* border:1px outset #ccc; 
    background-color:#fff; */
	}

  div.scrollable2  {
    /* required settings */
    position:relative;
    overflow:hidden;	 	
    width: 500px;	
    /* custom decorations */
    padding:10px 0;	
    border:1px outset #ccc;
    background-color:#fff;				
  }
  div.scrollable2  {
		height:120px;
	}
  div.scrollable0, 
  div.scrollable1  {
		height: 45px;
	}
  /* 
    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.scrollable0 div.items, 
  div.scrollable1 div.items, 
  div.scrollable2 div.items  {	
    /* this cannot be too large */
    width:20000em;	
    position:absolute;
    clear:both;		
    
    /* decoration */
    margin-left:10px;
  }

  /* single scrollable item */
  div.scrollable0 div.items div {
    font-size:0.6em;
    font-weight: bolder;
  }
  div.scrollable1 div.items div {
    font-size:0.6em;
  }
  div.scrollable0 div.items div, 
  div.scrollable1 div.items div {
    float:left;
    
    /* custom decoration */
    text-align:center;
    width:135px;
    height:35px;
    padding:5px;
    font-size:12px;
    border:2px outset #ccc;
    background-color: #eee;
    margin-right: 20px;	
    /* -moz-border-radius:5px; */
	}

  div.scrollable2 div.items div {
    float:left;
    
    /* custom decoration */
    text-align:center;
    width:135px;
    height:110px;
    padding:5px;
    font-size:12px;
    border:1px outset #ccc;
    background-color: #eee;
    margin-right: 20px;	
    -moz-border-radius:5px;
  }

  /* active item */
  div.scrollable0 div.items div.active, 
  div.scrollable1 div.items div.active {
		border:2px inset #ccc;		
    background-color: #ddd;
	}
	 
  div.scrollable2 div.items div.active {
    border:2px solid red;		
    background-color:#eee;
  }
  /* this makes it possible to add next button beside scrollable */
  div.scrollable0, 
  div.scrollable1, 
  div.scrollable2 {
    float:left;	
  }

  /* prev, next, prevPage and nextPage buttons */
  a.prev0, a.next0, 
  a.prev1, a.next1 {
		display:block;
		width:18px;
		height:18px;
		/* background:url(../img/left.png) no-repeat; */
		float:left;
		margin:23px 10px;
		cursor:pointer;
		font-size:18px;
		font-weight: bolder;
		color: #666666;
	}
	
  a.prev2, a.next2,
  a.prevPage, a.nextPage  {
    display:block;
    width:18px;
    height:18px;
    /* background:url(../img/left.png) no-repeat; */
    float:left;
    margin:43px 10px;
    cursor:pointer;
		font-size:18px;
		font-weight: bolder;
		color: #666666;
  }

  /* mouseover state */
  a.prev0:hover, a.next0:hover, 
  a.prev1:hover, a.next1:hover, 
  a.prev2:hover, a.next2:hover,
  a.prevPage:hover, a.nextPage:hover   {
    background-position:0px -18px;		
  }

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

  /* next button uses another background image */
  a.next0, 
  a.next1,
  a.next2 {
    clear:right;	
	} 
  a.nextPage  {
    background-image:url(../img/right.png);
    clear:right;	
  }
  
  
  /*********** navigator ***********/
  
  
  /* position and dimensions of the navigator */
  div.navi0,
  div.navi1,
  div.navi2 {
    margin-left:328px;
    width:200px;
    height:20px;
  }
  
  
  /* items inside navigator */
  div.navi0 a,
  div.navi1 a,
  div.navi2 a {
    width:8px;
    height:8px;
    float:left;
    margin:3px;
    background:url(../img/navigator.png) 0 0 no-repeat;
    display:block;
    font-size:1px;
  }
  
  /* mouseover state */
  div.navi0 a:hover,
  div.navi1 a:hover,
  div.navi2 a:hover {
    background-position:0 -8px;      
  }
  
  /* active state (current page state) */
  div.navi0 a.active,
  div.navi1 a.active,
  div.navi2 a.active {
    background-position:0 -16px;     
  }

