/* 
   css Copyright (c) 2006-2007 by Karelia Software. All rights reserved.
   css released under Creative Commons License 
        - http://creativecommons.org/licenses/by-sa/2.5/ 
   All associated graphics belong to their respective owners 
        and are licensed separately. 
*/


/*
GLOBAL

Try to define style properties as globally as possible. E.g. the basic font setting should be right there for the body element
*/

* {
	margin:0px;
	padding:0px;
	line-height: 100%;
}

body {
	font-family:  Eurostile, Verdana, Arial, Helvetica, sans-serif;
	font-size: 76%; /* as recommended in CSS guide */
	background:#666;
	color:#FFFFFF;

}

#newsflash

{
display:none;
background-color: #fa0b28;

width: 100%;

margin-top: 0px;

font-family: Arial,Helvetica,sans-serif;

color: #ffffff;

text-align: center;
	height: 20px;
	vertical-align: middle;
}

img {
	border:0px #000 none;
}

a {
	color:#CC99FF;
}

a:visited {
	color:#CCCCCC;
}
a:hover {
	color:#6600CC;
}
a:active {
	color:#b11;
}


h2 {
	font-size: 130%;
	margin: 0.33333333em 8px;
}

h4 {
	font-size: 115%;
	margin: 0.6em 0em 0.5em 0em;
	color: #666;
}

#title2 {
	color: #fff;
	height:69px;
	background: url(willow_header.gif) center top no-repeat;
	background-color:#000;
	min-width: 900px;
}

#title h1 {
	margin:2.25em 5px 0.75em 5px;
}

#title h1 a {
	text-decoration:none;
} 

#title p {
	font-style: italic;
	color: #755;
	margin: 0em 5px 1.5em 5px;
}

#title2 img {
	margin-left: AUTO;
	margin-right: AUTO;
}

ul {
	padding-left:20px;
	list-style-type:square;
}


/*
SITEMENU
*/

#sitemenu {
	clear:right;
	color:#FFFFFF;
	border:  double #ddd;
	border-width: 3px 0px;
	background-color:#000;
	min-width: 900px;
}

#sitemenu:hover {
	border-color: #b99;
}

#sitemenu ul {
	padding:0px 2px;
	margin:2px 7.5% 2px 7.5%;
	list-style:none;
	text-align:center;
}

#sitemenu ul li {
	display:inline;
	margin:0px 0.3em;
}

#sitemenu ul a, #sitemenu ul .currentPage .in {
	color:#FFFFFF;
	text-decoration: none;
}

#sitemenu .currentPage .in,  #sitemenu a:hover  {
	color:#9933FF !important;
}


/* 
MAIN PART 
*/

.article, #index {
	margin:8px;
	
}

#index .article {
	margin:0px;
	float:left;
}

.article-info {
	clear:left;
	text-align:right;
	color: #666;
	font-style: italic;
}

/*
SIDEBAR & CALLOUTS
*/


#page-content {
	width:900px;
	margin: 0px auto;

}

body.no-sidebar #page-content {
	width: 660px;
	
	
}

.callout {
	width:350px;
	float:left;
	margin: 0px 10px 0px 0px;
}

body.allow-sidebar #main {
	margin-right:245px;
}

#sidebar {
	width:230px;
	float:right;
	
}

.pagelet h4 {
	margin-top:0px;
}

.pagelet {
	margin-top:1.5em;
	overflow:hidden;
	padding: 0px 12px;
}

.pagelet.i1 {
	margin-top:0px;
}

.pagelet.bordered {
	background:#eee;
	padding: 12px;
}

/* 
PHOTO GRID PAGE
*/

.photogrid-index {
    text-align: center;
    margin: auto;
    overflow: hidden; /* for IE 5 Mac */
	height:1%; /* for IE 5, 6 Win */
}

.photogrid-index a {
	text-decoration:none;
	padding:1px 3px;
}
.photogrid-index h3 a:hover {
	text-decoration:underline;
}

.gridItem {
    float: left;
    position:relative;
    width:142px;
    height:180px;	/* room for caption */
	margin:5px 4px;
    padding-top: 10px;
    color:inherit;
    overflow: hidden;
}

body.allow-sidebar .gridItem {
	width: 160px;
}

.gridItem h3 {
    font-weight: normal;
    font-size: 100%;
    line-height: 130%;
	color: #755;
    margin: 4px 7px 0px 5px;
	padding: 0px 2px;
    position:absolute;
	top: 140px; /* needs to leave 38px from the bottom of the gridItem */
	width: 128px;
}

body.allow-sidebar .gridItem h3 {
	width:136px;
	margin: 4px 11px 0px 11px; 
}

.gridItem img {
   
    margin: auto;
    display:block;
    position: absolute;
    top: 0;
    bottom: 40px;
    right: 0;
    left: 0;
}


/*
PHOTO NAVIGATION
*/

.photo-navigation {
	position:relative;
    height: 35px;
    width:200px;
    margin:8px auto 8px auto;
	z-index: 1;
}

.photo-navigation div {
	width:49px;
	height:32px;
	position: absolute;
	text-indent: -5000em;
	z-index: 1;
}

.photo-navigation a {
	border-bottom:none;
	display:block;
	width:100%;
	height:100%;
}

#previous-photo	{
    background: url(photo-prev-off.gif)		no-repeat;
    left: 26px;
	z-index: 2;
}
#previous-photo a {
    background: url(photo-prev.gif)		no-repeat;
}

#next-photo {
    background: url(photo-next-off.gif)		no-repeat;
    left: 122px; 
	z-index: 2;
}
#next-photo a {
    background: url(photo-next.gif)		no-repeat;
	z-index: 2;
}

#photo-list {
    background: url(photo-list-off.gif)		no-repeat;
    left: 83px;
	z-index: 2;
}
#photo-list a {
    background: url(photo-list.gif)		no-repeat;
	z-index: 2;
}


/* IE 6 Hack */
/* Hides from IE5-mac \*/
* html .gridItem img {
	position: relative;
	top:0px;
}

* html .gridItem h3 {
	position: relative;
	top: 0px;
}
/* End hide from IE5-mac */




/* 
PAGE BOTTOM
*/
#page-bottom {
	padding-bottom: 100%;
	line-height:1.4em;
	text-align: center;
	background-color:#000;
	margin-top: 2em;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-image: url(background_info2.gif);
	background-repeat: repeat-x;

}

#page-bottom input{
	background-color:#999999;
	color: #000000;
	
}

/*
OTHER
*/
.article-thumbnail {
	padding: 3px 8px 0px 0px;
	float:left;
}
#index .article {
	clear:left;
}

/* 
SANDVOX INTERNALS
	
these should be present in every style sheeto ensure that certain classes used by Sandvox to hide and clear elements are respected.
Don't change them unless you have very good reason to do so.
*/

.clear {clear: both; height: 0;}
#main .clear {clear:left;}
.hidden {display:none;}
img.narrow {float: right;}
img.wide {display: block;}
.ImageElement, .VideoElement { text-align:center;}


/* IE 5/5.5 Hackery */
@media tty {
i{content:"\";/*" "*/}} @import 'ie.css'; /*";}
}/* */

#willowpic {
	float: right;
	margin-right: 90px;
}




span.label,span.spacer,span.multiple span {
	width:80px;
} 
span.multiple {float:left;} 
span.button {
} 
div.clear {clear:both;padding-top:5px;} 
#signup {width:30px;}

#info {
	color: #FDFDFD;
	padding: 10px;
	border: 10px solid white;
	top: 100px;
	z-index: 1000;
	background-color: #333333;
	margin-top: 80px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}

#info #panel_content .mini_block a {
	color: #FFFFFF;
	font-variant: normal;
	font-weight: bold;
	
}

#apDiv1 {
	position:absolute;
	left:330px;
	top:-10px;
	width:30px;
	height:82px;
	z-index:1000;
	background-color: #FFFFFF;
	border: 10px solid white;
	text-align: center;
}

/* CSS Document */
/* ------ GLOBAL ------ */


h1, h2, h3, h4, form, input, p, hr {
	margin: 0;
	padding: 0;
}
hr {
	color: #AAAAAA;
	height: 0px;
	margin-top: 10px;
}
ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
img {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}
input, textarea {
	margin: 0;
	padding: 0;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
}
textarea {
	overflow: auto;
}
.clr {
	clear: both;
}
a, a:focus, a:active, div {
	outline: 0;
}
h1.site_title {
	position: absolute;
	top: -500px;
	font-size: 0px;
}


/* ------ PANEL ------ */
#panel {
	position: absolute;
	top: 31px;
	left: -400px;
	width: 442px;
}
#panel_shad {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 10px;
	height: 100%;
	background: url(gfx_g/panel_shadow.png) no-repeat;
	*background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src='templates/jr_v3/gfx_g/panel_shadow.png',sizingMethod='crop');
}
#panel_click_bar {
	position: absolute;
	top: 0px;
	right: 10px;
	width: 32px;
	height: 100%;
	background: url(gfx_g/panel_clickbar_off.png) no-repeat;
	cursor: pointer;
}
#panel_scroll {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 400px;
	overflow: auto;
	background: url(gfx_g/scroll_bg.jpg) repeat-y top right;
}

/* ------ PANEL SCROLLBAR ------ */
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbase {
width: 16px;
background-color: #d0d0d0;
cursor: pointer;
}

.vscrollerbar {
background: #e8e8e8 url(gfx_g/scroll_hscrollerbar.gif) 0px 0px repeat-y;
width: 16px;
cursor: n-resize;
}

.vscrollerbar, .hscrollerbar {
padding: 16px;
z-index: 2;
}

.vscrollerbarbeg {
background: url(gfx_g/scroll_vscrollerbarbeg.gif) 0px 0px  no-repeat;
width: 16px;
height: 16px !important;
}

.vscrollerbarend {
background: url(gfx_g/scroll_vscrollerbarend.gif) 0px 0px  no-repeat;
width: 16px;
height: 16px;
}

.vscrollerbase {
background: #CCCCCC url(gfx_g/scroll_vscrollerbase.gif) 0px 0px repeat-y;
}

.vscrollerbasebeg {
background: url(gfx_g/scroll_vscrollerbasebeg.gif) 0px 0px no-repeat;
width: 16px;
height: 16px !important;
}

.vscrollerbaseend {
background: url(gfx_g/scroll_vscrollerbaseend.gif) 0px 0px no-repeat;
height: 16px;
width: 16px;
}

/* ------ PANEL CONTENT ------ */
#panel_content {
	position: relative;
	top: 0px;
	width: 310px;
	margin-right: 15px;
}
h1.image_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #FFC0CB;
	padding: 5px;
	margin-top: 5px;
}
div.image_notes {
	background-color: #FFFFFF;
	font-size: 11px;
	color: #555555;
	padding: 10px;
}
div.image_notes a {
	color: #018ab1;
}
div.image_notes p {
	margin-top: 0px;
	margin-bottom: 10px;
}
#panel_content h2 {
	background: #AEAEAE url(gfx_g/h2_bg.jpg) no-repeat top right;
	font-size: 11px;
	text-transform: uppercase;
	color: #222222;
	padding: 1px;
	padding-left: 3px;
	letter-spacing: 1px;
	font-weight: normal;
	margin-top: 5px;
}
#panel_content span.sep {
	margin-left: 5px;
	margin-right: 5px;
	color: #FFFFFF;
}
#panel_content div.mini_block {
	color: #FFC0CB;
	font-size: 11px;
	padding: 5px;
	border: thin dotted #FFC0CB;
}
#panel_content div.mini_block a {
	color: #474747;
	text-decoration: none;
}
#panel_content div.mini_block a:hover {
	text-decoration: underline;
}
#panel_content div.mini_block ul li {
	display: inline;
}
#vinfos_block {
	font-size: 10px;
}
#name_block {
	width: 120px;
	margin-right: 20px;
}
#email_block {
	width: 120px;
}
#url_block {
	width: 154px;
}
#name_block, #email_block, #url_block {
	float: left;
}
input.input_vinfos {
	border: none;
	font-size: 10px;
	color: #474747;
	width: 100%;
	height: 14px;
	line-height: 14px;
	text-indent: 3px;
	margin-top: 2px;
	background-color: #FFFFFF;
}
textarea.input_message {
	font-size: 11px;
	color: #474747;
	border: none;
	margin-top: 5px;
	height: 100px;
	border: 5px solid #ffffff;
	width: 280px;
	background-color: #FFFFFF;
}
#vinfos_save_block {
	float: left;
	margin-top: 5px;
	*margin-top: 0px;
	*margin-left: -4px;
	_margin-left: -2px;
}
#vinfos_save_block span {
	margin-left: 5px; 
}
input.input_submit {
	float: right;
	width: 100px;
	height: 17px;
	font-size: 10px;
	border: none;
	background-color: #FFFFFF;
	color: #474747;
	margin-top: 4px;
}
#thank_for_comment {
	display: none;
	margin-top: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #FFFFFF;
	font-size: 11px;
	text-align: center;
	color: #018ab1;
}
#image_comments {
	font-size: 11px;
	color: #565656;
}
#image_comments li {
	background: #F6F6F6 url(gfx_g/stucco_lvl1.jpg);
	margin-top: 5px;
	padding: 7px;
	width: 359px;
}
#image_comments li li {
	border: none;
	width: auto;
	padding: 5px;
}
#image_comments li span {
	display: block;
	margin-top: 10px;
	color: #999999;
}
#image_comments li a {
	color: #018ab1;
}
#image_comments li span a {
	color: #565656;
	text-decoration: none;
	font-weight: bold;
}
#image_comments li.thats_me {
	background: #FFFFFF;
}
#image_comments li.thats_me span {
	color: #84aec7;
}
#image_comments li.thats_me span a {
	color: #84aec7;
}
a.bv {
	display: block;
	width: 170px;
	height: 20px;
	float: left;
	margin: 6px;
	_margin: 5px;
}
a.bv:hover {
	filter:alpha(opacity=60);   
	-moz-opacity: 0.60;   
	opacity: 0.60;	
}
a.photoblogs { background-image:url(gfx_g/bv_photoblogs.jpg); }
a.coolphotoblogs { background-image:url(gfx_g/bv_coolphotoblogs.jpg); }
a.vfxy { background-image:url(gfx_g/bv_vfxy.jpg); }
a.delicious { background-image:url(gfx_g/bv_delicious.jpg); }
a.netvibes { background-image:url(gfx_g/bv_netvibes.jpg); }
a.google { background-image:url(gfx_g/bv_google.jpg); }
#info #apDiv1 .section {
	color: #666666;
	font-weight: bold;
}
/* Overall pagelet */
div.rssBadge
{
	margin: 10px;
}

/* Small icon option */
img.smallRSSBadgeIcon { vertical-align:middle; }
img.smallRSSBadgeIconLeft { margin-right:3px; }
img.smallRSSBadgeIconRight { margin-left:3px; }

/* Large icon option */
div.largeRSSBadgeIcon, p.largeRSSBadgeIcon
{
	margin: 0 10px;
	text-align:center !important;
}

img.largeRSSBadgeIcon { margin-bottom: 4px; }
p.largeRSSBadgeIcon { margin: 0; }
/* IE7 hacks */

*:first-child+html .gridItem img {
	position:relative;
	top:0px;
}

*:first-child+html .gridItem h3 {
	position:relative;
	top:0px;
}


/* Contact Element (standard and customized HTML) */

form.contactElement textarea,
form.contactElement input,
form.contactElement select {
	width:98%;
	margin:4px 0;
}
form.contactElement input.submit {
	width:auto;
	display:block;
	margin-left:auto;
	margin-right:2%;
	min-width:50%;
}
form.contactElement th {
	text-align:right;
	font-weight:normal;
	width:25%;
}

/* Contact Element For IE 7 */
*:first-child+html form.contactElement input.submit {
	padding:0px 10%;
	min-width: auto;
}
/* Overall pagelet */
div.rssBadge
{
	margin: 10px;
}

/* Small icon option */
img.smallRSSBadgeIcon { vertical-align:middle; }
img.smallRSSBadgeIconLeft { margin-right:3px; }
img.smallRSSBadgeIconRight { margin-left:3px; }

/* Large icon option */
div.largeRSSBadgeIcon, p.largeRSSBadgeIcon
{
	margin: 0 10px;
	text-align:center !important;
}

img.largeRSSBadgeIcon { margin-bottom: 4px; }
p.largeRSSBadgeIcon { margin: 0; }
/* IE7 hacks */

*:first-child+html .gridItem img {
	position:relative;
	top:0px;
}

*:first-child+html .gridItem h3 {
	position:relative;
	top:0px;
}


/* Contact Element (standard and customized HTML) */

form.contactElement textarea,
form.contactElement input,
form.contactElement select {
	width:98%;
	margin:4px 0;
}
form.contactElement input.submit {
	width:auto;
	display:block;
	margin-left:auto;
	margin-right:2%;
	min-width:50%;
}
form.contactElement th {
	text-align:right;
	font-weight:normal;
	width:25%;
}

/* Contact Element For IE 7 */
*:first-child+html form.contactElement input.submit {
	padding:0px 10%;
	min-width: auto;
}
.slideshowtext {
	width: 265px;
	float: right;
	font-size: 14px;
	margin-top: 20px;
}

.offlinetext {
	width: 465px;
	float: right;
	font-size: 14px;
	margin-top: 20px;
	margin-right: 40px;
}
#contarea {
	margin-right: auto;
	margin-left: auto;
}
/* Overall pagelet */
div.rssBadge
{
	margin: 10px;
}

/* Small icon option */
img.smallRSSBadgeIcon { vertical-align:middle; }
img.smallRSSBadgeIconLeft { margin-right:3px; }
img.smallRSSBadgeIconRight { margin-left:3px; }

/* Large icon option */
div.largeRSSBadgeIcon, p.largeRSSBadgeIcon
{
	margin: 0 10px;
	text-align:center !important;
}

img.largeRSSBadgeIcon { margin-bottom: 4px; }
p.largeRSSBadgeIcon { margin: 0; }
/* IE7 hacks */

*:first-child+html .gridItem img {
	position:relative;
	top:0px;
}

*:first-child+html .gridItem h3 {
	position:relative;
	top:0px;
}


/* Contact Element (standard and customized HTML) */

form.contactElement textarea,
form.contactElement input,
form.contactElement select {
	width:98%;
	margin:4px 0;
}
form.contactElement input.submit {
	width:auto;
	display:block;
	margin-left:auto;
	margin-right:2%;
	min-width:50%;
}
form.contactElement th {
	text-align:right;
	font-weight:normal;
	width:25%;
}

/* Contact Element For IE 7 */
*:first-child+html form.contactElement input.submit {
	padding:0px 10%;
	min-width: auto;
}
