@charset "UTF-8";
/* SpryStackedContainers.css */

/* Copyright (c) 2007. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main container of the Stacked Containers structure. 
 *
 * If you want to constrain the width of the Stacked Containers structure, set a width on
 * the StackedContainers container. By default, our structure expands horizontally to fill
 * up available space.
 */
#remsMenu
{
	width: 250px;
	float: right;
	overflow: hidden;
	position: relative;
}
/* This is the selector for the Row Container element which houses all the column
 * classes. 
*/
#remsMenu div
{
	cursor:pointer;
	background-image: url(ART/behindREMS.png);
	background-repeat: repeat-x;
}
/* This is the selector for a highlighted Master Column element.
*/
#remsMenu div:Hover
{
	background-color: #666;
}
/* This is the selector for a selected Master Column element.
*/
#remsMenu div:active
{
	background-color:#F30;
}
