/*
Buttons

Colors are based off regular links.
These button styles must follow normal link styles.
*/

.buttons a, .buttons button{
    /*
    display:block;
	float:left;
	*/
    margin:0 0 0 0;
    background-color:#f5f5f5;
    border: none;
    /*
	border:1px solid #dedede;
    border-top:1px solid #eee;
    border-left:1px solid #eee;    
	*/
	font-size: 15px;
    line-height:22px;
    text-decoration:none;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
    padding: 6px 10px 6px 7px;  /* for Links */
	
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
  	border-radius: 2px;
}
.buttons button{
    /*
	width:auto;
	*/
    overflow:visible;
    padding:4px 15px 3px 12px; /* IE6 */
}
.buttons button[type]{
    padding:5px 15px 5px 12px; /* Firefox */
    line-height:22px; /* Safari */
}
*:first-child+html button[type]{
    padding:4px 15px 3px 12px; /* IE7 */
}
.buttons button img, .buttons a img{
    margin:0 3px -3px 0 !important;
    padding:0;
    border:none;
    height:16px;
}

/* Primary */
.buttons a.primary, .buttons button.primary{
    background-color:#345c64;
	background: url('../images/buttons/buttonBkgdGradientPrimaryUp.png') repeat-x;
    color:#ffffff;
	text-decoration: none;
}
button.primary, .buttons a.primary{
    color:#ffffff;
	text-decoration: none;
}
.buttons a.primary:hover, button.primary:hover{
    background-color:#f98900;
	background: url('../images/buttons/buttonBkgdGradientPrimaryOver.png') repeat-x;
    border:none;
    color:#ffffff;
	text-decoration: none;
}
.buttons a.primary:active, .buttons a.primary:visited{
    background-color:#f98900;
	background: url('../images/buttons/buttonBkgdGradientPrimaryOver.png') repeat-x;
    border:none;
    color:#ffffff;
	text-decoration: none;
}
/* Secondary */
.buttons a.secondary, .buttons button.secondary{
    background-color:#f98900;
	background: url('../images/buttons/buttonBkgdGradientSecondaryUp.png') repeat-x;
    color:#ffffff;
	text-decoration: none;
}
button.secondary, .buttons a.secondary{
    color:#ffffff;
	text-decoration: none;
}
.buttons a.secondary:hover, button.secondary:hover{
    background-color:#345c64;
	background: url('../images/buttons/buttonBkgdGradientSecondaryOver.png') repeat-x;
    border:none;
    color:#ffffff;
	text-decoration: none;
}
.buttons a.secondary:active, .buttons a.secondary:visited{
    background-color:#345c64;
	background: url('../images/buttons/buttonBkgdGradientSecondaryOver.png') repeat-x;
    border:none;
    color:#ffffff;
	text-decoration: none;
}

/* Notice */
/*
Used for the confirmation forms.  E.g. when destroying an object.
*/
.buttons a.notice, .buttons button.notice{
    background-color:#345c64;
	background: url('../images/buttons/buttonBkgdGradientNoticeUp.png') repeat-x;
    color:#ffffff;
	text-decoration: none;
}
button.notice, .buttons a.notice{
    color:#ffffff;
	text-decoration: none;
}
.buttons a.notice:hover, button.notice:hover{
    background-color:#f98900;
	background: url('../images/buttons/buttonBkgdGradientNoticeOver.png') repeat-x;
    border:none;
    color:#ffffff;
	text-decoration: none;
}
.buttons a.notice:active, .buttons a.notice:visited{
    background-color:#f98900;
	background: url('../images/buttons/buttonBkgdGradientNoticeOver.png') repeat-x;
    border:none;
    color:#ffffff;
	text-decoration: none;
}


/* Large Buttons */
.buttons button.large, .buttons a.large{
	font-size: 18px;
    line-height:26px;
    padding:11px 15px 11px 12px;  /* for Links */
}
/* Small Buttons */
.buttons button.small, .buttons a.small {
	font-size: 11px;
    line-height:16px;
	padding: 3px 6px 3px 5px;  /* for Links */
}
.buttons a.small {
	padding: 4px 6px 4px 5px;  /* for Links */
}

/* Standard */
/*
button:hover, .buttons a:hover{
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
*/
.buttons a:active{
    background-color:#6299c5;
    border:1px solid #6299c5;
    color:#ffffff;
}
/* Positive */
button.positive, .buttons a.positive{
    color:#529214;
}
.buttons a.positive:hover, button.positive:hover{
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}
.buttons a.positive:active{
    background-color:#529214;
    border:1px solid #529214;
    color:#ffffff;
}
/* Negative */
.buttons a.negative, button.negative{
    color:#d12f19;
}
.buttons a.negative:hover, button.negative:hover{
    background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
}
.buttons a.negative:active{
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#ffffff;
}



