	/* 
 * We must define some layout properties - to set header background and such
 * Do not change these options unless you know EXACTLY what you are doing
 */

/*first we set the content centered in the browser window */
body {
	font-family:Arial, Helvetica, sans-serif;
	/* in order to work with em-units we set what 1 em means - in this case 62.5% of the default (16 px) means 10 px - nice round number
	 * next we can specify all other font-sizes in ems - 12 px wil become 1.2em, 10px - 1 em, etc 
	 */
	font-size: top;
	color:#333333;
	width:1000px;  /*set the site width - not below 750*/
	text-align:center; /* For IE*/
	margin:0 auto; /*For Mozilla & Opera*/
	;
	background: transparent no-repeat url(../VN_Immagini/Fondino.gif);
	background: transparent no-repeat url(../VN_Immagini/Fondino.gif);
	background-color: transparent;
	font-weight: normal;
}

/*next define a wrapped div to place the entire page content. this makes sure content is displayed horizontally centered
 * yet the text stays aligned left
 */
.wrapper {
    width:1000px;

	}

/* page header bar - made up of three sections: 
 * .header - the main container; sets the fill color/pattern, width and height
 * .header_left - left section of the header: a background pic and alignment
 * .header_right - right section of the header: a different background pic and right-alignmnent
*/

.header {
	height:76px;	
    width:100%;
    overflow:hidden;
	background: transparent url(img/header_middle.gif) repeat-x;
}

.header_left {
    float:left;
    text-align:left;
	height:76px;
	background: transparent url(img/header_left.gif) no-repeat;
}   

.header_right {
    float:right;
    text-align:right;
    overflow:hidden;
	vertical-align:top;
	height:74px;
	width:570px;
	background: transparent url(img/header_right.gif) no-repeat right;
}

/* class for td/div where the shop logo is displayed
 * sets color and size for the main logo text and the tagline
*/

.logo {
    margin-top:.5em;
    margin-left:1em;
    font-weight:bold;
    vertical-align:middle;
    font-size:2em;
	color:#FFFFFF;
	}

.logo .tagline {
    font-size:.6em;
    font-weight:bold;
    text-align:left;
    color:#FFFFFF;
    }

/* class for the div where the list of currencies is displayed
 * sets position, padding and such
 */

.currency_selector {
	padding-right:1.5em;
	padding-top:.3em; 
	float:right;
	}

/*the blue bar beneath the header  where the search form is displayed */

.subTitleBar {
	background-color: transparent;
	}

#search_bar {
	margin-top:2px;
	background-image:url(img/search_bar_middle.gif);
    background-color: transparent;
    height:26px;
    text-align:center;
	margin-bottom:10px;
    }
    
#search_bar_left {
    float:left;
    text-align:left;
    vertical-align:top;
    width:25%;
	height:26px;
	background: transparent url(img/search_bar_left.gif) no-repeat;
}        

#search_bar_right {
    float:right;
    text-align:right;
    width:25%;
    overflow:hidden;
	height:26px;
	background: transparent url(img/search_bar_right.gif) no-repeat right;
}

/* page footer with its three composants:
 * .footer - the main container
 * .footer_left_links - container for the links displayed in the left side of the footer
 * .footer_center_text - container for the content displayed in the middle of the footer
 * .footer_right_text - container for the content displayed in the right side of the footer
*/
.footer {
	text-align:left;
	background-color: #FFDEB4;
	height:1.5em;
	clear:both;
	color: black;
	font-size: 10px;
    letter-spacing:.1em;
	}

.footer_left_links {
	display:block;
	float:left;
	padding-left:5px;
	width:33%;
	letter-spacing:.1em;
	font-size: 10px;
}

.footer_center_text {
	display:block;
	text-align:center;
	float:left;
	width:33%;
	font-weight:bold;
	font-size: 10px;
}

.footer_center_text a:link, .footer_center_text a:visited {
	color: #050505;
	font-size: 10px;
}

.footer_right_text {
	float:right;
	text-align:right;
	padding-right:5px;
	width:30%;
	font-size: 10px;
	font-style: normal;
}

/* style for the center column in the layout; since it's a TD we only set some paddings to separate it 
*/
.center_column {
	padding-left:15px;
	padding-right:15px;
	}

.center_column * {
	font-size: 12px; 
	}


/*nugget style definitions:*/

/* The main nugget container is 157px fixed width*/

.nugget {
	background-color:#FFF;
	width:157px;
	margin-bottom:10px;
	font-size: 10px;
}

/*containers for the sections of the nugget
 * each nugget has three sections: top, content and bottom
 * there are 2 types of nugget tops: one generic - if the nugget has no picture,
 * and some for each type of nugget with an icon */

/*generic nugget properties for top, content (body), bottom - with a rounded gradient background image*/

.nugget_top {
	display:block;
	background-image: url(img/top_nugget_background.gif);
	background-repeat:no-repeat;
	color:#FFF;
	height:20px;
	font-family:Verdana;
	font-size: 10px;
	text-align:left;
    font-weight:bold;
	padding-left:7px;
	padding-top:1px;
	}

.nugget_content{
	border-style:solid;
	border-color:#8D8D8D;
	border-width:1px;
	border-top-width:0px;
	border-bottom-width:0px;
	color: #000066;
	width:147px;
    padding:9px 3px 9px 5px;   
	font-size: 10px;
	overflow:hidden;
	font-style: normal;
}
    
.nugget_bottom {
    display:block;
	background-image:url(img/bottom_nugget_background.gif);
	background-repeat:no-repeat;
	height:4px;
    }
    
/*style for the <p> tags inside a nugget */
.nugget_content p{
	padding-left:.5em;
	padding-right:.5em;
	font-size: 10px;
}

/*nugget specific classes - each nugget has an extra class - according to the nugget - and the top, content and bottom styles are overwritten */

/*the login nugget is defined as <div class='nugget login'>
 * we use inheritance to create more specific classes.
 * if you want to use the default styles, leave these classes empty
*/ 

.login .nugget_top{
	display:block;
	background-image: url(img/login_header.gif);
	background-repeat:no-repeat;
	color:#FFF;
	height:20px;
    font-weight:bold;
	padding-left:7px;
	padding-top:1px;
	font-size: 10px;
}

.login .nugget_content {
	background-color: #e9e9e9;
	border-style:solid;
	border-color:#8D8D8D;
	border-width:1px;
	border-bottom-width:0px;
	overflow:hidden;
	padding-left:5px;
	color: #161A20;
	width:147px;    
	}

.login .nugget_bottom {
	background-image:url(img/bottom_login_nugget.gif);
	background-repeat:no-repeat;
	height:4px;
	}

/*************************************************/

/* shopping cart nugget classes 
 * 
 */

.shopping_cart .nugget_top {
	display:block;
	background-image: url(img/shopping_header.gif);
	background-repeat:no-repeat;
	color:#FFF;
	height:20px;
    font-weight:bold;
	padding-left:7px;
	padding-top:1px;    
	}

/****************************************/
/* special offers nugget */
.special_offers .nugget_top {
	display:block;
	background-image: url(img/specialoffer_header.gif);
	background-repeat:no-repeat;
	color:#FFF;
	height:20px;
    font-weight:bold;
	padding-left:7px;
	padding-top:1px;
	}

/**************************/
/**********END LAYOUT SECTION *******************************************/

/* GENERAL STYLES SECTION*/ 

/* classes for the various containers used to arrange elements on page
 * tds, divs, spans
 */

.productAddToCart {
    margin-bottom:0px;
	width:44%;
	float:right;
    display:block;
	font-size:11px;
    }

.productLeftLinks {
	width:55%;
	float:left;
    margin-bottom:0px;
	color: #1f07cd;
	font-size: 11px;
	font-weight: bolder;
}

/*divs that clear floated elements - with or without noticeable height */
.clearFixPlain, .clearfixplain {
	clear:both;
	height:0.1px;
	font-size:0.1px;
	border-style: none;
    }

.spacerClearBoth {
	clear:both;
	height:14px;
    }

/*block body container */
.basicDescriptionContent {
	width:187px;
	height:192px;
	border-top:solid 2.5px #F5F5F5;
	border-bottom:solid 3px #D0D0D0;
    }

/*divs to display main page product details */

/*main container for the right block */
.basicDescriptionRight {
    width:203px;
	height:199px;
    }

/*main container for the left block*/
.basicDescriptionLeft {
    width:203px;
	height:199px;
    }

/*left and right gradient edges for the blocks */
.basicDescriptionLeftEdge {
	width:8px;
	height:199px;
	background:url(img/edge_left.gif) no-repeat;
    }

.basicDescriptionRightEdge {
	width:8px;
	height:199px;
	background: url(img/edge_right.gif) no-repeat;
    }

/*******************END CONTAINER SECTION ********************************/

/*styles for the buttons used throught the shop */
.orangeButton{
    background-image:url(img/button_orange_medium.gif);
    background-repeat:no-repeat;
    background-color:transparent;
    width:63px;
    border-style:none;
	font-size:11px;
	color:#FFF;
    padding:1px;
    cursor:pointer;
	text-align:center;
    }

.blueButton {
	background-image:url(img/button_blue_medium.gif);
	background-repeat:no-repeat;
    background-color:transparent;
    border-style:none;
	width:62px;
	font-size:11px;
	color:#FFF;
    padding:1px;
    cursor:pointer;
    }

.blueButtonSmall {
    background:url(img/button_blue_small_light.gif);
    background-repeat:no-repeat;
    background-color:transparent;
    width:50px;
    border-style:none;
	font-size:11px;
	color:#FFF;
    padding:1px;
    cursor:pointer;
    }

.blueButtonBig {
	background-image:url(img/button_blue_big.gif);
	background-repeat:no-repeat;
    background-color:transparent;
    text-align:center;
    text-decoration:none;
    border-style:none;
	width:78px;
	font-size:11px;
	color:#FFF;
    padding:1px;
    cursor:pointer;
    }
    
/*buttons in the login nugget use a different style, as they no longer have the white background */
.login .nugget_content input.blueButtonBig {
	background-image:url(img/button_blue_big.gif);
	background-repeat:no-repeat;
    background-color:transparent;
    text-align:center;
    text-decoration:none;
    border-style:none;
	width:78px;
	font-size:10px;
	color:#FFF;
    padding:1px;
    cursor:pointer;
    }

.login .nugget_content .blueButton {
	background-image:url(img/button_blue_medium_nowhite.gif);
	background-repeat:no-repeat;
    background-color:transparent;
    text-align:center;
    border-style:none;
	width:65px;
	font-size:10px;
	color:#FFF;
    padding:1px;
    cursor:pointer;
    }
/*****************************************/

/* H1-H4 redefinitions */

h1 {
    font-size:2em;
	color:#FFFFFF;
    font-weight:300;
    }

h2 {
	font-size:1.8em;
    font-weight:100;
    }

h3 {
    font-size:1.2em;
    }

h4 {
    font-size:1.1em;
    font-weight:100;
    }

/*H3 inside the login nugget must be white */
.login .nugget_content h3{
    padding-top:3px;
    padding-bottom:0px;
	color:#FFFFFF;
    }
/*Styles for the links */

/* how the links for the categories inside the nuggets look like */

.nugget a.menuLink:link, .nugget a.menuLink:visited{
	padding-left:.5em;
    padding-bottom:1px;
    padding-top:1px;
    display:block;
    text-decoration:none;
    height:1.5em;
	font-size: 10px;
}

.nugget a.menuLink:hover {
	font-size: 10px;
	text-decoration:underline;
    color: #ff4903;
    }

/*how links look like in general */
a:link, a:visited{ /*regular links and visited links should look the samne */
	text-decoration:none; /*remove the underline */
	color:#0033CC; /*and set the color to blue */
	font-size:10px;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	border-right-style: none;
    }

/*when the mouse hovers over a link, it will display an underline */
a:hover {
    text-decoration:underline;
    }

/*how the shop name link will look like */
.logo a:link, .logo a:visited, .logo a:hover {
	color:#ffffff;
	text-decoration:none;
	font-size: 10px;
    }

/*all links inside the login nugget must be white */
.login .nugget_content a{
	color:#000000;
	}

/*all links in the footer and the currency selector are white */
.header a, .currency_selector a:link, .currency_selector a:visited, .currency_selector a:hover  {
	color:#FFF;
	font-size: 10px;	
	}

/*links with button styles on them */
a.orangeButton:link, a.orangeButton:visited{
	display:block;
    color:#FFF;
    text-decoration:none;
	}

a.blueButtonSmall:hover, a.blueButtonSmall:link, a.blueButtonSmall:visited, a.blueButtonBig:hover, a.blueButtonBig:link, a.blueButtonBig:visited, a.blueButton:hover, a.blueButton:link, a.blueButton:visited {
	display:block;
	color: white;
	text-decoration:none;
	text-align:center;
	}
/*container for the navigation bar */

.productNavigationBar {
    margin-top:.5em;
    text-align:right;
	font-size: 10px;
    }


/*how links inside the navigation bar are spaced */
.productNavigationBar * {
    padding-left:3px;
    }

.productNavigationBar  a:link, .productNavigationBar  a:visited, .productNavigationBar  a:hover {
	font-size: 10px;
    font-weight:bold;
	text-decoration:none;
    }       

/*how the various forms within the site should look and act like */

/*the main search form displayed on the page header blue bar */

/*style for the form container */
.search_form {
	padding-top:4px;
	padding-bottom:2px;
    border-style:none;
    border-width:0px;
    margin:0px;
    }

/*general definition of the input elements inside the search form */
.search_form input {
	border-style:none; /*set the border style to none - this removes the raised effect*/
    border-color:#333;
    border-width:1px;
	color:#000;
    }

/* style for the textfield where keywords are entered*/

.search_form input.searchText {
    width:103px; 
    }

/*style for the submit button - sets a background and foreground color */
.search_form input.startSearch {
    background-image:url(img/button_orange_small.gif);
	background-color:transparent;
    width:48px;
    height:16px;
    color:#FFFFFF;
    margin-right:4px;
    padding-bottom:2px;
    cursor:pointer;
    }

/*Login form styles */
/*main form container */
.loginForm {
	padding-top:10px;
	padding-bottom:2px;
	margin:0px 2px 0px 0px;
	color:#FFF;
	width:147px; /*the form width must be smaller than the nugget that contains it -  */
    }
form.loginForm td.alignedRight{
	text-align:right;
	}
/*all input elements inside the login form */
.loginForm input{
	border-style:none; /*remove the border on elements */
    margin-bottom:5px;
	color:#000; /*and the text color */
	width:70px; /*each input can be 70px wide */
	font-size:10px;
    }

/* the remember me checkbox has some different properties - like the border and margin */
.loginForm input.rememberMe {
	width:auto;
	background-color: #edede3;
    border:0px;
    margin-left:1px;
    margin-bottom:1px;
    padding:0px;
    }

/*the submit button */
.loginForm input.submitButton {
    background:url(img/button_blue_small.gif);
    background-repeat:no-repeat;
    width:50px;
	background-color: #efefef;
	color: #060606;
    margin-top:5px;
    margin-left:5px; margin-right:0px;
    cursor:pointer;
    }


/*forms within the my account and checkout sections */
.myAccountForm table.noBorder td, .myAccountForm table.noBorder th{
	border-style:none;
    padding-left:5px;
    padding-right:5px;
    }

.myAccountForm {
	border-style:none;
	border-width:1px;
	width:70%;
    }

.myAccountForm .noBorder, .noBorder {
    border-style:none;
    }

.myAccountForm .myAccountTable input.bigTextField, .myAccountForm select {
	width: 16em;
	border-width:1px;
	border-style:solid;
	border-color:#CCCCCC;
	height: 1.35em;
	padding-left: 0.3em;
    }

.myAccountForm .myAccountTable textarea.bigTextField {
	width: 16.4em;
	border-width:1px;
	border-style:solid;
	border-color:#046E95;
	padding-left: .3em;    
    overflow:auto;
    }

* html .myAccountForm .myAccountTable textarea.bigTextField {
    width:16em;
    }

.myAccountForm input.orangeButton, .myAccountForm input.spaced {
    margin:.7em;
    }


.myAccountForm input.regular {
    margin:0em;
    vertical-align:middle;
    }

.myAccountForm .noBorder input.orangeButton {
    margin:0p;
    padding:0;
    }
    
body .myAccountForm select {
	padding: 0;
	width: 16.35em;
	margin: 0;
    }

.myAccountForm select option {
	padding: 0;
	margin: 0;
    }

.myAccountForm .myAccountTable input.smallTextField, input.smallTextField, select.smallTextField {
	border-width:1px;
	border-style:solid;
	border-color:#8D8D8D;
    }

.myAccountForm input.singleRowButton {
	margin:10px;
    }

.myAccountForm input.selectRow{
	width: auto;
    }

.myAccountForm .withBorder  .myAccountTable td, .myAccountForm .withBorder  .myAccountTable th{
    border-style:solid;	
	border-color:#046E95;
	border-width:1px 1px 1px 1px;
    }


/*style to be applied when displaying an old price, which is no longer valid*/
.oldPrice {
    color:red;
    text-decoration:line-through;
    font-family:Verdana;
	}
/*styles for the tables within nuggets - used for the shopping cart, wish list, etc. */

.nugget_content table {
	padding-top:3px;
	padding-left:3px;
	padding-right:3px;
    }

.login .nugget_content table {
	padding-left:0px;
	}

/*styles for the tables in product details and my account sections */
    
.myAccountTable {
	text-align:left;
	font-size: 10px;
    }

.myAccountTable .noBorder {
    border-style:none;
    }

.myAccountTable th, .myAccountForm .withBorder .myAccountTable th {
	background-color:#EAEAEA;
	color: #333333;
	text-align:center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
    }

.myAccountTable td label {
	background-color: transparent;
    vertical-align:top;
	display: block;
	padding:.15em .5em;
	font-size: 10px;
    }

.myAccountTable td {
	border-style:solid;
    vertical-align:top; 
	border-color:#CCCCCC;
	border-width:1px 1px 1px 1px;
    }

.myAccountTable tr.bottom {
	background-color:red;
    }

.noBorder .myAccountTable  td label{
	border:solid 1px #046E95;
    height:1.1em;
    padding:.1em .3em;
    }

/* how a form inside the nugget body looks like */

.nugget_content form{
    font-size:1em;
    padding:0px;
    margin:0px;
	}

/***********************************************/

/*how an image inside the block is displayed */
.basicDescriptionContent .productImage {
    text-align:center;
    margin-left:auto;
    margin-right:auto;
    }

/*divs used to display the nuggets buttons - for one or two buttons 
 * after using the two buttons layout, you must add a br with the class = clearFixPlain
*/

.buttonLeft {
	width:auto;
    height:auto;
	float:left;
    padding-bottom:5px;
	font-size: 9px;
}

/*div for the right half */
.buttonRight {
	width:auto;
	float:right;
	text-align:right;
    padding-bottom:5px;
	font-size: 9px;
}


/*MX Kollection inherited styles */
div.KT_operations {
    display:inline;
    }

/*div where the tNG errors are displayed for each field */

.autoLeft {
    width:75px;
    float:left;
    padding:0;
    margin:0;
    overflow:HIDDEN;
	}

.autoRight {
    width:15px;
    text-align:right;
    float:right;
    padding:0;
    margin:0;
    overflow:hidden;
	}

.form_validation_field_error_error_message{
    overflow:hidden;

	}

.nugget_content table td img {
    padding-right:5px;    
	}

tr.bottomBordered td{
    border-bottom:solid 1px silver;
	}
.binding {
    padding:0px;
    margin:0px;
    }

.hint {
    color:white;
    text-align:right;
	}

/*MX Kollection styles */
	.KT_field_error {
		color: #cc0000;
	}
	.KT_field_hint {
		color:#0000cc;
		font-size: 10px;
	}
    
/* The server-side error displaying */
/* topmost error div */
#KT_tngerror {
	padding: 5px 10px 5px 50px;
	margin:5px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	color: #CC0000;
	font-size: 10px;
	border:1px solid red;
	background-color:#FFFFE4;
	background-image:url(img/error.gif);
	background-repeat:no-repeat;
	background-position:left;
	}

/* trace container ( iniitally collapsed), and "Submit this to InterAKT... " area */
#KT_tngdeverror, #KT_tngtrace {
	padding: 5px 10px 5px 5px;
	margin:5px;
	border:1px solid black;
	font-family:Courier, sans-serif;
	font-size: 12px;
	background-color:#FAFAFA;
	}

	/* alignment and borders for the form submit buttons */
	#KT_tngdeverror #KT_needhelp {
		text-align: right;
	}

	#KT_tngdeverror label, #KT_tngtrace label {
		display: block;
		font-family:Verdana, Arial, Helvetica, sans-serif;
		font-weight:bold;
	}

	#KT_tngtrace ul {
		padding-left:10px;
		margin-left:10px;
	}

	#KT_tngtrace_details {
		display: none;
	}

#KT_tngwarning {
	padding: 10px 10px 10px 50px;
	margin:5px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	color: #0000CC;
	font-size: 10px;
	border:1px solid blue;
	background-color:#E4FFFF;
	background-image:url(img/warning.gif) ;
	background-repeat:no-repeat;
	background-position:left;
	}

/* The client-side error displaying */

	/* How the label should change on error */
	.form_validation_field_error_label {
		/* color:#cc0000; */
	}

	/* How the input's container (TD) should change on error */
	.form_validation_field_error_container {
		/* border: 2px solid black; */
	}

	/* How the input textfield should change on error */
	.form_validation_field_error_text {
		/* border:2px solid #cc0000; */
	}

	/* The actial error message style */
	.form_validation_field_error_error_message {
		color:#cc0000;
		font-weight: bold;
		clear:left;
	
	}
	form.form_validation_form_error table {
		xborder: 2px solid red;
	} 
    
    
a:link img, a:visited img, a:hover img {
    border-style:none;
    
	}

.KT_required {
    color:red;
	}

/*overwriting the nextensio KT_Operations style */

div.KT_bottombuttons div.KT_operations {
    text-align:right;
	}
        
.subTitle {
    font-size:1.2em;
	}

.title {
    font-size:1.4em;
	}


* html .myAccountForm div {
    margin-left:.7em;
	}    

.th {
	font-weight:bold;
	}

.nugget_content th, .nugget_content td {
	font-size:10px;
	text-align:left;
	font-weight: bold;
	color: #990000;
	font-family: Arial, Helvetica, sans-serif;
	}

.nugget_content table tr {
    border-bottom:solid 1px silver;
	}
a.catlevel2 {
	padding: 0px 0px 0px 20px;
	}
a.catlevel2_sel{
	padding: 0px 0px 0px 20px;
	text-decoration:none;
	}
.manufacturer .nugget_content .buttonRight {
	margin-right:10px;
	}

.productImage {
    margin-top:0px;
	width:105px;
	float:left;
    height:105px;
    overflow:hidden;
    }

.productLeftLinks a:link,  .productLeftLinks a:visited, .productLeftLinks a:hover{
    font-size: 11px;
color: #1f07cd;
	font-weight: bolder;
}

.fixedTableCell {
	width:147;
	overflow:hidden;
	font-size: 10px;
}
.fixed {
	width:82px; 
	overflow:hidden;
}

/* 
 * Overwrite for default MX Kollection styles 
*/

.KT_tngtable th, .KT_tngtable td.KT_th {
	border: 0 !important;
	background-color: white !important;
	font-weight: normal !important;
	vertical-align: top;
	font-size: 10px;
}

.KT_tngtable thead *>th {
	border:0 !important;
}

/* the plain cells   */
.KT_tngtable td {
	border: 0 !important;
	vertical-align: top; 
	background-color: #FFFFFF !important;
}
.KT_buttons td {
	border-top: 0 !important;
	padding:0 !important;
	background-color: #FFFFFF !important;
	text-align: default !important;
}

	.KT_tngtable input, .KT_tngtable select {
		font-size: 10px!important;

	}

	.KT_tngtable textarea {
		font-size: 14px !important;
	}
	
.button_big, 
.button_small, 
.button_smallest, 
.KT_tngtable tbody tr.KT_buttons input, 
#KT_tngdeverror input, 
#KT_tngtrace input, 
.KT_tngtable th.KT_sorter input, 
.KT_row_filter_submit_button, 
.KT_tnglist .KT_tngtable tbody tr input, 
.KT_tnglist .KT_tngtable #KT_selAll, 
.KT_bottombuttons input, 
.KT_topbuttons input {
	border: 0 !important;
	font-size: 11px !important;
	font-weight: normal !important;
	background-color: transparent !important;
	margin-right: 0 !important;
	padding:0 !important;
}

