/* The icon of the bookmark button */
.bmb-button-icon
{
    width: 16px;
    height: 16px;
    float: left;
    background: url(Default.ashx?m=default&h=RapptorBookmarker.RapptorBookmarker.Resource.img.add_bookmark.png) no-repeat 0 0;
}

/* When the mouse hovers over the icon, then show the bookmark set icon */
.bmb-button-icon:hover
{
    background: url(Default.ashx?m=default&h=RapptorBookmarker.RapptorBookmarker.Resource.img.bookmark_set.png) no-repeat 0 0;
}

/* The icon of the bookmark button, when the current page is bookmarked */
.bmb-button-icon-bookmarked
{
    background: url(Default.ashx?m=default&h=RapptorBookmarker.RapptorBookmarker.Resource.img.bookmark_set.png) no-repeat 0 0;
} 

/* The container of the bookmark caption */
.bmb-button-caption
{
    float: left;
    padding-left: 4px;
    cursor: pointer;
}

/* The unordered list, which represents the dropdown list */
.bmb-button-caption-dropdown
{
    list-style: none;
	margin: 0px;
	padding: 0px;
	float: left;
	width: 100%;
	z-index: 9999;
}

/* The root item of the dropdown menu */
.bmb-button-caption-dropdown li
{
    float: left;
	margin-right: 10px;
	position: relative;
}

/* The unordered list, which contains the menu items */
.bmb-button-caption-dropdown ul
{
    background: #B6B9CC;
    border: solid 1px #9194A3;
	list-style: none;
	position: absolute;
	/* Hide off-screen when not needed (this is more accessible than display:none;) */
	left: -9999px;
	padding: 5px 0px 5px 5px;
	z-index: 99999;
}

/* The dropdown menu items */
.bmb-button-caption-dropdown ul li
{
    /* Introducing a padding between the li and the a give the illusion spaced items */
	padding-top: 1px;
	float: none;
}

/* The bookmark links in the dropdown menu items */
.bmb-button-caption-dropdown ul a
{
    color: #002290;
    text-decoration: none;
    /* Stop text wrapping and creating multi-line dropdown items */
	white-space: nowrap;
}

/* The delete bookmark button in the dropdown list */
.bmb-button-caption-dropdown-delete-bookmark-button
{
    float: right;
    height: 16px;
    width: 16px;
    background-image: url(Default.ashx?m=default&h=RapptorBookmarker.RapptorBookmarker.Resource.img.delete_bookmark.png);
    cursor: pointer;
}

/* The edit bookmark button in the dropdown list */
.bmb-button-caption-dropdown-edit-bookmark-button
{
    float: right;
    height: 16px;
    width: 16px;
    background-image: url(Default.ashx?m=default&h=RapptorBookmarker.RapptorBookmarker.Resource.img.edit_bookmark.gif);
    cursor: pointer;
}

/* The bookmark links in the dropdown menu items on hover */
.bmb-button-caption-dropdown ul a:hover
{
    color: #006A90;
}
/*
/* Display the dropdown on hover /
.bmb-button-caption-dropdown li:hover ul
{
    /* Bring back on-screen when needed /
	left: 0;
}
*/

/* The descriptive text of the Add New Bookmark dialog */
.bmb-add-new-bookmark-dialog-caption
{
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
}

/* The textbox for the bookmark title in the Add New Bookmark dialog */
.bmb-add-new-bookmark-dialog-textbox
{
    border: 1px solid;
}

/* The textbox for the new bookmark title in the Edit Existing Bookmark dialog */
.bmb-edit-existing-bookmark-dialog-textbox
{
    border: 1px solid;
}

/* The descriptive text of the Edit Existing Bookmark dialog */
.bmb-edit-exisiting-bookmark-dialog-caption
{
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
}

/* The descriptive text in the bookmark dropdown menu, that states, that no bookmarks have been added so far */
.bmb-button-caption-dropdown-no-bookmarks-added
{
    text-align: center;
}