@charset "UTF-8";
/* CSS Document */



.link_div {
	width:100%;
	text-align:center;
}

.link_div a, .link_div a:link, .link_div a:visited, .link_div a:hover, .link_div a:active, {
	text-decoration: none;
	font-size: 24px;
	font-weight: bold;
	background-color: #0033FF;
	background-position: center;
	text-align: center;
	border:1px solid #777;
    padding: 4px 10px;
    color: #fff;
    cursor: pointer;
    background: #428ec9;
    border-radius: 5px;
	width: 50%;
	     
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#99c9e5),
        to(#364DFF)
        );
    -webkit-border-radius: 5px;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #99c9e5,
        #364DFF
        );
    -moz-border-radius: 5px;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ff99c9e5,endColorstr=#ff364DFF);
    zoom: 1;
}

