/*
	root element for the nonscrollable.
	when scrolling occurs this element stays still.
*/
.nonscrollable {
	float: left;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 205px;
}

/*
	root element for nonscrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate nonscrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.nonscrollable .items {
	/* this cannot be too large */
	list-style: none;
	clear: both;
	padding: 0;
	display: inline-block;
	width: calc(100% + 10px);
	margin: 0 -5px;
	}

/* single nonscrollable item */
.nonscrollable .item {
	float:left;
	margin: 0 5px;
	padding: 0;
	background-color:#fff;
	background-image:url("/images/patt.jpg");
	border:1px solid #ccc;
	padding-top:6px 2px 0;
	/*cursor:pointer;*/
	width: calc(20% - 10px);
	height:200px;
	text-align:center;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	box-sizing: border-box;
}
.nonscrollable .item .phn
{
	padding-top:3px;
	min-height:40px;
}
.nonscrollable .item .phb
{
	height:126px;
	width:120px;
	overflow:hidden;
	text-align:center;
	position:relative;
	margin:0 5px;
	margin-top:5px;
}
.nonscrollable .item  img.ph{
	/*max-height:126px;
	max-width:110px;*/
}
/* active item */
.nonscrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}



/* this makes it possible to add next button beside nonscrollable */
.nonscrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(img/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:108px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(img/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


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

div.LINE_ELEMENT table tr td{
	border:1px solid #CECECE;
}
div.LINE_ELEMENT table tr td .club_id{
margin-top:5px;
}
div.LINE_ELEMENT h3{
	margin-left:5px;
}
div.sityes{
	margin:4px;
}