+ top: 5px;
+}
+
+/* General styles for action lists / subnavs / pager navs */
+
+ul.secondary-actions {
+ font-style: normal;
+ margin-bottom: 0;
+ margin-left: 0;
+ &.pager {
+ display: inline-block;
+ margin-right: 60px;
+ }
+ li {
+ display: block;
+ float: left;
+ list-style: none;
+ border-left: 1px solid #ccc;
+ padding-left: $lineheight/4;
+ margin-right: $lineheight/4;
+ &:first-child {
+ border-left: 0;
+ padding-left: 0;
+ }
+ &:last-child {
+ margin-right: 0px;
+ }
+ }
+}
+
+/* Utility for managing inner content areas */
+
+.inner22 { padding: $lineheight;}
+
+.inner12 { padding: $lineheight/2 $lineheight;}
+
+.inner02 { padding: 0 $lineheight;}
+
+/* Utility for general button styles */
+
+input[type="button"],
+input[type="submit"],
+input[type="reset"],
+a.button {
+ cursor: pointer;
+ border: 0;
+ display: block;
+ padding: $lineheight/4;
+ min-width: 120px;
+ margin: 0 0 $lineheight/2 0;
+ color: white;
+ background: $blue;
+ text-align: center;
+ border-radius: 2px;
+ -moz-border-radius: 2px;
+ &:hover {
+ background: darken($blue, $hovercolor);
+ text-decoration: none;
+ }
+ &:last-child {
+ margin-bottom: 0;
+ }
+}
+
+a.button.submit {
+ background-color: #cbeea7;
+ &:hover {
+ background-color: #9ed485;
+ }
+}
+
+.buttons {
+ min-width: 200px;
+
+ input[type="submit"],
+ .button {
+ box-sizing: border-box;
+ display: inline-block;
+ margin-bottom:0;
+ width:50%;
+ min-width: 0;
+ max-width: 150px;
+ margin-left: 2px;
+ margin-right: 2px;
+ }
+ input:first-child,
+ .button:first-child {
+ border-radius:2px 0 0 2px;
+ border-right:1px solid white;
+ margin-left: 0px;
+ }
+ input:last-child,
+ .button:last-child {
+ border-radius:0 2px 2px 0;
+ margin-right: 0px;
+ }