/*CSS HANDLER */
#bookmarks {
    background: #202020; /* Old browsers */
    background: -moz-linear-gradient(top,  #333333 0%, #333333 0%, #222222 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333333), color-stop(0%,#333333), color-stop(100%,#222222)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #333333 0%,#333333 0%,#222222 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #333333 0%,#333333 0%,#222222 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #333333 0%,#333333 0%,#222222 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #333333 0%,#333333 0%,#222222 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#222222',GradientType=0 ); /* IE6-9 */    
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
}

#bookmarkscontainer #bookmarks_info {
  line-height: 30px;
  text-align: center;
}

#star {
    float: right;
    line-height: 30px;
    margin-right: -4px;
}

#bookmarkscontainer {
    display: block;
}

#bookmarkscontainer ul li {   
    position: relative;
}

#bookmarkscontainer ul li a.bookmark {

  background-repeat: no-repeat;  
}

#bookmarkscontainer ul li a.deletebookmark {
    color:#555;
    border: medium none;
    display: none;
    height: 25px;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    background: transparent;
}
#bookmarkscontainer ul li a.deletebookmark:hover {
    color: #fff;
}

#bookmarkscontainer.edit ul li a.deletebookmark{
    display: block;
}

#editbookmarks a {    
    display: inline-block;
    font-size: 11px;
    outline: medium none;
    padding: 0;
    text-align: center;
    text-decoration: none;
    width: 50%;
}
.addbookmark {
    background-image: url("../img/bookmarkadd.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
}

.addbookmark.added{
    background-image: url("../img/bookmarkadded.png");
}

