﻿/**
 * style agile-custom.css
 *
 * appliqué de façon personnalisée au module sur les pages
 * et en altérant le style principale du site
 */


/**
 * style fieldset css
 */
.fieldset-custom {
	background-color: white;
	width: 100%;
	margin: 0 auto 15px auto;
	padding: 10px;
	border: 2px solid navy;

	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	behavior: url(border-radius.htc);

	background-image: -moz-linear-gradient(top, #ffffff, #f4f4f4);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f4f4f4));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#f4f4f4);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#f4f4f4)";
}

.fieldset-custom legend, .fieldset-custom legend a {
	color: navy;
	font-weight: bold;
}

.fieldset-custom #edit-submit {
    color: white;
    border-radius: 5px;
	padding: .5em 1em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    background: black;
}
.fieldset-custom #edit-submit:hover {
    color: white;
    background: #333;
	filter:alpha(opacity=90);
	background-image:-webkit-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
	background-image:linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
	text-decoration: none;
}
