@charset "utf-8";
/* CSS Document */
body {
	text-align: center;
	margin: 0px auto;
	width: 1400px;
	background-image: url(start/stripes.png)
}
#main {
	overflow: auto;
}
.title {
	height: 50px;
	color: #000;
	font-family: "Arial Black", Gadget, sans-serif;
	font-weight: bold;
	font-size: 40px;
	text-align: center;
}
.pics {
	border-radius: 5px;
    -moz-border-radius: 5px; /* Firefox 3.6 and earlier */
}
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%);
}
#left_column {
	float: left;
	width: 950px;
	height:auto;
	background-color: #e9e9e9;
	border: 2px solid #3CF; 
    border-radius: 15px;
    -moz-border-radius: 15px; /* Firefox 3.6 and earlier */
	text-align: center;
}
#right_column{
	float: right;
	width: 400px;
	height:auto;
	background-color: #e9e9e9;
	border: 2px solid #3CF; 
    border-radius: 15px;
    -moz-border-radius: 15px; /* Firefox 3.6 and earlier */
	text-align: center;
}
#right_column .headerbar{
	font: bold 15px Verdana;
	color: #000;
	/*background: #3CF url(links/girlicon.png) no-repeat 8px 2px; last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	padding: 7px 0 7px 0px; /*31px is left indentation of header text*/
}

#right_column ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
	margin-left: 80px;
	margin-right: 80px;
	text-align: left;
}

#right_column ul li{
	padding-bottom: 2px; /*bottom spacing between menu items*/
}

#right_column ul li a{
	font: normal 16px Arial;
	color: #f660ab;
	background: #E9E9E9;
	display: block;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 8px; /*link text is indented 8px*/
	text-decoration: none;
}

#right_column ul li a:visited{
	color: #f660ab;
}

#right_column ul li a:hover{ /*hover state CSS*/
	color: #3CF;
	text-decoration: underline;
}
.table_main {
	background-color: #e9e9e9;
	border: 2px solid #3CF; 
    border-radius: 15px;
    -moz-border-radius: 15px; /* Firefox 3.6 and earlier */
	text-align: center;
}