#link_back, #separator_1, #separator_2{
	display: none;
}

/*
 * Video player container:
 *   You'll probably want to hide / show the player container based on whether
 *   or not the video is playing because the last frame is displayed in a Flash 
 *   movie when the stream is stopped.
 */
.flivpee_box_base{
	position:absolute;
	top: 32px;
	left: 5px;
	width: 400px;
	height: 300px;
	border: 0px;
}
.flivpee_box_stopped{
	background-color:red;
}
.flivpee_box_streaming{
	background-color:green;
}



/*
 * Player status:
 *   This will represent the player status.
 */
.flivpee_messages_base{
	position:absolute;
	bottom: 35px;
	left:65px;
	width:217px;
	height:12px;
}
.flivpee_messages_loading{
	background:url('images/status_loading.png') center no-repeat;
}
.flivpee_messages_playing{
	background:url('images/status_playing.png') center no-repeat;
}
.flivpee_messages_buffering{
	background:url('images/status_buffering.png') center no-repeat;
}
.flivpee_messages_stopped{
	background:url('images/status_stopped.png') center no-repeat;
}
.flivpee_messages_paused{
	background:url('images/status_paused.png') center no-repeat;
}
.flivpee_messages_video_not_found{
	background:url('images/status_video_not_found.png') center no-repeat;
}



/*
 * Stop widget
 */
.flivpee_stop_base{
	position:absolute;
	bottom:0px;
	left:5px;
	width:32px;
	height:31px;
}
.flivpee_stop_disabled{
	background-image:url('images/disabled_button.png');
}
.flivpee_stop_out{
	background-image:url('images/stop_out.png');
}
.flivpee_stop_over{
	background-image:url('images/stop_over.png');
}

/*
 * Pause widget
 */
.flivpee_pause_base{
	position:absolute;
	bottom:7px;
	left:10px;
	width:44px;
	height:44px;
}
.flivpee_pause_disabled{
	background-image:url('images/pause_disabled.png');
	z-index:0;
}
.flivpee_pause_out{
	background-image:url('images/pause_out.png');
	z-index:1;
}
.flivpee_pause_over{
	background-image:url('images/pause_over.png');
	z-index:1;
}

/*
 * Unpause widget
 */
.flivpee_unpause_base{
	position:absolute;
	bottom:7px;
	left:10px;
	width: 44px;
	height: 44px;
}
.flivpee_unpause_disabled{
	background-image:url('images/play_disabled.png');
	z-index:0;
}
.flivpee_unpause_out{
	background-image:url('images/play_out.png');
	z-index:1;
}
.flivpee_unpause_over{
	background-image:url('images/play_over.png');
	z-index:1;
}

/*
 * Mute widget
 */
.flivpee_mute_base{
	position:absolute;
	bottom:17px;
	left:300px;
	width:23px;
	height:23px;
}
.flivpee_mute_disabled{
	background-image:url('images/mute_disabled.png');
}
.flivpee_mute_out{
	background-image:url('images/mute_out.png');
}
.flivpee_mute_over{
	background-image:url('images/mute_over.png');
}

/*
 * Duration indicator
 */
.flivpee_duration_base{
	position:absolute;
	bottom:10px;
	left:65px;
	width:217px;
	color:black;
	text-align: center;
	font-size:12px;
	font-family: Verdana;
}
.flivpee_duration_time{
	color:black;
}
.flivpee_duration_total{
	color:black;
}


/*
 * Volume slider widget
 */
.flivpee_volume_base{
	position:absolute;
	bottom:27px;
	left:330px;
	width:70px;
	height:4px;
	background-image:url('images/volume_fill.png');
}
.flivpee_volume_indicator_base{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:4px;
	background:url('images/volume_indicator.png') top left no-repeat;
}
.flivpee_volume_rollover_base{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:4px;
	background:url('images/volume_over.png') top left no-repeat;
	z-index: 1;
}

/*
 * Timeline slider widget
 */
.flivpee_timeline_base{
	position:absolute;
	bottom:27px;
	left:65px;
	width:217px;
	height:4px;
	background-image:url('images/timeline_disabled.png');
}
.flivpee_timeline_indicator_base{
	position:absolute;
	top:0px;
	left:0px;
	height:4px;
	background:url('images/timeline_indicator.png') top left no-repeat;
}
.flivpee_timeline_buffer_base{
	position:absolute;
	top:0px;
	left:0px;
	height:4px;
	background:url('images/timeline_fill.png') top left no-repeat;
}
.flivpee_timeline_rollover_base{
	position:absolute;
	top:0px;
	left:0px;
	height:4px;
	background:url('images/timeline_over.png') top left no-repeat;
	z-index: 1;
}
