/*
@@@@@@@@@@@@@@@@@@@@@@
BUTTON
@@@@@@@@@@@@@@@@@@@@@@

	about				button objects and related objects
	
	syntax

*/

	/*///////////////////////////////////////////////////////////////////////////////////////////////////////////
	button
	///////////////////////////////////////////////////////////////////////////////////////////////////////////*/
	
		.button{display:inline-block; padding:2px 5px 2px 5px; position:relative; color:white; border:0px; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; }
		
		/*+ primary
		..........................................................................*/

			.button.primary{color:white; font-size:11px; border:1px solid #d17c34; background: rgb(249,179,97);background: -moz-linear-gradient(top, rgba(249,179,97,1) 0%, rgba(221,119,0,1) 44%, rgba(246,147,0,1) 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,179,97,1)), color-stop(44%,rgba(221,119,0,1)), color-stop(100%,rgba(246,147,0,1)));background: -webkit-linear-gradient(top, rgba(249,179,97,1) 0%,rgba(221,119,0,1) 44%,rgba(246,147,0,1) 100%);background: -o-linear-gradient(top, rgba(249,179,97,1) 0%,rgba(221,119,0,1) 44%,rgba(246,147,0,1) 100%);background: -ms-linear-gradient(top, rgba(249,179,97,1) 0%,rgba(221,119,0,1) 44%,rgba(246,147,0,1) 100%);background: linear-gradient(to bottom, rgba(249,179,97,1) 0%,rgba(221,119,0,1) 44%,rgba(246,147,0,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9b361', endColorstr='#f69300',GradientType=0 );}
			.button.primary i{}
			
			.button.primary:hover{}
			.button.primary:active, .button.primary:focus{}
			
	
		/*+ secondary
		..........................................................................*/

			.button.secondary{}
			.button.secondary i{}
			
			.button.secondary:hover{}
			.button.secondary:active, .button.secondary:focus{}

	/*///////////////////////////////////////////////////////////////////////////////////////////////////////////
	link
	///////////////////////////////////////////////////////////////////////////////////////////////////////////*/
	
		.link{color:#978a80; font-size:13px; font-style:italic;  border-bottom:1px solid #978a80;}
		.link.cRange{color:#9f498f; border-color:#9f498f;}
		.link.cMark{color:#f39000; border-color:#f39000;}
		.link.cNote{color:#b6d24b; border-color:#b6d24b;}



