+/* Rules for the user notes list */
+
+.note_list {
+ tr.creator {
+ background-color: #eeeeee;
+ }
+
+ td {
+ padding: 3px;
+ }
+
+ p {
+ margin-bottom: 0px;
+ }
+}
+
+/* Rules for the notes interface */
+
+.leaflet-popup-content .note {
+ padding-top: $lineheight/2;
+}
+
+.leaflet-popup-content .note {
+ h2 {
+ margin-bottom: $lineheight/2;
+ }
+
+ div {
+ margin-top: $lineheight/2;
+ }
+
+ .permalink {
+ position: absolute;
+ top: $lineheight/4;
+ left: $lineheight/4;
+ min-width: 15px;
+ min-height: 15px;
+ }
+
+ .permalink span {
+ display: none;
+ padding-left: $lineheight;
+ }
+
+ .permalink:hover span {
+ display: block;
+ }
+
+ .warning {
+ display: block;
+ background-color: #ffe0cc;
+ padding: 4px 6px;
+ margin-bottom: $lineheight/2;
+ }
+
+ .comment_body {
+ margin-top: 2px;
+ margin-bottom: 2px;
+
+ p {
+ margin-top: 0px;
+ margin-bottom: 0px;
+ }
+ }
+
+ .comment {
+ width: 100%;
+ height: 100px;
+ }
+
+ .buttons {
+ margin-top: $lineheight/4;
+ text-align: right;
+ }
+}
+
+/*
+ * Rules for the iD editor
+ */
+
+.site-edit-id {
+ #left,
+ #large-title {
+ display: none;
+ }
+
+ #small-title {
+ display: inline-block;
+ width: 185px;
+ height: 30px;
+ font-size: 14px;
+ margin: 0;
+ background-color: #eee;
+ border-bottom: 1px solid #ccc;
+ text-align: center;
+ padding-top: 7px;
+ }
+
+ #content {
+ left: 0;
+ }
+}
+
+.id-embed {
+ width: 100%;
+ height: 100%;
+}
+
+/* Rules for rotating sidebar ads */
+.ad-container {
+ display: block;
+ height: 120px;
+ overflow: hidden;
+ position: relative;
+ border-bottom: 1px solid #ccc;
+}
+
+.ad {
+ height: 100px;
+ border: 0;
+ background: #fff;
+}
+
+/* Rules for dropdown menus */
+
+.dropdown {
+ position: relative;
+}
+
+.dropdown-toggle {
+ *margin-bottom: -3px;
+}
+
+.dropdown-toggle:active,
+.open .dropdown-toggle {
+ outline: 0;
+}
+
+.caret {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ vertical-align: top;
+ border-top: 4px solid #000000;
+ border-right: 4px solid transparent;
+ border-left: 4px solid transparent;
+ content: "";
+}
+
+.dropdown .caret {
+ margin-top: 8px;
+ margin-left: 2px;
+}
+
+.dropdown-menu {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ z-index: 1000;
+ display: none;
+ float: left;
+ min-width: 160px;
+ padding: 5px 0;
+ margin: 0;
+ list-style: none;
+ background-color: #ffffff;
+ border: 1px solid #ccc;
+ *border-right-width: 2px;
+ *border-bottom-width: 2px;
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+ -webkit-background-clip: padding-box;
+ -moz-background-clip: padding;
+ background-clip: padding-box;
+}
+
+.dropdown-menu.pull-right {
+ right: 0;
+ left: auto;
+}
+
+.dropdown-menu .divider {
+ *width: 100%;
+ height: 1px;
+ margin: 9px 1px;
+ *margin: -5px 0 5px;
+ overflow: hidden;
+ background-color: #e5e5e5;
+ border-bottom: 1px solid #ffffff;
+}
+
+.dropdown-menu > li > a {
+ display: block;
+ padding: 3px 10px;
+ clear: both;
+ font-weight: normal;
+ line-height: 20px;
+ color: #333333;
+ white-space: nowrap;
+}
+
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus,
+.dropdown-submenu:hover > a,
+.dropdown-submenu:focus > a {
+ color: #ffffff;
+ text-decoration: none;
+ background-color: #0081c2;
+}
+
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+ color: #ffffff;
+ text-decoration: none;
+ background-color: #0081c2;
+ outline: 0;
+}
+
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+ color: #999999;
+}
+
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+ text-decoration: none;
+ cursor: default;
+ background-color: transparent;
+ background-image: none;
+}
+
+.open {
+ *z-index: 1000;
+}
+
+.open > .dropdown-menu {
+ display: block;
+}
+
+.dropdown-backdrop {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 990;
+}
+
+/* Rules for the "Welcome" page */
+.site-welcome {
+ .center {
+ text-align: center;
+ .sprite {
+ float: none;
+ margin: auto;
+ }
+ }
+
+ .sprite {
+ background-image: image-url("welcome-sprite.png");
+ background-size: 500px 250px;
+ display: block;
+ float: left;
+ }
+
+ .icon-list {
+ padding-bottom: 20px;
+ div {
+ margin-bottom: 10px;
+ p {
+ padding-top: 10px;
+ }