body,h1,h2,h3,p,quote,small,form,input,ul,li,ol,label,fieldset{
	/* A simple page reset */
	margin:0px;
	padding:0px;
	border:0;
}

body{
	/* Styling the body */
	font-size:13px;
	background: #c5d5d1;
	background-image:url(img/grad.png);
	background-repeat:repeat-y;
	background-position:center;
	font-family:Arial, Helvetica, sans-serif;
}



#gallery{
	/* The pics container */
	width:100%;
	height:580px;
	position:relative;
}

/* From previous version of my site */
#contacts 
{
	position:absolute;
	padding-top: 370px;
	padding-left: 14px;
	width: 54px;
	height:89px;
	margin-top: 10px;
}

#email
{
	background-image:url(img/email.png);
	background-position: top;
}



.pic, .pic a{
	/* Each picture and the hyperlink inside it */
	width:100px;
	height:100px;
	overflow:hidden;
}

.pic{
	/* Styles specific to the pic class */
	position:absolute;
	border:7px solid #fcfdec;
	border-bottom:16px solid #fcfdec;	
	
	/* CSS3 Box Shadow */
	-moz-box-shadow:2px 2px 3px #333;
	-webkit-box-shadow:2px 2px 3px #333;
	box-shadow:2px 2px 3px #333;
}

.pic a{
	/* Specific styles for the hyperlinks */
	text-indent:-999px;
	display:block;
	/* Setting display to block enables advanced styling for links */
}

.drop-box{
	/* The share box */
	width:100px;
	height:110px;
	position:absolute;
	bottom:0;
	right:0;
	border:4px solid #fcfdec;
	background:url(img/drop_box.png) no-repeat;
}

.drop-box.active{
	/* The active style is in effect when there is a pic hovering above the box */
	background-position:bottom left;
}

label, input{
	/* The modal dialog URL field */
	display:block;
	padding:3px;
}

label{
	font-size:10px;
}

fieldset{
	border:0;
	margin-top:10px;
}

#url{
	/* The URL field */
	width:240px;
}


/* General styles for the demo page */

h1{
	/* The title of the page */
	color: #666;
	font-family:Arial, Helvetica, sans-serif;
	font-size:2em;
	font-weight:normal;
}

h2{
	/* The subtitle */
	font-family:Arial,Helvetica,sans-serif;
	font-size:1em;
	color:#666;
	font-weight:normal;
	letter-spacing:1px;
	padding-left:2px;
	text-transform:uppercase;
	white-space:nowrap;
	margin:7px 0 7px;
}

#orig{
	/* The link that is positioned above the title */
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	letter-spacing:1px;
	padding-bottom:15px;
	text-transform:uppercase;
	float:right;
}


#foot{
	/* The link that is positioned above the title */
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	letter-spacing:1px;
	padding-bottom:15px;
	text-transform:uppercase;
	text-align:center;
}


hr{
	/* The horizontal ruler */
	background-color:#666;
	border:medium none;
	color:#666;
	height:1px;
	margin:20px auto 30px;
	width:800px;
}

.clear{
	/* The clearfix hack */
	clear:both;
}

#main{
	/* The main container */
	width: auto;
	background-image:url(img/stripes.png);
	background-repeat:repeat-x repeat-y;
	margin: 0 auto;
	border: 0;
	padding: 0;
}


#content{
	/* The content container */
	width: auto;
	background-image:url(img/pillars.png);
	background-repeat: no-repeat;
	margin:0 30px 0 0;
	padding:30px 0  0 170px;
}


p{
	/* The small type */
	font-family:Arial,Helvetica,sans-serif;
	font-size:.9em;
	color:#555;
	font-weight:normal;
	letter-spacing:1px;
	padding-left:2px;
	text-transform:none;
	white-space:nowrap;
	margin:4px 0 4px;
}

#looky{
	/* The contact links type */
	font-family:Arial,Helvetica,sans-serif;
	font-size:.9em;
	color:#900;
	font-weight:normal;
	letter-spacing:1px;
	padding-left:2px;
	text-transform:uppercase;
	white-space:nowrap;
	margin:4px 0 4px;
}

a img{
	border:none;
}

a, a:visited {
	color:#78a096;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

.tutorial-info{
	text-align:center;
	padding:2px;
	margin-top:2px;
}

/* TOOL TIPS */
a.info{
    position:relative; /*this is the key*/
    z-index:4; background:none;
    text-decoration:none}

a.info:hover{z-index:4; background-color: none;
}

a.info span{display: none}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:0em; left:12px; width:12em;
    border:2px solid #78a096;
	padding: 3px;
	background-color: #fcfdec; 
	color:#666;
	z-index:4;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
    text-align: center;
}