@charset "utf-8";
/* CSS Document */
/*-------------------------------------------------------------------
  Old School Cameras - style sheet tabs panes in rental catalog pages
  - redesign, development, and code by: Sean Glassford
  - last updated: 4/1/2012
  - Copyright 2012, Old School Cameras, All Rights Reserved
---------------------------------------------------------------------*/

/* tab pane styling */
.panes > div {
	display:none;
    padding: 0 0 0 5px;
    border:0;
    font-size:14px;
}
.panes {
	width:950px;
	height:100%;
}

/***************************************************************************************/
/* ************************* bug fix note ********************** 3/19/2012 s.glassford 
*** originally the plugin css reads the following

**original*******************************************************************************
.panes div {
	display:none;
	padding: 0 0 0 5px;
    border:0;
    font-size:14px;
}
*****************************************************************************************
*** the problem is any child div within .panes will be permanently hidden
*** the fix adds a > selector to specify only the first div child under the parent .panes
*****************************************************************************************

**fix************************************************************************************
.panes > div {
	display:none;
    border:0;
    font-size:14px;
}
****************************************************************************************/