/*make a class for bio paragraph*/
#welcomecontainer {
	width:55%;
	min-width:300px;
	margin:0px auto;
	text-align:left;
	padding:10px 10px 10px 10px;
	border-radius:5px;
	background: rgba(0,0,0,0.8);
	color:white;
	overflow:auto;
}
#welcomemessage{
	padding:10px 10px 10px 10px;
	float:left;
	width:50%;
	min-width:300px;
	font-family: ubuntu, cursive, HELVETICA, Verdana;
	text-align:left;
	font-size:20px; 
	color: white;
}


/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable {
    /* required settings */
    position:relative;
    overflow:hidden;
    width: 300px;
    height:355px;
}

/*
   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;
}

.items div {
    float:left;
    width:300px;
}

/* single scrollable item */
.scrollable img {
    float:left;
    width:300px;
    height:355px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
}

/* active item */
.scrollable .active {
    position:relative;
    cursor:default;
}

.prev{
}

.next{
}