
#toTop {
   	 	width: 34px;
    	height: 34px;
        background: url("/application/images/back-top.png") no-repeat scroll center center rgb(153, 153, 153);
        text-align:center;
        padding:5px;
        position:fixed; /* this is the magic */
        bottom:10px; /* together with this to put the div at the bottom*/
        right:10px;
        cursor:pointer;
        display:none;
        color:#333;
        font-family:verdana;
        font-size:11px;
        border-radius: 4px 4px 4px 4px;
}

/*****************************************/

.openBasketPopUp {
	display:block;
}

.openBasketPopUp:hover {
    display:block;	
}

/* ADDED: Basket popup */

#addToBasketPopUp {
    top: 0; left: 0;
    width: 250px;
    background: #fff;
    position: absolute;
    z-index: 1000;
    display: none;
    border: 3px solid #828282;
    border-radius: 5px;
}

.closeBasketPopUp {
    width: 16px;
    height: 16px;
    text-indent: -9999px;
    background: url("/application/images/close.png") no-repeat;
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
}

.addToBasketPopUpContent {
    padding: 0 5px 5px 5px;
    color:  rgb(109, 110, 113);;
}

.addToBasketPopUpContent a {
	text-decoration:none;
}

.addToBasketPopUpContent a:hover {
	text-decoration:underline;
}


