@charset "utf-8";
/* CSS Document */
body {
	text-align: center;
	margin: 0px auto;
	width: 1400px;
	background-image: url(start/stripes.png)
}
.pics { 
	border: 4px solid #3CF;
	border-radius: 15px;
    -moz-border-radius: 15px; /* Firefox 3.6 and earlier */
}
.table_title {
	text-align: center;
	font: bold 20px Arial;
	background-color: #FFF;
	color: #F660AB;
	border: 4px solid #3CF;
	border-radius: 15px;
    -moz-border-radius: 15px; /* Firefox 3.6 and earlier */
	padding: 6px 8px;
}
.table_text {
	text-align: justify;
	background-color: #FFF;
	color: #F660AB;
	border: 4px solid #3CF;
	border-radius: 15px;
    -moz-border-radius: 15px; /* Firefox 3.6 and earlier */
	padding: 6px 8px;
}
#main {
	background-color: #e9e9e9;
	/*border: 1px solid #F660AB;*/
	border-radius: 5px;
    -moz-border-radius: 5px; /* Firefox 3.6 and earlier */
	box-shadow: 0 0 10px 3px #F660AB;
}
ul{
margin:0;
padding:0;
}

li{
display:inline;
list-type:none;
}

a.glidebutton{
display: inline-block;
position: relative;
color: #FF6; /* default color */
background: #3CF; /* default bg color */
text-decoration: none;
font: bold 30px Arial; /* font settings */
letter-spacing: 2px; /* font settings */
overflow: hidden;
height: 50px; /* height of each button */
text-align: center;
border-radius: 5px; /* border radius */
-moz-transition: all 0.3s ease-in-out; /* Enable CSS transition between property changes */
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

a.glidebutton > span:first-child{ /* first span inside button */
position: relative;
display: block;
height: 100%;
padding: 6px; /* padding of button */
-moz-box-sizing: border-box;
box-sizing: border-box;
-moz-transition: all 0.3s ease-in-out; /* Enable CSS transition between property changes */
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

a.glidebutton > span:first-child:after{ /* CSS generated content */
content: attr(data-text); /* Duplicate text of span markup */
display: block;
width: 100%;
height: 100%;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: inherit;
position: absolute;
top:100%;
left:0;
}

a.glidebutton:hover{
color: #3CF; /* color of button on hover */
background: #f660ab; /* bg color of button on hover */
box-shadow: 0 0 8px white inset;
}

a.glidebutton:hover > span:first-child{
-moz-transform: translateY(-100%);
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
}