/******************************************************
Style sheet for pixelplume.com
STILL PROJECTs layout -- big picture + 2x4 thumbnail grid

author:  Grace Pok
version 1.0

Color scheme

	Green:  6DB33F
	Light green (link hover):  C1D83D
	white: (active link + text): FFFFFF
	grey: (minor text): D4D4D4

******************************************************/

div#plongdescbox {
	position: absolute; /* relative to the parent, which is the CONTENT div */
	width: 300px;

	margin-top: -40px;
	margin-left: 323px;  /* 620 - (this box's width) - padding x 2 */
}
div#plongdescbox  .txtbody {
	margin: 0;
	padding: 5px 10px 12px 10px;	
	max-height: 300px;  /* Hack in IE.css */
	overflow: auto;
	font-size: 95%;
}
div#plongdescbox p {
	text-align: right;
}
div#plongdescbox p.morelink {
	font-size: 80%;  /* match the project info text size */
	padding-top: 10px;
	height: 30px;
}

/* ----- MORE button that triggers the long description text --- */
a#btn_more {
	background: black url("../graphics/arrow_def_sm.gif") no-repeat center right;
	padding-right: 22px;
}
a#btn_more:hover {background: black url("../graphics/arrow_hover_sm.gif") no-repeat center right;}
a#btn_more.cur {
	background: black url("../graphics/arrow_active_sm.gif") no-repeat center right;
	color: #C1D83D;
}

/* Long description text */
div#plongdescbox div#plongdesc{
	background-color: #262626;
	padding: 10px;
	font-size: 80%;
}

/* main project picture 
-------------------------------------------------- */
div#bigpx, div#bigpx img {  /* make the image fill the entire box. overflow will be cropped */
	width: 619px;
}
div#bigpx {
	float: left;
	overflow:hidden;
	height: 348px;
}


/* Thumbnail handling 
---------------------------------------------------------*/
div#tbox {  /*thumbnail box -- 2x4 grid */
	float: left;
	width: 254px;
	height: 348px;  /*Thumbnail x 4 + (3*margin) */
	margin-left: 20px;
}

div#tbox  a  {
	float: left;
	display: block;
	
	border: 1px solid black;
	width: 120px;
	height: 82px;
	
	margin-bottom: 4px;
	margin-right: 4px;
	cursor: pointer;  /* needed since links don't have HREF */
}
div#tbox  a.col2 {
	margin-right: 0px;
}
div#tbox a.cur {
	border: 1px solid white;
}
div#tbox a img {
	filter:alpha(opacity=60); /* for IE */
	opacity:0.60;  /* CSS3 standard */
	-moz-opacity:0.60; /* for Mozilla */

	border: 0;
	width: 120px;
	height: 82px;
	
}

/* Full opacity 
 * because IE only supports :hover on <A>, create classes on IMG
 */
div#tbox a img.hover, div#tbox a img.cur, div#tbox a img:hover{
	filter:alpha(opacity=100); /* for IE */
	opacity:1.0;  /* CSS3 standard */
	-moz-opacity:1.0; /* for Mozilla */
}

