From 79308063351e72e62c3f95ea5bb4121d1c754278 Mon Sep 17 00:00:00 2001 From: Simon Busborg Date: Wed, 24 Jun 2015 10:16:14 +0200 Subject: [PATCH] Fixed equal height on forum frontpage --- .gitignore | 1 + OurUmbraco.Client/build/forum-thread.html | 5 +- OurUmbraco.Client/build/index.html | 216 +++-- .../src/scss/elements/_forum-thread.scss | 20 +- .../src/scss/elements/_markdown-syntax.scss | 7 +- .../src/scss/sections/_forum.scss | 81 +- OurUmbraco.Site/Assets/css/style.min.css | 2 +- .../MacroPartials/Forum/LatestActivity.cshtml | 35 +- .../usercontrols/Deli/Package/Editor.ascx | 30 +- .../Deli/Package/Steps/Complete.ascx | 38 +- .../Deli/Package/Steps/Details.ascx | 348 +++---- .../Deli/Package/Steps/Files.ascx | 478 +++++----- .../Deli/Package/Steps/Licenses.ascx | 272 +++--- .../Deli/Package/Steps/Screenshots.ascx | 296 +++--- .../usercontrols/Deli/Profile/MyProjects.ascx | 282 +++--- .../usercontrols/Deli/ProjectView.ascx | 858 +++++++++--------- 16 files changed, 1522 insertions(+), 1447 deletions(-) diff --git a/.gitignore b/.gitignore index 68683d54..b65cc1cd 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,4 @@ OurUmbraco.Site/usercontrols/Deli/ OurUmbraco.Site/App_Data/mail/ OurUmbraco.Client/build/assets/ OurUmbraco.Client/node_modules/ +npm-debug.log diff --git a/OurUmbraco.Client/build/forum-thread.html b/OurUmbraco.Client/build/forum-thread.html index c34d7e47..e6e823c4 100644 --- a/OurUmbraco.Client/build/forum-thread.html +++ b/OurUmbraco.Client/build/forum-thread.html @@ -459,8 +459,7 @@

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse + quis nostrud exercitation ullamco laboris nisi ut /bin/Microsoft.Web.Helpers.dll aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

@@ -743,7 +742,7 @@ namespace TestProject.Controllers

Hi Bjarne

-

When you generate the gift card using the GiftCardService.Instance.Generate it is possible to assign an order id. Buy having this you will be able to load the order and look for the info here.

+

When you generate the gift card using the GiftCardService.Instance.Generate it is possible to assign an order id. /bin/Microsoft.Web.Helpers.dll Buy having this you will be able to load the order and look for the info here.

diff --git a/OurUmbraco.Client/build/index.html b/OurUmbraco.Client/build/index.html index 8ca818a4..ae6a3cf7 100644 --- a/OurUmbraco.Client/build/index.html +++ b/OurUmbraco.Client/build/index.html @@ -94,7 +94,7 @@
-
Frontend
+
Frontend
@@ -110,7 +110,7 @@
-
Frontend
+
Frontend
@@ -126,7 +126,7 @@
-
Frontend
+
Frontend
@@ -353,122 +353,121 @@
+ +

Forum Activity

- +

+ Recent activity in the forums, where people are helping each other with current problems. +

-
+ + -
+
- - Activity in threads you participated in - - - @@ -865,5 +864,28 @@ classOnScroll('header', 'sticky', 10); + + \ No newline at end of file diff --git a/OurUmbraco.Client/src/scss/elements/_forum-thread.scss b/OurUmbraco.Client/src/scss/elements/_forum-thread.scss index e9614679..8f5fc9a4 100644 --- a/OurUmbraco.Client/src/scss/elements/_forum-thread.scss +++ b/OurUmbraco.Client/src/scss/elements/_forum-thread.scss @@ -57,16 +57,30 @@ .actions { border-top: none; } + .body { a { color: #000; word-wrap:break-word; text-decoration: underline; + &:hover { text-decoration: none; } } } + + .markdown-syntax { + code, tt { + margin: 0 2px; + padding: 1px 5px; + white-space: pre-wrap; + border: 1px solid rgba($color-our, .66); + background-color: rgba($color-our, .44); + border-radius: 3px; + font-size: .9rem; + } + } } @@ -236,12 +250,12 @@ margin-top: 15px; } - a { - color: darken($color-our, 20%); + a { + text-decoration: underline; word-wrap:break-word; &:hover { - text-decoration: underline; + text-decoration: none; } } } diff --git a/OurUmbraco.Client/src/scss/elements/_markdown-syntax.scss b/OurUmbraco.Client/src/scss/elements/_markdown-syntax.scss index 09f494a3..46a07f4d 100644 --- a/OurUmbraco.Client/src/scss/elements/_markdown-syntax.scss +++ b/OurUmbraco.Client/src/scss/elements/_markdown-syntax.scss @@ -438,9 +438,10 @@ margin: 0 2px; padding: 1px 5px; white-space: pre-wrap; - border: 1px solid $color-text; - background-color: rgba(255, 255, 255, 0); + border: 1px solid rgba($color-space, .44); + background-color: #fff; border-radius: 3px; + font-size: .9rem; } pre { @@ -449,7 +450,7 @@ font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; background-color: $color-markdown-bg; color: white; - font-size: 0.9rem; + font-size: .9rem; line-height: 1.4em; background-clip: padding-box; padding: 20px 30px; diff --git a/OurUmbraco.Client/src/scss/sections/_forum.scss b/OurUmbraco.Client/src/scss/sections/_forum.scss index 042b879a..e109aa4a 100644 --- a/OurUmbraco.Client/src/scss/sections/_forum.scss +++ b/OurUmbraco.Client/src/scss/sections/_forum.scss @@ -12,7 +12,7 @@ section.forum { position: relative; z-index: 30; - margin-bottom: 3.5rem; // Remove me when text is ready under this + //margin-bottom: 3.5rem; // Remove me when text is ready under this @media (min-width: $md) { font-size: 2.4rem; @@ -35,20 +35,52 @@ section.forum { } } - .col-md-6 { - margin-bottom: 40px; - - @media (min-width: $md) { - margin-bottom: 0; - } + .flex { + display: flex; + flex-flow: row wrap; + justify-content: space-between; } - .goto-forum { - text-align: center; - margin-top: 60px; - } .forum-thread { + flex: 0 0 100%; + display: flex; + + @media (min-width: $md) { + flex: 0 0 49%; + } + + + .avatar { + flex: 0 0 23%; + margin-right: 2%; + + + @media (min-width: $md) { + flex: 0 0 15%; + } + + img { + width: 100%; + max-width: 112px; + height: auto; + } + } + + + + .meta { + display: flex; + flex-direction: column; + flex: 1 0 75%; + + @media (min-width: $md) { + flex: 1 0 83%; + } + + } + + .category { margin: .5rem 0 0; @@ -57,6 +89,14 @@ section.forum { font-size: .75rem; } } + + } + + + + .goto-forum { + text-align: center; + margin-top: 60px; } .button { @@ -65,6 +105,8 @@ section.forum { } } + + small { font-size: .9rem; color: darken($color-space, 20%); @@ -76,21 +118,19 @@ section.forum { } } - .forum-thread, .person-activity { background: #fff; padding: 15px; margin-bottom: 30px; - display: table; - width: 100%; border: 1px solid darken(#f6f6f6, 5%); transition: box-shadow .2s; - text-decoration: none; + text-decoration: none; display: flex; - align-items: center; + align-items: center; + &:hover { - @extend .BoxShadow; + @include box_shadow(2); } .row { @@ -102,8 +142,9 @@ section.forum { width: 100%; max-width: 112px; height: auto; + @media (min-width: $md) { - max-width: 58px; + width: 58px; } &.aura { @@ -144,10 +185,6 @@ section.forum { color: $color-space; } - &:last-child { - margin-bottom: 0; - } - small { font-size: .8rem; } diff --git a/OurUmbraco.Site/Assets/css/style.min.css b/OurUmbraco.Site/Assets/css/style.min.css index 124eda24..5824c4af 100644 --- a/OurUmbraco.Site/Assets/css/style.min.css +++ b/OurUmbraco.Site/Assets/css/style.min.css @@ -1 +1 @@ -a,body{margin:0}a,hr{padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section{display:block}caption,th{text-align:left}#registrationForm input,body{font-family:Asap,sans-serif}.dataTable,table{border-collapse:collapse}abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;outline:0;border:0;background:0 0;vertical-align:baseline;font-size:100%}ins,mark{background-color:#ff9;color:#000}body{line-height:1}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{background:0 0;vertical-align:baseline;font-size:100%}ins{text-decoration:none}mark{font-weight:700;font-style:italic}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-spacing:0;background-color:transparent}hr{margin:1em 0;height:1px;border:0;border-top:1px solid #ccc}input,select{vertical-align:middle}*,:after,:before{box-sizing:border-box}h1,h2,h3,h4,h5,h6{font-weight:100}.container,.page,.subpage{max-width:1200px;margin:0 auto;padding:0 20px}.row{margin:20px -15px}.row:after,.row:before{content:" ";display:table}.row:after{clear:both}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}caption{padding-top:8px;padding-bottom:8px;color:#777}.login h2,.text-center{text-align:center}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.span,.user,body{position:relative}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs,td.visible-lg,td.visible-md,td.visible-sm,td.visible-xs,th.visible-lg,th.visible-md,th.visible-sm,th.visible-xs,tr.visible-lg,tr.visible-md,tr.visible-sm,tr.visible-xs{display:none!important}.hidden-xs{display:block!important}table.hidden-xs{display:table}tr.hidden-xs{display:table-row!important}td.hidden-xs,th.hidden-xs{display:table-cell!important}.hidden-sm{display:block!important}table.hidden-sm{display:table}tr.hidden-sm{display:table-row!important}td.hidden-sm,th.hidden-sm{display:table-cell!important}.hidden-md{display:block!important}table.hidden-md{display:table}tr.hidden-md{display:table-row!important}td.hidden-md,th.hidden-md{display:table-cell!important}.hidden-lg{display:block!important}table.hidden-lg{display:table}tr.hidden-lg{display:table-row!important}td.hidden-lg,th.hidden-lg{display:table-cell!important}.visible-print,td.visible-print,th.visible-print,tr.visible-print{display:none!important}.BoxShadow,.comments .comment .photo:hover img:hover,.forum-thread:hover,.leaderboard .user-profile:hover,.markdown-editor .draft.show:hover,.people .user-profile:hover,.person-activity:hover,header .search input[type=search]:active,header .search input[type=search]:focus,header .search input[type=search]:hover,header .user img:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.docs-search-listing,.projects-default-listing,.table.table-striped.topic-list{opacity:1;-webkit-transition:opacity 50ms cubic-bezier(.7,0,.3,1);transition:opacity 50ms cubic-bezier(.7,0,.3,1)}.docs-search-listing.fadeResultOut,.projects-default-listing.fadeResultOut,.table.table-striped.topic-list.fadeResultOut{opacity:0}.fadeInUp,.steps .step{-webkit-animation-name:fadeInUp;animation-name:fadeInUp;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.newInAnimation{-webkit-animation-name:newIn;animation-name:newIn;animation-duration:1.2s;-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;-webkit-animation-timing-function:cubic-bezier(.7,0,.3,1);animation-timing-function:cubic-bezier(.7,0,.3,1)}.fadeOut,.newInAnimation{-webkit-animation-duration:1.2s}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut;animation-duration:1.2s;animation-iteration-count:1;-webkit-animation-fill-mode:forward;animation-fill-mode:forward;animation-timing-function:cubic-bezier(.7,0,.3,1);display:block}.user-logged-in .search-text p,.user-logged-in section.forum:before{display:none}.fadeOut,.searchLoading{-webkit-animation-timing-function:cubic-bezier(.7,0,.3,1);-webkit-animation-iteration-count:1}.searchLoading{-webkit-animation-name:searchLoading;animation-name:searchLoading;-webkit-animation-duration:2s;animation-duration:2s;animation-iteration-count:1;animation-timing-function:cubic-bezier(.7,0,.3,1)}body,html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:none;overflow-x:hidden;min-height:100%}body{font-size:16px;width:100%}a,a:active,a:visited{color:inherit}li,p{line-height:1.3;font-size:1rem;font-weight:400}section{padding:20px 0}.unread{border-left:3px solid #a3db78}.user-logged-in .search-all .search-all-form{margin-top:0}.user-logged-in .search-text{padding:2.2em 0 1rem!important}.user-logged-in section.forum{padding:30px 0;min-height:0}.search-all{background:#a3db78}.search-all .search-text{padding:1rem 0 3rem}.search-all .search-text strong{font-size:1.2rem;margin:0 0 .8rem;display:block;color:#fff}.search-all .search-text p{color:#fff}.search-all input{-webkit-appearance:none;border-radius:0}.loader-placeholder{margin:30px auto;width:100%}.loader-placeholder .span{margin:0 auto}.login h2{margin-bottom:.8rem;font-size:1.5rem;color:rgba(0,0,0,.8)}.login p{font-size:.95rem;color:#000}.login p a{text-decoration:underline!important}.login p a:hover{text-decoration:none}#registrationForm{padding:0}#registrationForm fieldset{max-width:640px}#registrationForm fieldset p{display:block;margin-left:0}#registrationForm label{text-align:left;font-size:.85rem}#registrationForm input{margin-bottom:5px;display:inline-block}[class*=" our-icon-"]:before,[class^=our-icon-]:before,[data-icon]:before{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1;font-family:our-umbraco!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important}#registrationForm input[type=password],#registrationForm input[type=text]{width:100%;padding:10px 20px 10px 8px;font-size:1rem;border:1px solid #e1e1e1;border-radius:5px}#posting,.span{border-radius:3px}#registrationForm input[type=submit]{margin:1rem auto;padding:15px 45px!important;font-size:1rem!important}#registrationForm p{display:inline-block;font-size:.9rem}#registrationForm p a:hover{text-decoration:none!important}@font-face{font-family:our-umbraco;src:url(fonts/our-icon/our-umbraco.eot);src:url(fonts/our-icon/our-umbraco.eot?#iefix) format("embedded-opentype"),url(fonts/our-icon/our-umbraco.woff) format("woff"),url(fonts/our-icon/our-umbraco.ttf) format("truetype"),url(fonts/our-icon/our-umbraco.svg#our-umbraco) format("svg");font-weight:400;font-style:normal}.markdown-editor .wmd-button-row #wmd-bold-button span:before,.our-icon-bold:before{content:"a"}.markdown-editor .wmd-button-row #wmd-code-button span:before,.our-icon-code:before{content:"b"}.markdown-editor .wmd-button-row #wmd-heading-button span:before,.our-icon-header:before{content:"c"}.markdown-editor .wmd-button-row #wmd-hr-button span:before,.our-icon-hr:before{content:"d"}.markdown-editor .wmd-button-row #wmd-link-button span:before,.our-icon-hyperlink:before{content:"e"}.markdown-editor .wmd-button-row #wmd-italic-button span:before,.our-icon-italic:before{content:"f"}.markdown-editor .wmd-button-row #wmd-olist-button span:before,.our-icon-ol:before{content:"g"}.markdown-editor .wmd-button-row #wmd-image-button span:before,.our-icon-picture:before{content:"h"}.markdown-editor .wmd-button-row #wmd-quote-button span:before,.our-icon-quote:before{content:"i"}.markdown-editor .wmd-button-row #wmd-redo-button span:before,.our-icon-redo:before{content:"j"}.markdown-editor .wmd-button-row #wmd-ulist-button span:before,.our-icon-ul:before{content:"k"}.markdown-editor .wmd-button-row #wmd-undo-button span:before,.our-icon-undo:before{content:"l"}@font-face{font-family:icomoon;src:url(fonts/icomoon/icomoon.eot);src:url(fonts/icomoon/icomoon.eot?#iefix) format("embedded-opentype"),url(fonts/icomoon/icomoon.woff) format("woff"),url(fonts/icomoon/icomoon.ttf) format("truetype"),url(fonts/icomoon/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}[data-icon]:before{content:attr(data-icon)}.icon-Activity,.icon-Add,.icon-Adressbook,.icon-Alarm-clock,.icon-Alert,.icon-Alert-alt,.icon-Alt,.icon-Anchor,.icon-App,.icon-Application-Error,.icon-Application-window,.icon-Application-window-alt,.icon-Arrivals,.icon-Arrow-down,.icon-Arrow-left,.icon-Arrow-right,.icon-Arrow-up,.icon-Art-easel,.icon-Article,.icon-Attachment,.icon-Auction-hammer,.icon-Autofill,.icon-Award,.icon-Baby-stroller,.icon-Backspace,.icon-Badge-add,.icon-Badge-count,.icon-Badge-remove,.icon-Badge-restricted,.icon-Ball,.icon-Band-aid,.icon-Bar-chart,.icon-Barcode,.icon-Bars,.icon-Battery-full,.icon-Battery-low,.icon-Beer-glass,.icon-Bell,.icon-Bell-off,.icon-Bill,.icon-Bill-dollar,.icon-Bill-euro,.icon-Bill-pound,.icon-Bill-yen,.icon-Billboard,.icon-Bills,.icon-Bills-dollar,.icon-Bills-euro,.icon-Bills-pound,.icon-Bills-yen,.icon-Binarycode,.icon-Binoculars,.icon-Bird,.icon-Birthday-cake,.icon-Block,.icon-Blueprint,.icon-Bluetooth,.icon-Boat-shipping,.icon-Bomb,.icon-Bones,.icon-Book,.icon-Book-alt,.icon-Book-alt-2,.icon-Bookmark,.icon-Books,.icon-Box,.icon-Box-alt,.icon-Box-open,.icon-Brackets,.icon-Brick,.icon-Briefcase,.icon-Browser-window,.icon-Brush,.icon-Brush-alt,.icon-Brush-alt-2,.icon-Bug,.icon-Bulleted-list,.icon-Burn,.icon-Bus,.icon-Calculator,.icon-Calendar,.icon-Calendar-alt,.icon-Camcorder,.icon-Camera-roll,.icon-Candy,.icon-Caps-lock,.icon-Car,.icon-Cash-register,.icon-Categories,.icon-Certificate,.icon-Chart,.icon-Chart-curve,.icon-Chat,.icon-Chat-active,.icon-Check,.icon-Checkbox,.icon-Checkbox-dotted,.icon-Checkbox-dotted-active,.icon-Checkbox-empty,.icon-Chess,.icon-Chip,.icon-Chip-alt,.icon-Cinema,.icon-Circle-dotted,.icon-Circle-dotted-active,.icon-Circuits,.icon-Circus,.icon-Client,.icon-Clothes-hanger,.icon-Cloud,.icon-Cloud-drive,.icon-Cloud-upload,.icon-Cloudy,.icon-Clubs,.icon-Cocktail,.icon-Code,.icon-Coffee,.icon-Coin,.icon-Coin-dollar,.icon-Coin-euro,.icon-Coin-pound,.icon-Coin-yen,.icon-Coins,.icon-Coins-alt,.icon-Coins-dollar,.icon-Coins-dollar-alt,.icon-Coins-euro,.icon-Coins-euro-alt,.icon-Coins-pound,.icon-Coins-pound-alt,.icon-Coins-yen,.icon-Coins-yen-alt,.icon-Color-bucket,.icon-Colorpicker,.icon-Columns,.icon-Comb,.icon-Combination-lock,.icon-Combination-lock-open,.icon-Command,.icon-Company,.icon-Compress,.icon-Connection,.icon-Console,.icon-Contrast,.icon-Conversation,.icon-Conversation-alt,.icon-Coverflow,.icon-Credit-card,.icon-Credit-card-alt,.icon-Crop,.icon-Crosshair,.icon-Crown,.icon-Crown-alt,.icon-Cupcake,.icon-Curve,.icon-Cut,.icon-Dashboard,.icon-Defrag,.icon-Delete,.icon-Delete-key,.icon-Departure,.icon-Desk,.icon-Desktop,.icon-Diagnostics,.icon-Diagonal-arrow,.icon-Diagonal-arrow-alt,.icon-Diamond,.icon-Diamonds,.icon-Dice,.icon-Diploma,.icon-Diploma-alt,.icon-Directions,.icon-Directions-alt,.icon-Disc,.icon-Disk-image,.icon-Display,.icon-Dna,.icon-Dock-connector,.icon-Document,.icon-Document-dashed-line,.icon-Documents,.icon-Dollar-bag,.icon-Donate,.icon-Door-open,.icon-Door-open-alt,.icon-Download,.icon-Download-alt,.icon-Drop,.icon-Eco,.icon-Economy,.icon-Edit,.icon-Eject,.icon-Employee,.icon-Energy-saving-bulb,.icon-Enter,.icon-Equalizer,.icon-Escape,.icon-Ethernet,.icon-Euro-bag,.icon-Exit-fullscreen,.icon-Eye,.icon-FIlter,.icon-Facebook-like,.icon-Factory,.icon-Favorite,.icon-Female-symbol,.icon-File-cabinet,.icon-Files,.icon-Filter-arrows,.icon-Fingerprint,.icon-Fire,.icon-Firewall,.icon-Firewire,.icon-Flag,.icon-Flag-alt,.icon-Flash,.icon-Flashlight,.icon-Flowerpot,.icon-Folder,.icon-Folder-open,.icon-Folder-outline,.icon-Folders,.icon-Font,.icon-Food,.icon-Footprints,.icon-Forking,.icon-Frame,.icon-Frame-alt,.icon-Fullscreen,.icon-Fullscreen-alt,.icon-Game,.icon-Geometry,.icon-Gift,.icon-Glasses,.icon-Globe,.icon-Globe-Asia,.icon-Globe-Europe---Africa,.icon-Globe-alt,.icon-Globe-inverted-america,.icon-Globe-inverted-asia,.icon-Globe-inverted-europe-africa,.icon-Gps,.icon-Graduate,.icon-Grid,.icon-Hammer,.icon-Hand-active,.icon-Hand-active-alt,.icon-Hand-pointer,.icon-Hand-pointer-alt,.icon-Handprint,.icon-Handshake,.icon-Handtool,.icon-Handtool-alt,.icon-Hard-drive,.icon-Hard-drive-alt,.icon-Hat,.icon-Hd,.icon-Headphones,.icon-Headset,.icon-Hearts,.icon-Height,.icon-Help,.icon-Help-alt,.icon-Home,.icon-Hourglass,.icon-Inactive-line,.icon-Inbox,.icon-Inbox-full,.icon-Indent,.icon-Infinity,.icon-Info,.icon-Invoice,.icon-Iphone,.icon-Item-arrangement,.icon-Junk,.icon-Key,.icon-Keyboard,.icon-Keychain,.icon-Keyhole,.icon-Lab,.icon-Laptop,.icon-Layers,.icon-Layers-alt,.icon-Layout,.icon-Left-double-arrow,.icon-Legal,.icon-Lense,.icon-Library,.icon-Light-down,.icon-Light-up,.icon-Lightbulb,.icon-Lightbulb-active,.icon-Lightning,.icon-Link,.icon-Linux-tux,.icon-List,.icon-Load,.icon-Loading,.icon-Locate,.icon-Location-near-me,.icon-Location-nearby,.icon-Lock,.icon-Log-out,.icon-Logout,.icon-Loupe,.icon-Magnet,.icon-Mailbox,.icon-Male-and-female,.icon-Male-symbol,.icon-Map,.icon-Map-alt,.icon-Map-loaction,.icon-Map-marker,.icon-Medal,.icon-Medical-emergency,.icon-Medicine,.icon-Meeting,.icon-Megaphone,.icon-Merge,.icon-Message,.icon-Message-open,.icon-Message-unopened,.icon-Microscope,.icon-Mindmap,.icon-Mobile,.icon-Molecular,.icon-Molecular-network,.icon-Mountain,.icon-Mouse,.icon-Mouse-cursor,.icon-Movie,.icon-Movie-alt,.icon-Multiple-credit-cards,.icon-Multiple-windows,.icon-Music,.icon-Name-badge,.icon-Navigation,.icon-Navigation-bottom,.icon-Navigation-down,.icon-Navigation-first,.icon-Navigation-horizontal,.icon-Navigation-last,.icon-Navigation-left,.icon-Navigation-right,.icon-Navigation-road,.icon-Navigation-top,.icon-Navigation-up,.icon-Navigation-vertical,.icon-Navigational-arrow,.icon-Network-alt,.icon-Newspaper,.icon-Newspaper-alt,.icon-Next,.icon-Next-media,.icon-Nodes,.icon-Notepad,.icon-Notepad-alt,.icon-Old-key,.icon-Old-phone,.icon-Operator,.icon-Ordered-list,.icon-Os-x,.icon-Out,.icon-Outbox,.icon-Outdent,.icon-Page-add,.icon-Page-down,.icon-Page-remove,.icon-Page-restricted,.icon-Page-up,.icon-Paint-roller,.icon-Palette,.icon-Panel-show,.icon-Pannel-close,.icon-Pants,.icon-Paper-bag,.icon-Paper-plane,.icon-Paper-plane-alt,.icon-Parachute-drop,.icon-Parental-control,.icon-Partly-cloudy,.icon-Paste-in,.icon-Path,.icon-Pause,.icon-Pc,.icon-People,.icon-People-alt,.icon-People-alt-2,.icon-People-female,.icon-Phone,.icon-Phone-ring,.icon-Photo-album,.icon-Picture,.icon-Pictures,.icon-Pictures-alt,.icon-Pictures-alt-2,.icon-Pie-chart,.icon-Piggy-bank,.icon-Pin-location,.icon-Piracy,.icon-Plane,.icon-Planet,.icon-Play,.icon-Playing-cards,.icon-Playlist,.icon-Plugin,.icon-Podcast,.icon-Poker-chip,.icon-Poll,.icon-Post-it,.icon-Pound-bag,.icon-Power,.icon-Power-outlet,.icon-Presentation,.icon-Previous,.icon-Previous-media,.icon-Price-dollar,.icon-Price-euro,.icon-Price-pound,.icon-Price-yen,.icon-Print,.icon-Printer-alt,.icon-Projector,.icon-Pulse,.icon-Pushpin,.icon-Qr-code,.icon-Quote,.icon-Radio,.icon-Radio-alt,.icon-Radio-receiver,.icon-Rain,.icon-Rate,.icon-Re-post,.icon-Readonly,.icon-Receipt-alt,.icon-Receipt-dollar,.icon-Receipt-euro,.icon-Receipt-pound,.icon-Receipt-yen,.icon-Reception,.icon-Record,.icon-Redo,.icon-Refresh,.icon-Remote,.icon-Remove,.icon-Repeat,.icon-Repeat-one,.icon-Reply-arrow,.icon-Resize,.icon-Return-to-top,.icon-Right-double-arrow,.icon-Road,.icon-Roadsign,.icon-Rocket,.icon-Rss,.icon-Ruler,.icon-Ruler-alt,.icon-Safe,.icon-Safedial,.icon-Sandbox-toys,.icon-Satellite-dish,.icon-Save,.icon-Scan,.icon-School,.icon-Screensharing,.icon-Script,.icon-Script-alt,.icon-Scull,.icon-Search,.icon-Security-camera,.icon-Sensor,.icon-Server,.icon-Server-alt,.icon-Settings,.icon-Settings-alt,.icon-Settings-alt-2,.icon-Share,.icon-Share-alt,.icon-Share-alt-2,.icon-Sharing-iphone,.icon-Shield,.icon-Shift,.icon-Shipping,.icon-Shipping-box,.icon-Shoe,.icon-Shopping-basket,.icon-Shopping-basket-alt,.icon-Shopping-basket-alt-2,.icon-Shorts,.icon-Shuffle,.icon-Sience,.icon-Simcard,.icon-Single-note,.icon-Sitemap,.icon-Sleep,.icon-Slideshow,.icon-Smiley,.icon-Smiley-inverted,.icon-Snow,.icon-Sound,.icon-Sound-low,.icon-Sound-medium,.icon-Sound-off,.icon-Sound-waves,.icon-Spades,.icon-Speaker,.icon-Speed-gauge,.icon-Split,.icon-Split-alt,.icon-Sprout,.icon-Squiggly-line,.icon-Ssd,.icon-Stacked-disks,.icon-Stamp,.icon-Stop,.icon-Stop-alt,.icon-Stop-hand,.icon-Store,.icon-Stream,.icon-Sunny,.icon-Sweatshirt,.icon-Sync,.icon-T-shirt,.icon-Tab,.icon-Tab-key,.icon-Tactics,.icon-Tag,.icon-Tags,.icon-Takeaway-cup,.icon-Target,.icon-Temperatrure-alt,.icon-Temperature,.icon-Terminal,.icon-Theater,.icon-Theif,.icon-Thought-bubble,.icon-Thumb-down,.icon-Thumb-up,.icon-Thumbnail-list,.icon-Thumbnails,.icon-Thumbnails-small,.icon-Ticket,.icon-Time,.icon-Timer,.icon-Tools,.icon-Top,.icon-Traffic-alt,.icon-Trafic,.icon-Train,.icon-Trash,.icon-Trash-alt,.icon-Trash-alt-2,.icon-Tree,.icon-Trophy,.icon-Truck,.icon-Tv,.icon-Tv-old,.icon-Umbraco_icons-01,.icon-Umbraco_icons-02,.icon-Umbraco_icons-03,.icon-Umbraco_icons-04,.icon-Umbraco_icons-05,.icon-Umbraco_icons-06,.icon-Umbraco_icons-07,.icon-Umbraco_icons-08,.icon-Umbrella,.icon-Undo,.icon-Universal,.icon-Unlocked,.icon-Usb,.icon-Usb-connector,.icon-User,.icon-User-female,.icon-User-females,.icon-User-females-alt,.icon-User-glasses,.icon-Users,.icon-Users-alt,.icon-Utilities,.icon-Vcard,.icon-Video,.icon-Voice,.icon-Wall-plug,.icon-Wallet,.icon-Wand,.icon-War,.icon-Weight,.icon-Width,.icon-Wifi,.icon-Window-popin,.icon-Window-sizes,.icon-Windows,.icon-Wine-glass,.icon-Wrench,.icon-Wrong,.icon-Yen-bag,.icon-Zip,.icon-Zoom-in,.icon-Zoom-out,.icon-axis-rotation,.icon-axis-rotation-2,.icon-axis-rotation-3,.icon-glasses,.icon-iMac,.icon-iPad,.icon-untitled{font-family:icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.quick-menu .login input,.quick-menu .new-profile input,button.button,button.tagAdd,header .search input{font-family:Asap,sans-serif}.icon-Zoom-out:before{content:"\e000"}.icon-Truck:before{content:"\e001"}.icon-Zoom-in:before{content:"\e002"}.icon-Zip:before{content:"\e003"}.icon-axis-rotation:before{content:"\e004"}.icon-Yen-bag:before{content:"\e005"}.icon-axis-rotation-2:before{content:"\e006"}.icon-axis-rotation-3:before{content:"\e007"}.icon-Wrench:before{content:"\e008"}.icon-Wine-glass:before{content:"\e009"}.icon-Wrong:before{content:"\e00a"}.icon-Windows:before{content:"\e00b"}.icon-Window-sizes:before{content:"\e00c"}.icon-Window-popin:before{content:"\e00d"}.icon-Wifi:before{content:"\e00e"}.icon-Width:before{content:"\e00f"}.icon-Weight:before{content:"\e010"}.icon-War:before{content:"\e011"}.icon-Wand:before{content:"\e012"}.icon-Wallet:before{content:"\e013"}.icon-Wall-plug:before{content:"\e014"}.icon-Umbraco_icons-06:before{content:"\e015"}.icon-Voice:before{content:"\e016"}.icon-Video:before{content:"\e017"}.icon-Vcard:before{content:"\e018"}.icon-Utilities:before{content:"\e019"}.icon-Users:before{content:"\e01a"}.icon-Users-alt:before{content:"\e01b"}.icon-User:before{content:"\e01c"}.icon-User-glasses:before{content:"\e01d"}.icon-User-females:before{content:"\e01e"}.icon-User-females-alt:before{content:"\e01f"}.icon-User-female:before{content:"\e020"}.icon-Usb:before{content:"\e021"}.icon-Usb-connector:before{content:"\e022"}.icon-Unlocked:before{content:"\e023"}.icon-Universal:before{content:"\e024"}.icon-Undo:before{content:"\e025"}.icon-Umbrella:before{content:"\e026"}.icon-Umbraco_icons-08:before{content:"\e027"}.icon-Umbraco_icons-07:before{content:"\e028"}.icon-Umbraco_icons-05:before{content:"\e029"}.icon-Umbraco_icons-04:before{content:"\e02a"}.icon-Umbraco_icons-03:before{content:"\e02b"}.icon-Umbraco_icons-02:before{content:"\e02c"}.icon-Umbraco_icons-01:before{content:"\e02d"}.icon-Tv:before{content:"\e02e"}.icon-Tv-old:before{content:"\e02f"}.icon-Trophy:before{content:"\e030"}.icon-Tree:before{content:"\e031"}.icon-Trash:before{content:"\e032"}.icon-Trash-alt:before{content:"\e033"}.icon-Trash-alt-2:before{content:"\e034"}.icon-Train:before{content:"\e035"}.icon-Trafic:before{content:"\e036"}.icon-Traffic-alt:before{content:"\e037"}.icon-Top:before{content:"\e038"}.icon-Tools:before{content:"\e039"}.icon-Timer:before{content:"\e03a"}.icon-Time:before{content:"\e03b"}.icon-T-shirt:before{content:"\e03c"}.icon-Tab-key:before{content:"\e03d"}.icon-Tab:before{content:"\e03e"}.icon-Tactics:before{content:"\e03f"}.icon-Tag:before{content:"\e040"}.icon-Tags:before{content:"\e041"}.icon-Takeaway-cup:before{content:"\e042"}.icon-Target:before{content:"\e043"}.icon-Temperatrure-alt:before{content:"\e044"}.icon-Temperature:before{content:"\e045"}.icon-Terminal:before{content:"\e046"}.icon-Theater:before{content:"\e047"}.icon-Theif:before{content:"\e048"}.icon-Thought-bubble:before{content:"\e049"}.icon-Thumb-down:before{content:"\e04a"}.icon-Thumb-up:before{content:"\e04b"}.icon-Thumbnail-list:before{content:"\e04c"}.icon-Thumbnails-small:before{content:"\e04d"}.icon-Thumbnails:before{content:"\e04e"}.icon-Ticket:before{content:"\e04f"}.icon-Sync:before{content:"\e050"}.icon-Sweatshirt:before{content:"\e051"}.icon-Sunny:before{content:"\e052"}.icon-Stream:before{content:"\e053"}.icon-Store:before{content:"\e054"}.icon-Stop:before{content:"\e055"}.icon-Stop-hand:before{content:"\e056"}.icon-Stop-alt:before{content:"\e057"}.icon-Stamp:before{content:"\e058"}.icon-Stacked-disks:before{content:"\e059"}.icon-Ssd:before{content:"\e05a"}.icon-Squiggly-line:before{content:"\e05b"}.icon-Sprout:before{content:"\e05c"}.icon-Split:before{content:"\e05d"}.icon-Split-alt:before{content:"\e05e"}.icon-Speed-gauge:before{content:"\e05f"}.icon-Speaker:before{content:"\e060"}.icon-Sound:before{content:"\e061"}.icon-Spades:before{content:"\e062"}.icon-Sound-waves:before{content:"\e063"}.icon-Shipping-box:before{content:"\e064"}.icon-Shipping:before{content:"\e065"}.icon-Shoe:before{content:"\e066"}.icon-Shopping-basket-alt-2:before{content:"\e067"}.icon-Shopping-basket:before{content:"\e068"}.icon-Shopping-basket-alt:before{content:"\e069"}.icon-Shorts:before{content:"\e06a"}.icon-Shuffle:before{content:"\e06b"}.icon-Sience:before{content:"\e06c"}.icon-Simcard:before{content:"\e06d"}.icon-Single-note:before{content:"\e06e"}.icon-Sitemap:before{content:"\e06f"}.icon-Sleep:before{content:"\e070"}.icon-Slideshow:before{content:"\e071"}.icon-Smiley-inverted:before{content:"\e072"}.icon-Smiley:before{content:"\e073"}.icon-Snow:before{content:"\e074"}.icon-Sound-low:before{content:"\e075"}.icon-Sound-medium:before{content:"\e076"}.icon-Sound-off:before{content:"\e077"}.icon-Shift:before{content:"\e078"}.icon-Shield:before{content:"\e079"}.icon-Sharing-iphone:before{content:"\e07a"}.icon-Share:before{content:"\e07b"}.icon-Share-alt:before{content:"\e07c"}.icon-Share-alt-2:before{content:"\e07d"}.icon-Settings:before{content:"\e07e"}.icon-Settings-alt:before{content:"\e07f"}.icon-Settings-alt-2:before{content:"\e080"}.icon-Server:before{content:"\e081"}.icon-Server-alt:before{content:"\e082"}.icon-Sensor:before{content:"\e083"}.icon-Security-camera:before{content:"\e084"}.icon-Search:before{content:"\e085"}.icon-Scull:before{content:"\e086"}.icon-Script:before{content:"\e087"}.icon-Script-alt:before{content:"\e088"}.icon-Screensharing:before{content:"\e089"}.icon-School:before{content:"\e08a"}.icon-Scan:before{content:"\e08b"}.icon-Refresh:before{content:"\e08c"}.icon-Remote:before{content:"\e08d"}.icon-Remove:before{content:"\e08e"}.icon-Repeat-one:before{content:"\e08f"}.icon-Repeat:before{content:"\e090"}.icon-Resize:before{content:"\e091"}.icon-Reply-arrow:before{content:"\e092"}.icon-Return-to-top:before{content:"\e093"}.icon-Right-double-arrow:before{content:"\e094"}.icon-Road:before{content:"\e095"}.icon-Roadsign:before{content:"\e096"}.icon-Rocket:before{content:"\e097"}.icon-Rss:before{content:"\e098"}.icon-Ruler-alt:before{content:"\e099"}.icon-Ruler:before{content:"\e09a"}.icon-Sandbox-toys:before{content:"\e09b"}.icon-Satellite-dish:before{content:"\e09c"}.icon-Save:before{content:"\e09d"}.icon-Safedial:before{content:"\e09e"}.icon-Safe:before{content:"\e09f"}.icon-Redo:before{content:"\e0a0"}.icon-Printer-alt:before{content:"\e0a1"}.icon-Planet:before{content:"\e0a2"}.icon-Paste-in:before{content:"\e0a3"}.icon-Os-x:before{content:"\e0a4"}.icon-Navigation-left:before{content:"\e0a5"}.icon-Message:before{content:"\e0a6"}.icon-Lock:before{content:"\e0a7"}.icon-Layers-alt:before{content:"\e0a8"}.icon-Record:before{content:"\e0a9"}.icon-Print:before{content:"\e0aa"}.icon-Plane:before{content:"\e0ab"}.icon-Partly-cloudy:before{content:"\e0ac"}.icon-Ordered-list:before{content:"\e0ad"}.icon-Navigation-last:before{content:"\e0ae"}.icon-Message-unopened:before{content:"\e0af"}.icon-Location-nearby:before{content:"\e0b0"}.icon-Laptop:before{content:"\e0b1"}.icon-Reception:before{content:"\e0b2"}.icon-Price-yen:before{content:"\e0b3"}.icon-Piracy:before{content:"\e0b4"}.icon-Parental-control:before{content:"\e0b5"}.icon-Operator:before{content:"\e0b6"}.icon-Navigation-horizontal:before{content:"\e0b7"}.icon-Message-open:before{content:"\e0b8"}.icon-Lab:before{content:"\e0b9"}.icon-Location-near-me:before{content:"\e0ba"}.icon-Receipt-yen:before{content:"\e0bb"}.icon-Price-pound:before{content:"\e0bc"}.icon-Pin-location:before{content:"\e0bd"}.icon-Parachute-drop:before{content:"\e0be"}.icon-Old-phone:before{content:"\e0bf"}.icon-Merge:before{content:"\e0c0"}.icon-Navigation-first:before{content:"\e0c1"}.icon-Locate:before{content:"\e0c2"}.icon-Keyhole:before{content:"\e0c3"}.icon-Receipt-pound:before{content:"\e0c4"}.icon-Price-euro:before{content:"\e0c5"}.icon-Piggy-bank:before{content:"\e0c6"}.icon-Paper-plane:before{content:"\e0c7"}.icon-Old-key:before{content:"\e0c8"}.icon-Navigation-down:before{content:"\e0c9"}.icon-Megaphone:before{content:"\e0ca"}.icon-Loading:before{content:"\e0cb"}.icon-Keychain:before{content:"\e0cc"}.icon-Receipt-euro:before{content:"\e0cd"}.icon-Price-dollar:before{content:"\e0ce"}.icon-Pie-chart:before{content:"\e0cf"}.icon-Paper-plane-alt:before{content:"\e0d0"}.icon-Notepad:before{content:"\e0d1"}.icon-Navigation-bottom:before{content:"\e0d2"}.icon-Meeting:before{content:"\e0d3"}.icon-Keyboard:before{content:"\e0d4"}.icon-Load:before{content:"\e0d5"}.icon-Receipt-dollar:before{content:"\e0d6"}.icon-Previous:before{content:"\e0d7"}.icon-Pictures:before{content:"\e0d8"}.icon-Notepad-alt:before{content:"\e0d9"}.icon-Paper-bag:before{content:"\e0da"}.icon-Name-badge:before{content:"\e0db"}.icon-Medicine:before{content:"\e0dc"}.icon-List:before{content:"\e0dd"}.icon-Key:before{content:"\e0de"}.icon-Receipt-alt:before{content:"\e0df"}.icon-Previous-media:before{content:"\e0e0"}.icon-Pictures-alt:before{content:"\e0e1"}.icon-Pants:before{content:"\e0e2"}.icon-Nodes:before{content:"\e0e3"}.icon-Music:before{content:"\e0e4"}.icon-Readonly:before{content:"\e0e5"}.icon-Presentation:before{content:"\e0e6"}.icon-Pictures-alt-2:before{content:"\e0e7"}.icon-Pannel-close:before{content:"\e0e8"}.icon-Next:before{content:"\e0e9"}.icon-Multiple-windows:before{content:"\e0ea"}.icon-Medical-emergency:before{content:"\e0eb"}.icon-Medal:before{content:"\e0ec"}.icon-Link:before{content:"\e0ed"}.icon-Linux-tux:before{content:"\e0ee"}.icon-Junk:before{content:"\e0ef"}.icon-Item-arrangement:before{content:"\e0f0"}.icon-Iphone:before{content:"\e0f1"}.icon-Lightning:before{content:"\e0f2"}.icon-Map:before{content:"\e0f3"}.icon-Multiple-credit-cards:before{content:"\e0f4"}.icon-Next-media:before{content:"\e0f5"}.icon-Panel-show:before{content:"\e0f6"}.icon-Picture:before{content:"\e0f7"}.icon-Power:before{content:"\e0f8"}.icon-Re-post:before{content:"\e0f9"}.icon-Rate:before{content:"\e0fa"}.icon-Rain:before{content:"\e0fb"}.icon-Radio:before{content:"\e0fc"}.icon-Radio-receiver:before{content:"\e0fd"}.icon-Radio-alt:before{content:"\e0fe"}.icon-Quote:before{content:"\e0ff"}.icon-Qr-code:before{content:"\e100"}.icon-Pushpin:before{content:"\e101"}.icon-Pulse:before{content:"\e102"}.icon-Projector:before{content:"\e103"}.icon-Play:before{content:"\e104"}.icon-Playing-cards:before{content:"\e105"}.icon-Playlist:before{content:"\e106"}.icon-Plugin:before{content:"\e107"}.icon-Podcast:before{content:"\e108"}.icon-Poker-chip:before{content:"\e109"}.icon-Poll:before{content:"\e10a"}.icon-Post-it:before{content:"\e10b"}.icon-Pound-bag:before{content:"\e10c"}.icon-Power-outlet:before{content:"\e10d"}.icon-Photo-album:before{content:"\e10e"}.icon-Phone:before{content:"\e10f"}.icon-Phone-ring:before{content:"\e110"}.icon-People:before{content:"\e111"}.icon-People-female:before{content:"\e112"}.icon-People-alt:before{content:"\e113"}.icon-People-alt-2:before{content:"\e114"}.icon-Pc:before{content:"\e115"}.icon-Pause:before{content:"\e116"}.icon-Path:before{content:"\e117"}.icon-Out:before{content:"\e118"}.icon-Outbox:before{content:"\e119"}.icon-Outdent:before{content:"\e11a"}.icon-Page-add:before{content:"\e11b"}.icon-Page-down:before{content:"\e11c"}.icon-Page-remove:before{content:"\e11d"}.icon-Page-restricted:before{content:"\e11e"}.icon-Page-up:before{content:"\e11f"}.icon-Paint-roller:before{content:"\e120"}.icon-Palette:before{content:"\e121"}.icon-Newspaper:before{content:"\e122"}.icon-Newspaper-alt:before{content:"\e123"}.icon-Network-alt:before{content:"\e124"}.icon-Navigational-arrow:before{content:"\e125"}.icon-Navigation:before{content:"\e126"}.icon-Navigation-vertical:before{content:"\e127"}.icon-Navigation-up:before{content:"\e128"}.icon-Navigation-top:before{content:"\e129"}.icon-Navigation-road:before{content:"\e12a"}.icon-Navigation-right:before{content:"\e12b"}.icon-Microscope:before{content:"\e12c"}.icon-Mindmap:before{content:"\e12d"}.icon-Molecular-network:before{content:"\e12e"}.icon-Molecular:before{content:"\e12f"}.icon-Mountain:before{content:"\e130"}.icon-Mouse-cursor:before{content:"\e131"}.icon-Mouse:before{content:"\e132"}.icon-Movie-alt:before{content:"\e133"}.icon-Map-marker:before{content:"\e134"}.icon-Movie:before{content:"\e135"}.icon-Map-loaction:before{content:"\e136"}.icon-Map-alt:before{content:"\e137"}.icon-Male-symbol:before{content:"\e138"}.icon-Male-and-female:before{content:"\e139"}.icon-Mailbox:before{content:"\e13a"}.icon-Magnet:before{content:"\e13b"}.icon-Loupe:before{content:"\e13c"}.icon-Mobile:before{content:"\e13d"}.icon-Logout:before{content:"\e13e"}.icon-Log-out:before{content:"\e13f"}.icon-Layers:before{content:"\e140"}.icon-Left-double-arrow:before{content:"\e141"}.icon-Layout:before{content:"\e142"}.icon-Legal:before{content:"\e143"}.icon-Lense:before{content:"\e144"}.icon-Library:before{content:"\e145"}.icon-Light-down:before{content:"\e146"}.icon-Light-up:before{content:"\e147"}.icon-Lightbulb-active:before{content:"\e148"}.icon-Lightbulb:before{content:"\e149"}.icon-iPad:before{content:"\e14a"}.icon-Invoice:before{content:"\e14b"}.icon-Info:before{content:"\e14c"}.icon-Infinity:before{content:"\e14d"}.icon-Indent:before{content:"\e14e"}.icon-Inbox:before{content:"\e14f"}.icon-Inbox-full:before{content:"\e150"}.icon-Inactive-line:before{content:"\e151"}.icon-iMac:before{content:"\e152"}.icon-Hourglass:before{content:"\e153"}.icon-Home:before{content:"\e154"}.icon-Grid:before{content:"\e155"}.icon-Food:before{content:"\e156"}.icon-Favorite:before{content:"\e157"}.icon-Door-open-alt:before{content:"\e158"}.icon-Diagnostics:before{content:"\e159"}.icon-Contrast:before{content:"\e15a"}.icon-Coins-dollar-alt:before{content:"\e15b"}.icon-Circle-dotted-active:before{content:"\e15c"}.icon-Cinema:before{content:"\e15d"}.icon-Chip:before{content:"\e15e"}.icon-Chip-alt:before{content:"\e15f"}.icon-Chess:before{content:"\e160"}.icon-Checkbox:before{content:"\e161"}.icon-Checkbox-empty:before{content:"\e162"}.icon-Checkbox-dotted:before{content:"\e163"}.icon-Checkbox-dotted-active:before{content:"\e164"}.icon-Check:before{content:"\e165"}.icon-Chat:before{content:"\e166"}.icon-Chat-active:before{content:"\e167"}.icon-Chart:before{content:"\e168"}.icon-Chart-curve:before{content:"\e169"}.icon-Certificate:before{content:"\e16a"}.icon-Categories:before{content:"\e16b"}.icon-Cash-register:before{content:"\e16c"}.icon-Car:before{content:"\e16d"}.icon-Caps-lock:before{content:"\e16e"}.icon-Candy:before{content:"\e16f"}.icon-Circle-dotted:before{content:"\e170"}.icon-Circuits:before{content:"\e171"}.icon-Circus:before{content:"\e172"}.icon-Client:before{content:"\e173"}.icon-Clothes-hanger:before{content:"\e174"}.icon-Cloud-drive:before{content:"\e175"}.icon-Cloud-upload:before{content:"\e176"}.icon-Cloud:before{content:"\e177"}.icon-Cloudy:before{content:"\e178"}.icon-Clubs:before{content:"\e179"}.icon-Cocktail:before{content:"\e17a"}.icon-Code:before{content:"\e17b"}.icon-Coffee:before{content:"\e17c"}.icon-Coin-dollar:before{content:"\e17d"}.icon-Coin-pound:before{content:"\e17e"}.icon-Coin-yen:before{content:"\e17f"}.icon-Coin:before{content:"\e180"}.icon-Coins-alt:before{content:"\e181"}.icon-Console:before{content:"\e182"}.icon-Connection:before{content:"\e183"}.icon-Compress:before{content:"\e184"}.icon-Company:before{content:"\e185"}.icon-Command:before{content:"\e186"}.icon-Coin-euro:before{content:"\e187"}.icon-Combination-lock:before{content:"\e188"}.icon-Combination-lock-open:before{content:"\e189"}.icon-Comb:before{content:"\e18a"}.icon-Columns:before{content:"\e18b"}.icon-Colorpicker:before{content:"\e18c"}.icon-Color-bucket:before{content:"\e18d"}.icon-Coins:before{content:"\e18e"}.icon-Coins-yen:before{content:"\e18f"}.icon-Coins-yen-alt:before{content:"\e190"}.icon-Coins-pound:before{content:"\e191"}.icon-Coins-pound-alt:before{content:"\e192"}.icon-Coins-euro:before{content:"\e193"}.icon-Coins-euro-alt:before{content:"\e194"}.icon-Coins-dollar:before{content:"\e195"}.icon-Conversation-alt:before{content:"\e196"}.icon-Conversation:before{content:"\e197"}.icon-Coverflow:before{content:"\e198"}.icon-Credit-card-alt:before{content:"\e199"}.icon-Credit-card:before{content:"\e19a"}.icon-Crop:before{content:"\e19b"}.icon-Crosshair:before{content:"\e19c"}.icon-Crown-alt:before{content:"\e19d"}.icon-Crown:before{content:"\e19e"}.icon-Cupcake:before{content:"\e19f"}.icon-Curve:before{content:"\e1a0"}.icon-Cut:before{content:"\e1a1"}.icon-Dashboard:before{content:"\e1a2"}.icon-Defrag:before{content:"\e1a3"}.icon-Delete:before{content:"\e1a4"}.icon-Delete-key:before{content:"\e1a5"}.icon-Departure:before{content:"\e1a6"}.icon-Desk:before{content:"\e1a7"}.icon-Desktop:before{content:"\e1a8"}.icon-Donate:before{content:"\e1a9"}.icon-Dollar-bag:before{content:"\e1aa"}.icon-Documents:before{content:"\e1ab"}.icon-Document:before{content:"\e1ac"}.icon-Document-dashed-line:before{content:"\e1ad"}.icon-Dock-connector:before{content:"\e1ae"}.icon-Dna:before{content:"\e1af"}.icon-Display:before{content:"\e1b0"}.icon-Disk-image:before{content:"\e1b1"}.icon-Disc:before{content:"\e1b2"}.icon-Directions:before{content:"\e1b3"}.icon-Directions-alt:before{content:"\e1b4"}.icon-Diploma:before{content:"\e1b5"}.icon-Diploma-alt:before{content:"\e1b6"}.icon-Dice:before{content:"\e1b7"}.icon-Diamonds:before{content:"\e1b8"}.icon-Diamond:before{content:"\e1b9"}.icon-Diagonal-arrow:before{content:"\e1ba"}.icon-Diagonal-arrow-alt:before{content:"\e1bb"}.icon-Door-open:before{content:"\e1bc"}.icon-Download-alt:before{content:"\e1bd"}.icon-Download:before{content:"\e1be"}.icon-Drop:before{content:"\e1bf"}.icon-Eco:before{content:"\e1c0"}.icon-Economy:before{content:"\e1c1"}.icon-Edit:before{content:"\e1c2"}.icon-Eject:before{content:"\e1c3"}.icon-Employee:before{content:"\e1c4"}.icon-Energy-saving-bulb:before{content:"\e1c5"}.icon-Enter:before{content:"\e1c6"}.icon-Equalizer:before{content:"\e1c7"}.icon-Escape:before{content:"\e1c8"}.icon-Ethernet:before{content:"\e1c9"}.icon-Euro-bag:before{content:"\e1ca"}.icon-Exit-fullscreen:before{content:"\e1cb"}.icon-Eye:before{content:"\e1cc"}.icon-Facebook-like:before{content:"\e1cd"}.icon-Factory:before{content:"\e1ce"}.icon-Font:before{content:"\e1cf"}.icon-Folders:before{content:"\e1d0"}.icon-Folder:before{content:"\e1d1"}.icon-Folder-outline:before{content:"\e1d2"}.icon-Folder-open:before{content:"\e1d3"}.icon-Flowerpot:before{content:"\e1d4"}.icon-Flashlight:before{content:"\e1d5"}.icon-Flash:before{content:"\e1d6"}.icon-Flag:before{content:"\e1d7"}.icon-Flag-alt:before{content:"\e1d8"}.icon-Firewire:before{content:"\e1d9"}.icon-Firewall:before{content:"\e1da"}.icon-Fire:before{content:"\e1db"}.icon-Fingerprint:before{content:"\e1dc"}.icon-FIlter:before{content:"\e1dd"}.icon-Filter-arrows:before{content:"\e1de"}.icon-Files:before{content:"\e1df"}.icon-File-cabinet:before{content:"\e1e0"}.icon-Female-symbol:before{content:"\e1e1"}.icon-Footprints:before{content:"\e1e2"}.icon-Hammer:before{content:"\e1e3"}.icon-Hand-active-alt:before{content:"\e1e4"}.icon-Forking:before{content:"\e1e5"}.icon-Hand-active:before{content:"\e1e6"}.icon-Hand-pointer-alt:before{content:"\e1e7"}.icon-Hand-pointer:before{content:"\e1e8"}.icon-Handprint:before{content:"\e1e9"}.icon-Handshake:before{content:"\e1ea"}.icon-Handtool:before{content:"\e1eb"}.icon-Hard-drive:before{content:"\e1ec"}.icon-Help:before{content:"\e1ed"}.icon-Graduate:before{content:"\e1ee"}.icon-Gps:before{content:"\e1ef"}.icon-Help-alt:before{content:"\e1f0"}.icon-Height:before{content:"\e1f1"}.icon-Globe:before{content:"\e1f2"}.icon-Hearts:before{content:"\e1f3"}.icon-Globe-inverted-europe-africa:before{content:"\e1f4"}.icon-Headset:before{content:"\e1f5"}.icon-Globe-inverted-asia:before{content:"\e1f6"}.icon-Headphones:before{content:"\e1f7"}.icon-Globe-inverted-america:before{content:"\e1f8"}.icon-Hd:before{content:"\e1f9"}.icon-Globe-Europe---Africa:before{content:"\e1fa"}.icon-Hat:before{content:"\e1fb"}.icon-Globe-Asia:before{content:"\e1fc"}.icon-Globe-alt:before{content:"\e1fd"}.icon-Hard-drive-alt:before{content:"\e1fe"}.icon-Glasses:before{content:"\e1ff"}.icon-Gift:before{content:"\e200"}.icon-Handtool-alt:before{content:"\e201"}.icon-Geometry:before{content:"\e202"}.icon-Game:before{content:"\e203"}.icon-Fullscreen:before{content:"\e204"}.icon-Fullscreen-alt:before{content:"\e205"}.icon-Frame:before{content:"\e206"}.icon-Frame-alt:before{content:"\e207"}.icon-Camera-roll:before{content:"\e208"}.icon-Bookmark:before{content:"\e209"}.icon-Bill:before{content:"\e20a"}.icon-Baby-stroller:before{content:"\e20b"}.icon-Alarm-clock:before{content:"\e20c"}.icon-Adressbook:before{content:"\e20d"}.icon-Add:before{content:"\e20e"}.icon-Activity:before{content:"\e20f"}.icon-untitled:before{content:"\e210"}.icon-glasses:before{content:"\e211"}.icon-Camcorder:before{content:"\e212"}.icon-Calendar:before{content:"\e213"}.icon-Calendar-alt:before{content:"\e214"}.icon-Calculator:before{content:"\e215"}.icon-Bus:before{content:"\e216"}.icon-Burn:before{content:"\e217"}.icon-Bulleted-list:before{content:"\e218"}.icon-Bug:before{content:"\e219"}.icon-Brush:before{content:"\e21a"}.icon-Brush-alt:before{content:"\e21b"}.icon-Brush-alt-2:before{content:"\e21c"}.icon-Browser-window:before{content:"\e21d"}.icon-Briefcase:before{content:"\e21e"}.icon-Brick:before{content:"\e21f"}.icon-Brackets:before{content:"\e220"}.icon-Box:before{content:"\e221"}.icon-Box-open:before{content:"\e222"}.icon-Box-alt:before{content:"\e223"}.icon-Books:before{content:"\e224"}.icon-Billboard:before{content:"\e225"}.icon-Bills-dollar:before{content:"\e226"}.icon-Bills-euro:before{content:"\e227"}.icon-Bills-pound:before{content:"\e228"}.icon-Bills-yen:before{content:"\e229"}.icon-Bills:before{content:"\e22a"}.icon-Binarycode:before{content:"\e22b"}.icon-Binoculars:before{content:"\e22c"}.icon-Bird:before{content:"\e22d"}.icon-Birthday-cake:before{content:"\e22e"}.icon-Blueprint:before{content:"\e22f"}.icon-Block:before{content:"\e230"}.icon-Bluetooth:before{content:"\e231"}.icon-Boat-shipping:before{content:"\e232"}.icon-Bomb:before{content:"\e233"}.icon-Book-alt-2:before{content:"\e234"}.icon-Bones:before{content:"\e235"}.icon-Book-alt:before{content:"\e236"}.icon-Book:before{content:"\e237"}.icon-Bill-yen:before{content:"\e238"}.icon-Award:before{content:"\e239"}.icon-Bill-pound:before{content:"\e23a"}.icon-Autofill:before{content:"\e23b"}.icon-Bill-euro:before{content:"\e23c"}.icon-Auction-hammer:before{content:"\e23d"}.icon-Bill-dollar:before{content:"\e23e"}.icon-Attachment:before{content:"\e23f"}.icon-Bell:before{content:"\e240"}.icon-Article:before{content:"\e241"}.icon-Bell-off:before{content:"\e242"}.icon-Art-easel:before{content:"\e243"}.icon-Beer-glass:before{content:"\e244"}.icon-Arrow-up:before{content:"\e245"}.icon-Battery-low:before{content:"\e246"}.icon-Arrow-right:before{content:"\e247"}.icon-Battery-full:before{content:"\e248"}.icon-Arrow-left:before{content:"\e249"}.icon-Bars:before{content:"\e24a"}.icon-Arrow-down:before{content:"\e24b"}.icon-Barcode:before{content:"\e24c"}.icon-Arrivals:before{content:"\e24d"}.icon-Bar-chart:before{content:"\e24e"}.icon-Application-window:before{content:"\e24f"}.icon-Band-aid:before{content:"\e250"}.icon-Application-window-alt:before{content:"\e251"}.icon-Ball:before{content:"\e252"}.icon-Application-Error:before{content:"\e253"}.icon-Badge-restricted:before{content:"\e254"}.icon-App:before{content:"\e255"}.icon-Badge-remove:before{content:"\e256"}.icon-Anchor:before{content:"\e257"}.icon-Badge-count:before{content:"\e258"}.icon-Alt:before{content:"\e259"}.icon-Badge-add:before{content:"\e25a"}.icon-Alert:before{content:"\e25b"}.icon-Backspace:before{content:"\e25c"}.icon-Alert-alt:before{content:"\e25d"}.span{width:60px;background-color:rgba(163,219,120,.5);height:60px}#posting,.loader{position:absolute}#posting{top:0;width:140px;background-color:#4aae4e;height:36px;display:none}.loader{width:6px;height:6px;border-radius:50%;-webkit-animation:typing 1s linear infinite alternate;animation:typing 1s linear infinite alternate;top:50%;left:50%;-webkit-transform:translate(-250%,-50%);-ms-transform:translate(-250%,-50%);transform:translate(-250%,-50%)}#registrationForm input[type=submit],.button,.quick-menu .login input[type=submit],.quick-menu .new-profile input[type=submit],.tagAdd,a.button,a.tagAdd{background:#2f6bff;padding:20px 40px;display:inline-block;text-decoration:none;border:none;border-radius:3px;-webkit-appearance:none;position:relative;overflow:hidden;color:#fff;text-align:center;font-size:1rem;-webkit-transition:background .2s;transition:background .2s;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#registrationForm input[type=submit]:hover,.button:hover,.quick-menu .login input[type=submit]:hover,.quick-menu .new-profile input[type=submit]:hover,.tagAdd:hover,a.button:hover,a.tagAdd:hover{background:#497dff}#registrationForm input[type=submit] span,.button span,.quick-menu .login input[type=submit] span,.quick-menu .new-profile input[type=submit] span,.tagAdd span,a.button span,a.tagAdd span{position:relative;z-index:20}.ink,header{position:absolute}#registrationForm input[type=submit],.button.green,.forum-page .button.create-new-thread,.forum-page .button.login,.forum-page .create-new-thread.tagAdd,.forum-page .login.tagAdd,.forum-page a.button.create-new-thread,.forum-page a.button.login,.forum-page a.create-new-thread.tagAdd,.forum-page a.login.tagAdd,.green.tagAdd,.quick-menu .login input[type=submit],.quick-menu .new-profile input[type=submit],a.button.green,a.green.tagAdd{background:#2EB369}#registrationForm input[type=submit]:hover,.button.green:hover,.forum-page .button.create-new-thread:hover,.forum-page .button.login:hover,.forum-page .create-new-thread.tagAdd:hover,.forum-page .login.tagAdd:hover,.forum-page a.button.create-new-thread:hover,.forum-page a.button.login:hover,.forum-page a.create-new-thread.tagAdd:hover,.forum-page a.login.tagAdd:hover,.green.tagAdd:hover,.quick-menu .login input[type=submit]:hover,.quick-menu .new-profile input[type=submit]:hover,a.button.green:hover,a.green.tagAdd:hover{background:#33c775}#registrationForm input.white[type=submit],.button.white,.quick-menu .login input.white[type=submit],.quick-menu .new-profile input.white[type=submit],.white.tagAdd,a.button.white,a.white.tagAdd{background:#fff;color:#000}#registrationForm input.white[type=submit]:hover,.button.white:hover,.quick-menu .login input.white[type=submit]:hover,.quick-menu .new-profile input.white[type=submit]:hover,.white.tagAdd:hover,a.button.white:hover,a.white.tagAdd:hover{background:rgba(255,255,255,.7)}#registrationForm .forum-page input.delete-thread[type=submit],#registrationForm input.red[type=submit],.button.red,.forum-page #registrationForm input.delete-thread[type=submit],.forum-page .button.delete-thread,.forum-page .delete-thread.tagAdd,.forum-page .quick-menu .login input.delete-thread[type=submit],.forum-page .quick-menu .new-profile input.delete-thread[type=submit],.forum-page a.button.delete-thread,.forum-page a.delete-thread.tagAdd,.quick-menu .login .forum-page input.delete-thread[type=submit],.quick-menu .login input.red[type=submit],.quick-menu .new-profile .forum-page input.delete-thread[type=submit],.quick-menu .new-profile input.red[type=submit],.red.tagAdd,a.button.red,a.red.tagAdd{background:#fe6561;color:#fff}#registrationForm .forum-page input.delete-thread[type=submit]:hover,#registrationForm input.red[type=submit]:hover,.button.red:hover,.forum-page #registrationForm input.delete-thread[type=submit]:hover,.forum-page .button.delete-thread:hover,.forum-page .delete-thread.tagAdd:hover,.forum-page .quick-menu .login input.delete-thread[type=submit]:hover,.forum-page .quick-menu .new-profile input.delete-thread[type=submit]:hover,.forum-page a.button.delete-thread:hover,.forum-page a.delete-thread.tagAdd:hover,.quick-menu .login .forum-page input.delete-thread[type=submit]:hover,.quick-menu .login input.red[type=submit]:hover,.quick-menu .new-profile .forum-page input.delete-thread[type=submit]:hover,.quick-menu .new-profile input.red[type=submit]:hover,.red.tagAdd:hover,a.button.red:hover,a.red.tagAdd:hover{background:#fe7e7a}#registrationForm input.transparent[type=submit],.button.transparent,.quick-menu .login input.transparent[type=submit],.quick-menu .new-profile input.transparent[type=submit],.transparent.tagAdd,a.button.transparent,a.transparent.tagAdd{border:1px solid #565656;background:0 0;color:#565656}#registrationForm input.transparent[type=submit]:hover,.button.transparent:hover,.quick-menu .login input.transparent[type=submit]:hover,.quick-menu .new-profile input.transparent[type=submit]:hover,.transparent.tagAdd:hover,a.button.transparent:hover,a.transparent.tagAdd:hover{background:0 0;color:#000;border-color:#000}#registrationForm input.transparent[type=submit] .ink,.button.transparent .ink,.quick-menu .login input.transparent[type=submit] .ink,.quick-menu .new-profile input.transparent[type=submit] .ink,.transparent.tagAdd .ink,a.button.transparent .ink,a.transparent.tagAdd .ink{background:rgba(46,179,105,.3)}#registrationForm input.pink[type=submit],.button.pink,.pink.tagAdd,.quick-menu .login input.pink[type=submit],.quick-menu .new-profile input.pink[type=submit],a.button.pink,a.pink.tagAdd{background:#E13E8F}#registrationForm input.pink[type=submit]:hover,.button.pink:hover,.pink.tagAdd:hover,.quick-menu .login input.pink[type=submit]:hover,.quick-menu .new-profile input.pink[type=submit]:hover,a.button.pink:hover,a.pink.tagAdd:hover{background:#e4549c}#registrationForm input.large[type=submit],.button.large,.large.tagAdd,.quick-menu .login input.large[type=submit],.quick-menu .new-profile input.large[type=submit],a.button.large,a.large.tagAdd{font-size:1.2rem}#registrationForm input[type=submit],.button.tiny,.quick-menu .login input[type=submit],.quick-menu .new-profile input[type=submit],.tagAdd,a.button.tiny,a.tagAdd{padding:10px 20px;font-size:.9rem}button.button,button.tagAdd{cursor:pointer;outline:0}button.button:active,button.button:focus,button.tagAdd:active,button.tagAdd:focus{outline:0}.ink{display:block;background:rgba(255,255,255,.3);border-radius:100%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.animate{-webkit-animation:ripple .65s cubic-bezier(0,0,.22,.88);animation:ripple .65s cubic-bezier(0,0,.22,.88)}body{padding-top:80px}body.navopen{overflow:hidden;max-height:100%}header{color:#fff;width:100%;z-index:800;top:-80px}header .navigation{z-index:200;width:100%;padding:10px 0;background:#a3db78;transition:all .2s}header .logo,header .navigation{position:relative;-webkit-transition:all .2s}header .row:first-child{margin:0}header .logo{background:url(../images/logo.svg) left center no-repeat;background-size:30px auto;height:60px;line-height:60px;display:inline-block;text-indent:40px;text-decoration:none;z-index:300;font-size:1rem;transition:all .2s}header nav{text-align:right;overflow:hidden;height:60px;line-height:60px;color:rgba(0,0,0,.5)}header nav ul{float:right}header nav li{float:left;margin-right:20px;font-size:1rem;line-height:inherit}header nav li:last-child{margin-right:0}header nav a,header nav a:visited{text-decoration:none;color:rgba(0,0,0,.6);border-bottom:1px solid transparent}header nav a.active,header nav a:hover,header nav a:visited.active,header nav a:visited:hover{border-bottom-color:rgba(0,0,0,.6)}header .search{max-width:1200px;-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%)}header .search form{position:relative}header .search input[type=search]{-webkit-appearance:none;border:none;padding:14px 0;text-indent:14px;height:60px;width:100%;min-width:400px;display:block;font-size:1rem;-webkit-transition:box-shadow .2s;transition:box-shadow .2s}header .search input[type=search]:active,header .search input[type=search]:focus{outline:0}header .search input[type=submit]{background:url(../images/search-dark.png) center no-repeat #fff;background-size:24px 24px;width:10%;height:60px;padding:14px 28px;border:none;position:absolute;z-index:100;right:0;top:0;margin:0}header .search .search-text p{display:none}header .user img{height:40px;width:40px;border-radius:50%;vertical-align:middle;cursor:pointer;-webkit-transition:all .2s;transition:all .2s}header.sticky .navigation{background:#98d768;padding:0}header.sticky .menu-toggle{top:15px}.notificationCount{position:absolute;text-align:center;height:20px;width:20px;background:#fe6561;line-height:20px;z-index:40;font-size:.68rem;font-weight:700;cursor:pointer;border-radius:50%;color:#fff;-webkit-animation-name:animGenie;animation-name:animGenie;-webkit-animation-duration:1s;animation-duration:1s}.map .sticky .navigation{background:#a3db78}.map .navigation{background:0 0}#breadcrumb{padding:10px 10px 10px 0;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);margin:0;display:block;width:100%}#breadcrumb li{display:inline-block;list-style:none}#breadcrumb li:after{content:"";background:url(../images/breadcrumb.png) center bottom no-repeat;background-size:16px 16px;display:inline-block;height:20px;width:16px;margin-left:3px;margin-right:3px;-webkit-transform:translateY(4px);-ms-transform:translateY(4px);transform:translateY(4px)}#breadcrumb li a{color:#000;text-decoration:none;font-size:.8rem;-webkit-transition:color .1s;transition:color .1s}#breadcrumb li a:hover{color:#000;text-decoration:underline}#breadcrumb li:last-child a{color:#000}#breadcrumb li:last-child:after{display:none}body.quickmenu{overflow:hidden;max-height:100%}.quick-menu{width:100%;position:fixed;right:0;top:0;z-index:999;visibility:hidden;-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);overflow-y:scroll;height:100%;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.08),0 3px 6px rgba(0,0,0,.12);-webkit-transition:all .3s;transition:all .3s}.quick-menu>.container,.quick-menu>.page,.quick-menu>.subpage{padding-bottom:30px}.quick-menu .user-image img{border-radius:50%;display:block;margin:30px auto;max-width:128px;height:auto}.quick-menu .close{left:15px;cursor:pointer;font-size:.9rem;color:#5a6d71}.quick-menu .close:hover{color:#7F9499}.quick-menu .close i{position:relative;top:3px;font-size:1rem;margin-right:3px}.quick-menu .settings{right:15px}.quick-menu .settings a{font-size:.9rem;text-decoration:none;color:#5a6d71}.quick-menu .settings i{position:relative;top:3px;font-size:1rem;margin-right:5px}.quick-menu .settings:hover a{color:#7F9499}.quick-menu .close,.quick-menu .settings{-webkit-transition:color .2s cubic-bezier(.7,0,.3,1);transition:color .2s cubic-bezier(.7,0,.3,1);position:absolute;top:-3px}.quick-menu .user-profile{text-align:center;margin:0 auto 30px}.quick-menu .user-profile h2{font-size:1.3rem;margin-bottom:.5rem}.quick-menu .user-profile .karma,.quick-menu .user-profile .user-twitter{display:inline-block;font-size:.9rem;color:#5a6d71}.quick-menu .user-profile .karma:before{content:"Karma";display:inline-block;padding:0 2px 0 0;-webkit-transform:translateY(-1px);-ms-transform:translateY(-1px);transform:translateY(-1px)}.quick-menu .user-profile .karma:after{content:"-";display:inline-block;padding:0 1px}.quick-menu .log-out a,.quick-menu .user-profile .roles span{font-size:.8rem}.quick-menu .user-profile .user-twitter a{border-bottom:1px solid rgba(0,0,0,.6);padding-bottom:1px;text-decoration:none;-webkit-transition:all .2s;transition:all .2s}.quick-menu .user-profile .user-twitter a:hover{padding-bottom:3px;color:#7F9499}.quick-menu .user-profile .roles{display:block;margin-top:1rem}.quick-menu .log-out{margin-top:20px}.quick-menu small{font-size:.9rem;color:#4f5f63;text-transform:uppercase;font-weight:700;letter-spacing:.2px;display:block;margin-bottom:.5rem}.quick-menu .forum-thread,.quick-menu .user-notification,.quick-menu .user-notification__blue,.quick-menu .user-notification__green,.quick-menu .user-notification__red,.quick-menu .user-notification__yellow{border:1px solid #e1e1e1;margin-bottom:10px;padding:15px;margin-top:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-decoration:none}.quick-menu .forum-thread-text,.quick-menu .user-notification-text{margin-top:0;margin-right:5%;-webkit-box-flex:1;-webkit-flex:1 0 60%;-ms-flex:1 0 60%;flex:1 0 60%}.quick-menu .forum-thread-text h3,.quick-menu .user-notification-text h3{font-size:.9rem}.quick-menu .forum-thread .cat,.quick-menu .user-notification .cat,.quick-menu .user-notification__blue .cat,.quick-menu .user-notification__green .cat,.quick-menu .user-notification__red .cat,.quick-menu .user-notification__yellow .cat{-webkit-box-flex:1;-webkit-flex:1 0 30%;-ms-flex:1 0 30%;flex:1 0 30%;font-size:.8rem;margin:0}.quick-menu .user-notifications{margin-bottom:2rem}.quick-menu .user-notification,.quick-menu .user-notification__blue,.quick-menu .user-notification__green,.quick-menu .user-notification__red,.quick-menu .user-notification__yellow{-webkit-transition:all 250ms cubic-bezier(.7,0,.3,1);transition:all 250ms cubic-bezier(.7,0,.3,1)}.quick-menu .user-notification__red{border:1px solid #fa040a;background:#feb3b5;color:#4a0103}.quick-menu .user-notification__red a,.quick-menu .user-notification__red a:visited{text-decoration:underline;color:#4a0103}.quick-menu .user-notification__red a:hover,.quick-menu .user-notification__red a:visited:hover{text-decoration:none}.quick-menu .user-notification__red .close-notification:hover{color:#af0307}.quick-menu .user-notification__yellow{border:1px solid #f7e5b4;background:#faedcb;color:#9c7610}.quick-menu .user-notification__yellow a,.quick-menu .user-notification__yellow a:visited{text-decoration:underline;color:#9c7610}.quick-menu .user-notification__yellow a:hover,.quick-menu .user-notification__yellow a:visited:hover{text-decoration:none}.quick-menu .user-notification__yellow .close-notification:hover{color:#eec557}.quick-menu .user-notification__blue{border:1px solid #6bafff;background:#b8d9ff;color:#00499e}.quick-menu .user-notification__blue a,.quick-menu .user-notification__blue a:visited{text-decoration:underline;color:#00499e}.quick-menu .user-notification__blue a:hover,.quick-menu .user-notification__blue a:visited:hover{text-decoration:none}.quick-menu .user-notification__blue .close-notification:hover{color:#001a38}.quick-menu .user-notification__green{border:1px solid #00e75f;background:#9bffc4;color:#008135}.quick-menu .user-notification__green a,.quick-menu .user-notification__green a:visited{text-decoration:underline;color:#008135}.box h3 a,.quick-menu .login a:hover,.quick-menu .new-profile a:hover,.quick-menu .user-notification__green a:hover,.quick-menu .user-notification__green a:visited:hover,.sidebar-content nav ul a{text-decoration:none}.quick-menu .user-notification__green .close-notification:hover{color:#001b0b}.quick-menu .user-notification-text p{font-size:.9rem}.quick-menu .user-notification:hover,.quick-menu .user-notification__blue:hover,.quick-menu .user-notification__green:hover,.quick-menu .user-notification__red:hover,.quick-menu .user-notification__yellow:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.quick-menu .login,.quick-menu .new-profile{padding:0 20px;margin-top:60px}.quick-menu .login h2,.quick-menu .new-profile h2{margin-bottom:.8rem;text-align:center}.quick-menu .login small,.quick-menu .new-profile small{text-align:center;line-height:1.3}.quick-menu .login label,.quick-menu .new-profile label{text-align:left;font-size:.7rem}.quick-menu .login .buttons,.quick-menu .new-profile .buttons,.quick-menu .oAuth,.search-all{text-align:center}.quick-menu .login input,.quick-menu .new-profile input{margin-bottom:5px;display:inline-block}.quick-menu .login input[type=password],.quick-menu .login input[type=text],.quick-menu .new-profile input[type=password],.quick-menu .new-profile input[type=text]{width:95%;padding:10px 20px 10px 8px;font-size:1rem;border:1px solid #e1e1e1;border-radius:5px}.quick-menu .login input[type=submit],.quick-menu .new-profile input[type=submit]{margin:1rem auto 2rem;display:inline-block;padding:15px 45px;font-size:1rem}.quick-menu .oAuth img{display:inline-block}.navigation:after,.wrapper:after{content:"";position:absolute;z-index:998;height:100%;width:100%;background:rgba(0,0,0,.33);top:0;left:0;visibility:hidden;opacity:0;-webkit-transition:opacity .3s;transition:opacity .3s}.wrapper{-webkit-transition:margin-left .3s,margin-right .3s;transition:margin-left .3s,margin-right .3s;position:relative}body.quickmenu .quick-menu{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);visibility:visible}.search-all{width:100%;padding:20px 0}.search-container{position:relative;height:100%;width:100%;overflow:hidden}.search-all-form{position:relative;display:inline-block;width:80%;height:60px;max-width:1100px;margin-top:15px;padding-top:0;background-color:#fff;z-index:150}.search-all-form .search-fieldset{position:relative;display:inline-block;width:100%;height:100%;border-left:1px solid transparent;border-right:1px solid transparent;border-top:1px solid transparent}.search-all-form input[type=search],.search-all-form input[type=submit]{min-height:60px;font-size:1em;border:none;background:#fff;padding:15px 20px;z-index:150;margin:0;-webkit-transition:border .2,background-color .5s cubic-bezier(.7,0,.3,1);transition:border .2,background-color .5s cubic-bezier(.7,0,.3,1)}.search-all-results,.search-all-results li{border-bottom:1px solid #f5f5f5}.search-all-results,.search-all.open .search-fieldset{border-left:1px solid #f5f5f5;border-right:1px solid #f5f5f5}.search-all-form input[type=search]{width:100%;-webkit-appearance:none;font-family:Asap,sans-serif;font-size:1.2rem}.search-all-form input[type=search]:focus{outline:0}.search-all-form input[type=search]:focus+input[type=submit]{color:#a3db78}.search-all-form input[type=submit]{position:absolute;top:0;right:0;font-family:Icomoon;color:#a4a4a4}.search-text{padding-top:2em;padding-bottom:5em}.search-all-results ul{max-width:1100px;width:100%;margin:0 auto;background:#fcfcfc;padding:0}.search-all-results li{list-style:none;padding:30px;text-align:left;overflow:hidden}.search-all-results li a{display:block}.search-all-results li:hover{background:rgba(163,219,120,.16)}.search-all-results li:hover .type-description,.search-all-results li:hover .type-icon,.search-all-results li:hover .type-name{color:#000}.search-all-results li.search-view-all{border-bottom:none;font-size:.9rem;font-weight:700;text-align:center;padding:15px;color:#000;background:#f7f7f7}.search-all-results li.search-view-all a{text-decoration:none;color:rgba(0,0,0,.8)}.search-all-results li.search-view-all:hover{background:#f5f5f5}.search-all-results li.search-view-all:hover a{color:#000}.search-all-results .type-context,.search-all-results .type-icon{float:left}.search-all-results .type-icon{width:20%;font-size:2rem;color:#000}.search-all-results .type-context{width:80%}.search-all-results .type-context .type-name{font-size:1rem;margin-bottom:.15rem;font-weight:600;color:rgba(0,0,0,.8)}.search-all-results .type-context .type-description{font-size:.9rem;color:#000}.search-all.open input[type=search],.search-all.open input[type=submit]{color:#000}.search-all.open input[type=search] ::-webkit-input-placeholder,.search-all.open input[type=submit] ::-webkit-input-placeholder{color:#000}.search-all.open input[type=search] :-moz-placeholder,.search-all.open input[type=submit] :-moz-placeholder{color:#000}.search-all.open input[type=search] ::-moz-placeholder,.search-all.open input[type=submit] ::-moz-placeholder{color:#000}.search-all.open input[type=search] :-ms-input-placeholder,.search-all.open input[type=submit] :-ms-input-placeholder{color:#000}.search-all.open .search-fieldset{border-top:1px solid #f5f5f5}.search-all.open .search-all-results{display:block}.community-page .search-all-results,.frontpage .search-all-results{width:80%;left:50%;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);display:none;position:absolute;z-index:150;max-width:1100px}.plain{max-width:1160px;margin:0 auto}.plain .search-big{margin-top:30px;margin-bottom:0}.plain .search-all{background:0 0;padding:0 10px}.plain .forum-archive-header{margin-bottom:0;border-bottom:none}.plain .search-all-results{width:100%}.plain .search-all-results ul{margin:0;width:100%;max-width:100%}.plain .search-all-results .type-icon{font-size:1.6rem;opacity:.6}.plain .search-all-results .type-context .type-name{font-size:.95rem}.plain .search-all-results .type-context .type-description{font-size:.8rem}.forum-page .search-big{width:100%;margin:15px 0}.forum-page .search-big input{font-size:.9rem;min-height:55px}.overlay{width:100%;position:fixed;top:0;left:0;overflow-y:scroll;height:100%;z-index:850;background-color:rgba(0,0,0,.33);visibility:hidden;opacity:0;-webkit-transition:opacity .2s;transition:opacity .2s}.active .overlay{visibility:visible;opacity:1}#insert-image-dialog,#update-avatar-dialog,.confirm-wrapper,.copy-link-wrapper,.wmd-prompt-dialog{z-index:870;padding:2rem;position:fixed;width:50%;max-width:500px;min-width:300px;background-color:#fff;border-radius:2px;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);-webkit-transition:opacity .2s;transition:opacity .2s;clip:rect(1px 1px 1px 1px);opacity:0;text-align:center;top:-9999999px;left:-9999999px}#insert-image-dialog i,#update-avatar-dialog i,.confirm-wrapper i,.copy-link-wrapper i,.wmd-prompt-dialog i{display:block;font-size:2rem;color:#a3db78;margin-bottom:1rem}#insert-image-dialog p,#update-avatar-dialog p,.confirm-wrapper p,.copy-link-wrapper p,.wmd-prompt-dialog p{margin-top:1rem;font-size:.85rem;color:#000}#insert-image-dialog input,#insert-image-dialog textarea,#update-avatar-dialog input,#update-avatar-dialog textarea,.confirm-wrapper input,.confirm-wrapper textarea,.copy-link-wrapper input,.copy-link-wrapper textarea,.wmd-prompt-dialog input,.wmd-prompt-dialog textarea{background-color:#f3f3f3;color:#454545;border:0;font-size:1rem;padding:1rem;margin:0;width:100%;border-radius:2px;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-family:Asap,sans-serif}#insert-image-dialog textarea,#update-avatar-dialog textarea,.confirm-wrapper textarea,.copy-link-wrapper textarea,.wmd-prompt-dialog textarea{outline:0;resize:none;white-space:initial;padding-bottom:10px}#insert-image-dialog textarea:focus,#update-avatar-dialog textarea:focus,.confirm-wrapper textarea:focus,.copy-link-wrapper textarea:focus,.wmd-prompt-dialog textarea:focus{outline:0}#insert-image-dialog .error,#update-avatar-dialog .error,.confirm-wrapper .error,.copy-link-wrapper .error,.wmd-prompt-dialog .error{text-align:center;color:#E7483B;display:block;padding:.5rem}.active.copy-prompt #insert-image-dialog,.active.copy-prompt .copy-link-wrapper,.active.copy-prompt .wmd-prompt-dialog{clip:auto;opacity:1;top:50%;left:50%}.confirm-wrapper{max-width:360px;padding:2.5rem}.confirm-wrapper h4{font-size:1.5rem}.confirm-wrapper p{margin-top:.5rem}.active.confirm-prompt .confirm-wrapper,.active.uploading-image #update-avatar-dialog{clip:auto;opacity:1;top:50%;left:50%}#update-avatar-dialog .invalid-file{color:rgba(254,101,97,0);-webkit-transition:color .4s ease-in;transition:color .4s ease-in}#update-avatar-dialog.invalid .invalid-file{color:#fe6561}#update-avatar-dialog button{margin-top:15px}#update-avatar-dialog .span{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#E7E7E7}#thankyou{position:fixed;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);top:-9999999px;left:-9999999px;font-size:1rem;background:rgba(0,0,0,.8);padding:10px 15px;border-radius:6px;z-index:860;color:#fff;opacity:0;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}#thankyou.active{top:50%;left:50%;opacity:1}.wrapper{min-height:100%;margin-bottom:0}.wrapper:before,footer{height:184px}footer{background:#161616;color:#fff;padding:30px 0;font-size:.9rem;text-align:center;line-height:1.5;width:100%}html{height:100%}.package-create h1,.sidebarTitle{margin:1em 0 10px;font-size:2.1rem}.has-sidebar .page-content,.projects-page .page-content{width:100%;display:table;overflow:hidden;height:auto}.has-sidebar .content-wrapper,.projects-page .content-wrapper{display:inline-block;max-width:100%;text-align:left;width:100%}.has-sidebar .sidebar-area,.projects-page .sidebar-area{display:table-cell;vertical-align:top;width:30%;background-color:#f5fbf1;height:100%}.has-sidebar .sidebar-area .sidebar-content,.projects-page .sidebar-area .sidebar-content{display:inline-block;overflow:hidden;width:100%;max-width:360px;text-align:center}.has-sidebar .main-area,.projects-page .main-area{width:70%;height:auto;display:table-cell;vertical-align:top;padding-bottom:200px}.has-sidebar .main-area .main-content,.projects-page .main-area .main-content{display:block;width:100%;padding-left:20px;padding-right:20px;max-width:880px;text-align:center;min-height:600px}.sidebar-content nav{margin:0;height:100%;z-index:1}.sidebar-content nav ul{list-style:none;margin-left:5px;padding-left:10px;-webkit-transition:max-height 300ms ease-in-out;transition:max-height 300ms ease-in-out}.sidebar-content nav ul li.active>a *{color:#6dbb32}.sidebar-content nav ul li.open>ul{max-height:600px}.sidebar-content nav ul h3,.sidebar-content nav ul h4,.sidebar-content nav ul h5{margin-top:10px;margin-bottom:5px;font-weight:400}.sidebar-content nav ul a{display:inline-block}.sidebar-content nav .level-1 h3{font-size:1.1em;color:rgba(0,0,0,.8);cursor:pointer}.sidebar-content nav .level-2{overflow:hidden;max-height:0;border-left:1px solid #bee6a0}.sidebar-content nav .level-2 h4{font-size:.9em;color:rgba(0,0,0,.8)}.sidebar-content nav .level-3{overflow:hidden;max-height:0;border-left:1px solid #daf0c9}.sidebar-content nav .level-3 h5{font-size:.8em;color:rgba(0,0,0,.8)}.profile nav h3:hover{opacity:.8}.profile nav h4{opacity:.7;margin:.5rem 0}.profile li h3{opacity:.5}.profile li.active a,.profile li.active h3,.profile li.open a,.profile li.open h3{opacity:1;color:#000!important}.profile li.active>ul{max-height:100%}.profile .profile-settings{position:relative;top:30px}.profile .profile-settings strong{display:block;margin:3rem 0 1rem}.profile .profile-settings h1{font-size:1.5rem}#registrationForm .profile .profile-settings input[type=submit],.profile .profile-settings #registrationForm input[type=submit],.profile .profile-settings .button,.profile .profile-settings .quick-menu .login input[type=submit],.profile .profile-settings .quick-menu .new-profile input[type=submit],.profile .profile-settings .tagAdd,.quick-menu .login .profile .profile-settings input[type=submit],.quick-menu .new-profile .profile .profile-settings input[type=submit]{padding:20px;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms{margin-top:30px}.profile .profile-settings-forms label{font-weight:600}#registrationForm .profile .profile-settings-forms input[type=submit],.profile .profile-settings-forms #registrationForm input[type=submit],.profile .profile-settings-forms .button,.profile .profile-settings-forms .quick-menu .login input[type=submit],.profile .profile-settings-forms .quick-menu .new-profile input[type=submit],.profile .profile-settings-forms .tagAdd,.quick-menu .login .profile .profile-settings-forms input[type=submit],.quick-menu .new-profile .profile .profile-settings-forms input[type=submit]{margin-top:60px}.profile .profile-settings-forms ::-webkit-input-placeholder{color:#000;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms :-moz-placeholder{color:#000;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms ::-moz-placeholder{color:#000;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms :-ms-input-placeholder{color:#000;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms div.profile-input{font-size:1rem;font-family:Asap,sans-serif;color:#000;position:relative;min-height:30px}.profile .profile-settings-forms div.profile-input+div.profile-input{margin-top:20px}.profile .profile-settings-forms div.profile-input#bio{min-height:200px}.profile .profile-settings-forms div.profile-input input,.profile .profile-settings-forms div.profile-input textarea{height:30px;line-height:30px;border:1px solid transparent;border-bottom-color:#e6e6e6;min-width:200px;width:140px;display:inline-block;padding:4px 8px 4px 0;color:#000;font-size:1rem;font-family:Asap,sans-serif;position:absolute;top:-8px;left:100px;-webkit-transition:all .2s;transition:all .2s}.profile .profile-settings-forms div.profile-input input:focus,.profile .profile-settings-forms div.profile-input textarea:focus{outline:0;border-bottom-color:#a3db78;color:#000}.profile .profile-settings-forms div.profile-input textarea{border:1px solid #e6e6e6;min-height:200px;left:102px;line-height:normal;display:inline-block;text-align:left;overflow:hidden;padding:8px;resize:none;max-width:100%;font-size:.9rem;width:138px}.profile .profile-settings-forms div.profile-input textarea:focus{border-color:#a3db78}.profile .profile-settings-forms div.profile-input input:hover{border-bottom-color:rgba(163,219,120,.78);color:gray}.profile .profile-settings-forms div.profile-input input:hover:focus{color:#000;border-bottom-color:#a3db78}.profile .profile-settings-forms div.profile-input input[type=password]{letter-spacing:1px;font-size:1.1rem}.profile .profile-settings-forms div.profile-input textarea:hover{border-color:rgba(163,219,120,.78);color:gray}.profile .profile-settings-forms div.profile-input textarea:hover:focus{color:#000;border-color:#a3db78}.profile .profile-settings-forms div.profile-input.warning input,.profile .profile-settings-forms div.profile-input.warning textarea{border-bottom-color:#fe6561;color:#fe6561}.profile .profile-settings-forms div.profile-input.warning textarea{border-color:#fe6561}.profile .profile-settings-forms div.profile-input.warning label{color:#fe6561}.profile .profile-settings-forms div.profile-input.confirm-password{display:none}.profile .profile-settings-forms div.profile-input.confirm-password.visible{display:block}.profile .profile-settings-forms label:after{content:":";display:inline-block}.profile .profile-settings-forms .avatar{margin:0 0 50px;position:relative;overflow:hidden;height:98px;line-height:98px}.profile .profile-settings-forms .avatar .ink{background:rgba(255,255,255,.5);overflow:hidden}.profile .profile-settings-forms .avatar label{float:left}.profile .profile-settings-forms .avatar .avatar-image{position:absolute;height:98px;width:98px;left:100px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.profile .profile-settings-forms .avatar .avatar-image img{border-radius:50%;height:auto;width:98px}.profile .profile-settings-forms .avatar .avatar-image span{opacity:0;border-radius:50%;position:absolute;height:100%;width:100%;top:0;left:0;background:rgba(0,0,0,.58);text-align:center;line-height:98px;font-size:.85rem;color:#fff;-webkit-transition:opacity .2s;transition:opacity .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.profile .profile-settings-forms .avatar .avatar-image:hover span{opacity:1;cursor:pointer}#registrationForm .profile-settings-packages input[type=submit],.profile-settings-packages #registrationForm input[type=submit],.profile-settings-packages .button,.profile-settings-packages .quick-menu .login input[type=submit],.profile-settings-packages .quick-menu .new-profile input[type=submit],.profile-settings-packages .tagAdd,.quick-menu .login .profile-settings-packages input[type=submit],.quick-menu .new-profile .profile-settings-packages input[type=submit]{margin-top:30px;margin-bottom:30px}.profile-settings-packages strong{margin-top:3rem;display:block;margin-bottom:1rem}.profile-settings-packages.packages-content{top:0}.box{background:#fff;padding:15px;margin-bottom:15px;-webkit-transition:box-shadow .2s;transition:box-shadow .2s;position:relative;height:100%;width:100%}.box .row{display:block;margin:0}.box .row [class*=col-]{margin:0}.box .forum-thread-text{margin-top:4px}.box .other,.profile-settings-following{margin-top:20px}.box i{font-size:3rem;color:#acacac}.box h3{margin-bottom:3px;font-size:1.3rem;font-weight:400}.box h3 a{color:rgba(0,0,0,.5)}.box h3 a:hover{color:#000}.box p{font-size:.8rem;color:#8f8f8f}.box:last-child{margin-bottom:0}.box .stats{font-size:.8rem;position:absolute;left:15px;bottom:0}.box .stats span{color:#7f7f7f}.box .stats span span,small.notification.success,small.success.notification__blue,small.success.notification__green,small.success.notification__red,small.success.notification__yellow{color:#000}.box .stats span:first-child{margin-right:8px}.box .stats span span:first-child{margin-right:0}.box .other{padding-top:10px;display:block;overflow:hidden;width:100%}.box .other .edit{font-size:.8rem;position:absolute;right:15px;bottom:0;opacity:.6;text-decoration:underline;display:inline-block}.box .other .edit:hover{opacity:1;text-decoration:none}.profile-settings-following li{font-size:1.05rem;margin-bottom:1rem;padding-bottom:1rem;padding-left:0;list-style:none;border-bottom:1px solid #f1f1f1}.profile-settings-following li:last-child{margin-bottom:0}.profile-settings-following li a{display:inline-block;font-size:.95rem;margin-bottom:1rem}.profile-settings-following li a:hover{text-decoration:none;background:0 0}.profile-settings-following li .unfollow{opacity:.7;margin-left:5px;margin-right:0}#registrationForm .profile-settings-following li input.unfollow[type=submit],.profile-settings-following li #registrationForm input.unfollow[type=submit],.profile-settings-following li .quick-menu .login input.unfollow[type=submit],.profile-settings-following li .quick-menu .new-profile input.unfollow[type=submit],.profile-settings-following li .unfollow.button,.profile-settings-following li .unfollow.tagAdd,.quick-menu .login .profile-settings-following li input.unfollow[type=submit],.quick-menu .new-profile .profile-settings-following li input.unfollow[type=submit]{display:block;font-size:.9rem;padding:12px 0;border:none}#registrationForm .profile-settings-following li input.unfollow[type=submit] .ink,.profile-settings-following li #registrationForm input.unfollow[type=submit] .ink,.profile-settings-following li .quick-menu .login input.unfollow[type=submit] .ink,.profile-settings-following li .quick-menu .new-profile input.unfollow[type=submit] .ink,.profile-settings-following li .unfollow.button .ink,.profile-settings-following li .unfollow.tagAdd .ink,.quick-menu .login .profile-settings-following li input.unfollow[type=submit] .ink,.quick-menu .new-profile .profile-settings-following li input.unfollow[type=submit] .ink{background:rgba(255,255,255,.23)}#registrationForm .profile-settings-following li input.unfollow[type=submit]:hover,.profile-settings-following li #registrationForm input.unfollow[type=submit]:hover,.profile-settings-following li .quick-menu .login input.unfollow[type=submit]:hover,.profile-settings-following li .quick-menu .new-profile input.unfollow[type=submit]:hover,.profile-settings-following li .unfollow.button:hover,.profile-settings-following li .unfollow.tagAdd:hover,.quick-menu .login .profile-settings-following li input.unfollow[type=submit]:hover,.quick-menu .new-profile .profile-settings-following li input.unfollow[type=submit]:hover{background:0 0;border:none;color:#000;opacity:1}small.notification,small.notification__blue,small.notification__green,small.notification__red,small.notification__yellow{display:inline-block;position:absolute;line-height:43px;padding:0 10px;margin:60px 0 0}small.alert.notification__blue,small.alert.notification__green,small.alert.notification__red,small.alert.notification__yellow,small.notification.alert{color:#fe6561}.profile-settings #open-for-colab{width:auto;left:200px;top:-10px}.profile-settings #contris ul li{list-style:none}.profile-settings #contris ul a.contri-name{text-decoration:none;line-height:1.7rem;color:#000;font-size:.8rem}.profile-settings #contris ul a.contri-name:hover{text-decoration:underline}.profile-settings #contris ul a.remove-contri{display:inline-block;text-decoration:none;font-size:.75rem;margin-left:.7rem;margin-right:.5rem;color:rgba(0,0,0,.5);max-height:14px;cursor:pointer}.profile-settings #contris ul a.remove-contri:hover{color:#000}.profile-settings #contris ul a.remove-contri i{display:inline-block;font-size:14px;margin-right:5px;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px)}.profile-settings #contris #forums li{list-style:none}.profile-settings #contris #forums a.remove-forum{display:inline-block;text-decoration:none;font-size:.75rem;margin-left:.7rem;margin-right:.5rem;color:rgba(0,0,0,.5);max-height:14px;cursor:pointer}.profile-settings #contris #forums a.remove-forum:hover{color:#000}.profile-settings #contris #forums a.remove-forum i{display:inline-block;font-size:14px;margin-right:5px;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px)}.markdown-syntax a{text-decoration:none}.markdown-syntax a.absent{color:#c00}.markdown-syntax a.anchor{display:block;padding-left:30px;margin-left:-30px;cursor:pointer;position:absolute;top:0;left:0;bottom:0}.markdown-syntax h1,.markdown-syntax h2,.markdown-syntax h3,.markdown-syntax h4,.markdown-syntax h5,.markdown-syntax h6{margin:1em 0 10px;padding:0;font-weight:700;-webkit-font-smoothing:antialiased;cursor:text;position:relative;color:rgba(0,0,0,.8)}.markdown-syntax h1:hover a.anchor,.markdown-syntax h2:hover a.anchor,.markdown-syntax h3:hover a.anchor,.markdown-syntax h4:hover a.anchor,.markdown-syntax h5:hover a.anchor,.markdown-syntax h6:hover a.anchor{background:url(assets/images/documentation/para.png) 10px center no-repeat;text-decoration:none}.markdown-syntax h1 code,.markdown-syntax h1 tt,.markdown-syntax h2 code,.markdown-syntax h2 tt,.markdown-syntax h3 code,.markdown-syntax h3 tt,.markdown-syntax h4 a,.markdown-syntax h4 code,.markdown-syntax h4 tt,.markdown-syntax h5 code,.markdown-syntax h5 tt,.markdown-syntax h6 code,.markdown-syntax h6 tt{font-size:inherit}.markdown-syntax *+h2{margin-top:3rem}.markdown-syntax *+h3,.markdown-syntax *+h4{margin-top:2rem}.markdown-syntax img{margin:1.5rem 0;max-width:100%}.markdown-syntax p{margin:10px 0;line-height:1.5;word-break:break-word;color:#000}.markdown-syntax li{padding:0 0 3px;color:#000}.markdown-syntax h1{font-size:2.1rem}.markdown-syntax h2{font-size:1.7rem}.markdown-syntax h3{font-size:1.6rem}.markdown-syntax h4{font-size:1.4rem}.markdown-syntax h5{font-size:1.2}.markdown-syntax h6{font-size:1.1rem}.markdown-syntax blockquote,.markdown-syntax dl,.markdown-syntax ol,.markdown-syntax pre,.markdown-syntax table,.markdown-syntax ul{margin:0 0 1rem}.markdown-syntax hr{border-top:1px #f5f5f5 solid;margin:3em 0;color:#871A1A;height:0;padding:0}.markdown-syntax h1 p,.markdown-syntax h2 p,.markdown-syntax h3 p,.markdown-syntax h4 p,.markdown-syntax h5 p,.markdown-syntax h6 p,.markdown-syntax ol :first-child,.markdown-syntax ul :first-child{margin-top:0}.markdown-syntax a:first-child h1,.markdown-syntax a:first-child h2,.markdown-syntax a:first-child h3,.markdown-syntax a:first-child h4,.markdown-syntax a:first-child h5,.markdown-syntax a:first-child h6,.markdown-syntax body>h1:first-child,.markdown-syntax body>h1:first-child+h2,.markdown-syntax body>h2:first-child,.markdown-syntax body>h3:first-child,.markdown-syntax body>h4:first-child,.markdown-syntax body>h5:first-child,.markdown-syntax body>h6:first-child{margin-top:0;padding-top:0}.markdown-syntax li p.first{display:inline-block}.markdown-syntax ol,.markdown-syntax ul{padding-left:30px}.markdown-syntax dl,.markdown-syntax dl dt:first-child{padding:0}.markdown-syntax ol :last-child,.markdown-syntax ul :last-child{margin-bottom:0}.markdown-syntax dl dt{font-size:14px;font-weight:700;font-style:italic;padding:0;margin:15px 0 5px}.markdown-syntax dl dt>:first-child{margin-top:0}.markdown-syntax dl dt>:last-child{margin-bottom:0}.markdown-syntax dl dd{margin:0 0 15px;padding:0 15px}.markdown-syntax blockquote>:first-child,.markdown-syntax dl dd>:first-child,.markdown-syntax table tr td:first-child,.markdown-syntax table tr th:first-child{margin-top:0}.markdown-syntax blockquote>:last-child,.markdown-syntax dl dd>:last-child,.markdown-syntax table tr td:last-child,.markdown-syntax table tr th:last-child{margin-bottom:0}.markdown-syntax blockquote{border-left:4px solid #ddd;padding:0 15px;color:#777}.markdown-syntax table{padding:0}.markdown-syntax table tr{border-top:1px solid #ccc;background-color:#fff;margin:0;padding:0}.markdown-syntax table tr td,.markdown-syntax table tr th{border:1px solid #ccc;text-align:left;margin:0;padding:6px 13px}.markdown-syntax table tr:nth-child(2n){background-color:#f8f8f8}.markdown-syntax table tr th{font-weight:700}.markdown-syntax span.frame{display:block;overflow:hidden}.markdown-syntax span.frame>span{border:1px solid #ddd;display:block;float:left;overflow:hidden;margin:13px 0 0;padding:7px;width:auto}.markdown-syntax span.frame span img{display:block;float:left}.markdown-syntax span.frame span span{clear:both;color:#333;display:block;padding:5px 0 0}.markdown-syntax span.align-center{display:block;overflow:hidden;clear:both}.markdown-syntax span.align-center>span{display:block;overflow:hidden;margin:13px auto 0;text-align:center}.markdown-syntax span.align-center span img{margin:0 auto;text-align:center}.markdown-syntax span.align-right{display:block;overflow:hidden;clear:both}.markdown-syntax span.align-right>span{display:block;overflow:hidden;margin:13px 0 0;text-align:right}.markdown-syntax span.align-right span img{margin:0;text-align:right}.markdown-syntax span.float-left{display:block;margin-right:13px;overflow:hidden;float:left}.markdown-syntax span.float-left span{margin:13px 0 0}.markdown-syntax span.float-right{display:block;margin-left:13px;overflow:hidden;float:right}.markdown-syntax span.float-right>span{display:block;overflow:hidden;margin:13px auto 0;text-align:right}.markdown-syntax code{background:0 0}.markdown-syntax code,.markdown-syntax tt{margin:0 2px;padding:1px 5px;white-space:pre-wrap;border:1px solid #000;background-color:rgba(255,255,255,0);border-radius:3px}.markdown-syntax pre{overflow:auto;display:block;font-family:Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;background-color:#333;color:#fff;font-size:.9rem;line-height:1.4em;background-clip:padding-box;padding:20px 30px;white-space:pre;margin:20px -15px}.markdown-syntax pre code{margin:0;padding:0;white-space:pre;background:0 0}.markdown-syntax pre code,.markdown-syntax pre tt{background-color:transparent;border:none}.documentation .markdown-syntax pre{margin:20px 0}.markdown-editor{position:fixed;bottom:-100%;max-height:100%;width:100%;padding:.2rem;background-color:rgba(252,252,252,.94);box-shadow:0 -2px 6px 0 rgba(0,0,0,.08);-webkit-transition:bottom .6s cubic-bezier(.7,0,.3,1),top .6s cubic-bezier(.7,0,.3,1);transition:bottom .6s cubic-bezier(.7,0,.3,1),top .6s cubic-bezier(.7,0,.3,1);z-index:800}.markdown-editor.write{bottom:0;overflow-y:scroll;visibility:visible}.markdown-editor input,.markdown-editor select,.markdown-editor textarea{border:1px solid transparent}.markdown-editor input:active,.markdown-editor input:focus,.markdown-editor select:active,.markdown-editor select:focus,.markdown-editor textarea:active,.markdown-editor textarea:focus{outline:0}.markdown-editor input.warning,.markdown-editor select.warning,.markdown-editor textarea.warning{border:1px solid #fe6561!important}.markdown-editor .wmd-button{position:relative;margin-right:15px;left:0!important;font-size:1.4em;top:10px;cursor:pointer;float:left;border-radius:20px;-webkit-transition:top 300ms cubic-bezier(.7,0,.3,1),opacity 300ms cubic-bezier(.7,0,.3,1);transition:top 300ms cubic-bezier(.7,0,.3,1),opacity 300ms cubic-bezier(.7,0,.3,1)}.markdown-editor .reply-to p{font-size:.8rem;overflow:hidden;color:#000;background:0 0}.markdown-editor .reply-to span{font-weight:800}.markdown-editor #wmd-button-bar{position:relative;height:30px}.markdown-editor .input-row label{display:block;margin-bottom:5px;color:#a9a9a9;font-size:.8rem}.markdown-editor .wmd-button-row{list-style:none}.markdown-editor .wmd-button-row li:hover span{color:#000}.markdown-editor .wmd-button-row li span{background-image:none;color:#727272;-webkit-transition:color .2s ease-in;transition:color .2s ease-in}.markdown-editor .wmd-button-row li span:before{font-family:our-umbraco!important;content:attr(data-icon);font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.markdown-editor .wmd-spacer{float:left;position:relative;width:27px;display:block;opacity:0;height:20px}.markdown-editor #wmd-input{height:300px;width:100%;padding:.5rem;font-size:.8rem;color:#000;background:#fff;border:2px solid #f5f5f5;-webkit-transition:border-color .2s;transition:border-color .2s}.markdown-editor #wmd-preview{width:100%;min-height:300px;max-height:300px;overflow-y:scroll;padding:.5rem 20px;font-size:.8rem;color:#000;background:#ededed}.markdown-editor .markdown-close{position:absolute;right:1.5rem;top:2rem;font-size:28px;cursor:pointer;opacity:.6;-webkit-transition:opacity .3s;transition:opacity .3s}.markdown-editor .markdown-close:hover{opacity:1}.markdown-editor .draft{position:fixed;bottom:-40px;right:30px;background-color:#a3db78;color:#fff;padding:12px 20px;cursor:pointer;opacity:0;font-size:.9rem;font-weight:700;-webkit-transition:opacity .3s cubic-bezier(.7,0,.3,1),bottom .6s cubic-bezier(.7,0,.3,1),box-shadow .2s ease-in-out;transition:opacity .3s cubic-bezier(.7,0,.3,1),bottom .6s cubic-bezier(.7,0,.3,1),box-shadow .2s ease-in-out}.markdown-editor .draft.show{bottom:30px;opacity:1}.markdown-editor .draft.show:hover{background:#9bd86c}.markdown-editor #topic-title,.markdown-editor select{overflow:hidden;width:100%;color:#000;padding:.5rem;font-size:.8rem;background:#fff}.markdown-editor .markdown-control{font-family:Asap,sans-serif;font-size:.8rem;-webkit-appearance:none}.markdown-editor select{position:relative;border:none;border-radius:0}.markdown-editor select::after{position:absolute;display:block;top:0;right:0;content:"<";color:#000}.markdown-editor #topic-category option.frontend{background:#4ea7ff;color:#fff}.markdown-editor #topic-category option.core{background:#ff661b;color:#fff}.markdown-editor #topic-category option.azure{background:#1ed45c;color:#fff}.markdown-editor #topic-submit{border:none;background:#2EB369;color:#fff;font-size:.9rem;padding:10px;width:100%;max-width:140px;font-family:Asap,sans-serif;cursor:pointer}.markdown-editor #topic-submit:hover{background:#33c775}.markdown-editor #mobile-preview{border:none;background:0 0;-webkit-appearance:none;text-align:right;float:right;opacity:.4;cursor:pointer;-webkit-transition:opacity .3s;transition:opacity .3s}.markdown-editor #mobile-preview i{font-size:24px;display:inline-block;-webkit-transform:translate(-3px,5px);-ms-transform:translate(-3px,5px);transform:translate(-3px,5px)}.markdown-editor #mobile-preview span{font-size:14px}.markdown-editor #mobile-preview:hover{opacity:1}.markdown-editor.mobile-preview #mobile-preview{color:#a3db78;opacity:1}.wmd-prompt-background{background-color:#000}#insert-image-dialog{position:fixed;z-index:1001}#insert-image-dialog.show{clip:auto;opacity:1;top:50%;left:50%}.wmd-prompt-dialog{opacity:1;clip:auto;margin:0!important}.wmd-prompt-dialog input[type=text]{text-align:left}.markdown-spacer{position:relative;height:0;-webkit-transition:height .6s cubic-bezier(.7,0,.3,1);transition:height .6s cubic-bezier(.7,0,.3,1)}.markdown-spacer.write{height:500px}.category,.version{display:inline-block;margin:0}.category a,.category span.cat,.version a,.version span.cat{display:inline-block;font-weight:700;border-radius:2px;font-size:.7rem;padding:3px 5px;text-decoration:none;text-transform:capitalize;-webkit-transition:background .2s;transition:background .2s;background:#4ea7ff;color:#fff}.category a:hover,.category span.cat:hover,.version a:hover,.version span.cat:hover{background:#68b4ff}.category.default a,.category.default span.cat,.version.default a,.version.default span.cat{background:#4ea7ff;color:#fff}.category.default a:hover,.category.default span.cat:hover,.version.default a:hover,.version.default span.cat:hover{background:#68b4ff}.category.frontend a,.category.frontend span.cat,.version.frontend a,.version.frontend span.cat{background:#4ea7ff;color:#fff}.category.frontend a:hover,.category.frontend span.cat:hover,.version.frontend a:hover,.version.frontend span.cat:hover{background:#68b4ff}.category.core a,.category.core span.cat,.version.core a,.version.core span.cat{background:#ff661b;color:#fff}.category.core a:hover,.category.core span.cat:hover,.version.core a:hover,.version.core span.cat:hover{background:#ff7735}.category.azure a,.category.azure span.cat,.version.azure a,.version.azure span.cat{background:#1ed45c;color:#fff}.category.azure a:hover,.category.azure span.cat:hover,.version.azure a:hover,.version.azure span.cat:hover{background:#2be169}.version a,.version span.cat{background:#cbcbcb;color:#fefefe}.version a:hover,.version span.cat:hover{background:#d8d8d8}.version.default a,.version.default span.cat{background:0 0;border:1px solid #cbcbcb;color:#b2b2b2}.version.default a:hover,.version.default span.cat:hover{color:#989898;background:0 0}.roles span{border:2px solid #2f6bff;color:#2f6bff;font-size:.6rem;font-weight:700;padding:2px 6px;display:inline-block}.roles span:hover{cursor:default}.roles span+span{margin-left:5px}.roles span:first-child{margin-left:0}.roles span.standard{display:none}.roles span.hq{border-color:#fe6561;color:#fe6561;text-transform:uppercase}.roles span.admin{border-color:#43cfcf;color:#43cfcf;text-transform:capitalize}.forum-overview .forum-head,.leaderboard strong,section.forum small{letter-spacing:.5px;text-transform:uppercase}.roles span.mvp{border-color:#df89ff;color:#df89ff;text-transform:uppercase}.roles span.core{border-color:#e8b142;color:#e8b142;text-transform:capitalize}.roles span.c-trib,.roles span.corecontrib{border-color:#5dacff;color:#5dacff;text-transform:capitalize}.roles span.corecontrib{visibility:hidden;position:relative}.roles span.corecontrib:after{visibility:visible;position:absolute;top:-2px;left:-2px;display:block;content:"C-trib";border:inherit inherit inherit;padding:inherit}.comments{list-style-type:none;padding:0 20px;position:relative;margin:0 0 0 10px}.comments .comment{margin-bottom:75px;position:relative;border-radius:2px}.comments .comment .comment-inner{padding:15px;background:rgba(127,148,153,.08);border:1px solid rgba(127,148,153,.15);border-bottom:none;border-top:none;-webkit-transition:all .2s;transition:all .2s}.comments .comment.solution{background:rgba(163,219,120,.23)}.comments .comment.solution .photo img{padding:2px;border:1px solid #a3db78}.comments .comment.solution .meta{border:1px solid rgba(163,219,120,.3);border-bottom:none}.comments .comment.solution .comment-inner{border:1px solid rgba(163,219,120,.3);border-bottom:none;border-top:none}.comments .comment.solution .actions{border-top:none}.comments .comment.solution .body a{color:#000;word-wrap:break-word;text-decoration:underline}.comments .comment.solution .body a:hover{text-decoration:none}.comments .comment .photo{position:absolute;left:-22px;top:10px;z-index:10}.comments .comment .photo span{display:none}.comments .comment .photo img{overflow:hidden;max-width:32px;border-radius:50%;height:auto;-webkit-transition:box-shadow .2s;transition:box-shadow .2s}.comments .comment .highfive{position:absolute;top:100%;left:0;right:0;font-size:1rem;text-decoration:none;padding:10px 0;background:rgba(85,157,255,.14);border-right:1px solid rgba(85,157,255,.2);border-left:1px solid rgba(85,157,255,.2);border-bottom:1px solid rgba(85,157,255,.2);color:#5204d4;font-weight:700;text-align:center}.comments .comment .highfive a{display:block}.comments .comment .highfive .highfive-count,.comments .comment .highfive img{display:none}.comments .comment .highfive img{-webkit-transition:-webkit-transform .2s;transition:transform .2s;max-width:22px;height:auto}.comments .comment .highfive a{text-decoration:none;opacity:.7;-webkit-transition:all .2s;transition:all .2s}.comments .comment .highfive:hover a{opacity:1;color:#000}.comments .comment .body{white-space:normal}.comments .comment .body li,.comments .comment .body p{line-height:1.5;font-size:1rem}.comments .comment .body *+*{margin-top:15px}.comments .comment .body a{color:#6dbb32;word-wrap:break-word}.comments .comment .body a:hover{text-decoration:underline}.comments .comment .meta{padding:.7rem 20px;font-size:.9rem;overflow:hidden;color:#7F9499;background:rgba(127,148,153,.08);border:1px solid rgba(127,148,153,.15);border-bottom:none;-webkit-transition:all .2s;transition:all .2s}.comments .comment .meta .profile,.comments .comment .meta .time{float:left}.comments .comment .meta .profile{width:auto}.comments .comment .meta .profile a{color:#445255;text-decoration:none;display:block}.comments .comment .meta .profile a:hover{text-decoration:underline}.comments .comment .actions a,.comments .comment .meta .gotosolution:hover,.comments .comment .meta .time,.package-create .buttons a:hover,.package-create .stepNavigation li a,.package-detail-sidebar .package-creator .package-creator-information h3 a,.pagination a,.replybutton.notloggedin a:hover{text-decoration:none}.comments .comment .meta .profile span{margin-right:.1rem}.comments .comment .meta .time{float:right}.comments .comment .meta+.body{padding-top:1rem}.comments .comment .meta .gotosolution{margin-left:5px;color:#000;float:right}.comments .comment .meta .hide-xs{display:none}.comments .comment.question .topic{font-size:1.1rem}.comments .comment .body-meta{margin-bottom:1rem;padding-bottom:1rem;overflow:hidden;border-bottom:1px solid transparent}.comments .comment .body-meta .category a,.comments .comment .body-meta .version a{font-size:.7rem}.comments .comment .body-meta .category{margin-bottom:.5rem}.comments .comment .body-meta .categories,.comments .comment .body-meta .topic{display:inline-block;vertical-align:middle}.comments .comment .actions,.comments .comment .actions a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.comments .comment .body-meta .topic{width:100%;margin-bottom:.2rem}.comments .comment .body-meta .categories{width:100%}.comments .comment .actions{display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:10px 20px;background:rgba(127,148,153,.08);border:1px solid rgba(127,148,153,.15);border-top:none;-webkit-transition:background .2s;transition:background .2s}.comments .comment .actions a{display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;cursor:pointer;color:rgba(0,0,0,.5);font-size:.9rem}.comments .comment .actions a:hover{color:#000}.comments .comment .actions a span{display:none}.comments .comment .actions a i{display:inline-block;font-size:1.4rem}.comments .alert{background:rgba(235,116,57,.1);padding:15px;border-top:3px solid rgba(235,116,57,.25);color:#db5716}.comments .level-2{margin-left:15px}.replybutton{text-align:center;width:100%;margin:0 auto}#registrationForm .replybutton input[type=submit],.quick-menu .login .replybutton input[type=submit],.quick-menu .new-profile .replybutton input[type=submit],.replybutton #registrationForm input[type=submit],.replybutton .button,.replybutton .quick-menu .login input[type=submit],.replybutton .quick-menu .new-profile input[type=submit],.replybutton .tagAdd{display:inline-block;margin:0 auto 50px;text-align:center}#registrationForm .replybutton input.reply[type=submit],.quick-menu .login .replybutton input.reply[type=submit],.quick-menu .new-profile .replybutton input.reply[type=submit],.replybutton #registrationForm input.reply[type=submit],.replybutton .button.reply,.replybutton .quick-menu .login input.reply[type=submit],.replybutton .quick-menu .new-profile input.reply[type=submit],.replybutton .reply.tagAdd{font-size:.85rem}.replybutton.notloggedin{background:rgba(235,116,57,.1);border:2px solid rgba(235,116,57,.2);padding:30px 0;margin:30px auto;width:calc(100% - 40px)}.pagination{margin-top:60px;margin-left:10px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.pagination a{padding:12px 16px;border:1px solid #b1b1b1;border-radius:3px;background:#fff;display:inline-block;margin-top:5px;margin-left:5px;font-size:.9rem;font-weight:400;color:#b1b1b1}.pagination a:first-of-type,.pagination a:last-of-type{margin-left:0}.pagination a:hover{border-color:#717171;color:#7e7e7e}.pagination a.active{background:#2EB369;color:#fff;font-weight:700;border-color:#2EB369}.pagination a.active:hover{cursor:default}.pagination span{margin:0 8px;font-size:1.1rem;letter-spacing:1px}.pagination .next:after,.pagination .prev:before{font-weight:400}.pagination .next:hover,.pagination .prev:hover{border-color:#7e7e7e;color:#7e7e7e}body.packages nav h3:hover{opacity:.8}body.packages nav h4{opacity:.7;margin:.5rem 0}body.packages li h3{opacity:.5}body.packages li.active a,body.packages li.active h3,body.packages li.open a,body.packages li.open h3{opacity:1;color:#000!important}body.packages li.active>ul{max-height:100%}.packages-content .search-big{margin-bottom:0;margin-top:20px}.packages-content h1{margin:1em 0 10px;font-size:2.1rem}.packages-content .package{margin-bottom:15px;padding:20px;-webkit-transition:all .1s linear;transition:all .1s linear;cursor:pointer;position:relative;overflow:hidden;border-radius:3px;border:1px solid #e9e9e9}.packages-content .package:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.packages-content .package:hover .icon{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.packages-content .box{border:none;border-bottom:1px solid #f5f5f5;width:100%}.packages-content .box h3{font-size:1.1rem;margin-bottom:.5rem;font-weight:600}.packages-content .box h3 a{color:rgba(0,0,0,.8)}.packages-content .box h3 a:hover{color:#a3db78}.packages-content .box img{max-width:100%;height:auto;display:block;vertical-align:middle}.packages-content .box .col-xs-2{vertical-align:middle!important;padding:0!important}.packages-content .box .other{margin-top:30px}.packages-content .box .stats{left:calc(16.666666666666664% + 15px);font-family:Consolas,"Liberation Mono",Menlo,Monaco,Courier,monospace;font-size:.75rem}.package-create input,.package-create textarea,.search-big input{font-family:Asap,sans-serif}.packages-content .box .stats i{margin-left:3px;font-size:.9rem}.packages-content .box .stats span:first-child{margin-right:0}.packages-content .box p{font-size:.9rem;color:#000;opacity:1}.packages-content .box .package-badge{position:absolute;right:15px;bottom:-3px}.packages-content .box .downloads,.packages-content .box .karma{color:#000}.packages-content .box .downloads span,.packages-content .box .karma span{-webkit-transform:translate(0,2px);-ms-transform:translate(0,2px);transform:translate(0,2px);display:inline-block}.packages-content .box.liked .karma i{color:#fe6561}.packages-content .name{font-size:1rem;line-height:1.3;font-weight:700}.packages-content .description{font-size:.8rem;margin-top:3px;max-height:28px;overflow:hidden}.package-badge{font-size:.7rem;overflow:hidden;font-weight:700;color:#fff}.package-badge span{background:#484848;background:-webkit-linear-gradient(top,#545454 0,#2f2f2f 100%);background:linear-gradient(to bottom,#545454 0,#2f2f2f 100%);padding:5px 7px;margin:0;display:inline-block;float:left}.package-badge span.package-name{border-top-left-radius:3px;border-bottom-left-radius:3px}.package-badge span.package-number{background:#2EB369;background:-webkit-linear-gradient(top,#59d490 0,#2eb369 100%);background:linear-gradient(to bottom,#59d490 0,#2eb369 100%);border-top-right-radius:3px;border-bottom-right-radius:3px}.package-badge.blue .package-number{background:#2f6bff;background:-webkit-linear-gradient(top,#7ca1ff 0,#2f6bff 100%);background:linear-gradient(to bottom,#7ca1ff 0,#2f6bff 100%)}#registrationForm input.package-badge[type=submit] .package-number,.package-badge.green .package-number,.quick-menu .login input.package-badge[type=submit] .package-number,.quick-menu .new-profile input.package-badge[type=submit] .package-number{background:#2EB369;background:-webkit-linear-gradient(top,#59d490 0,#2eb369 100%);background:linear-gradient(to bottom,#59d490 0,#2eb369 100%)}.package-badge.red .package-number{background:#fe6561;background:-webkit-linear-gradient(top,#feafad 0,#fe6561 100%);background:linear-gradient(to bottom,#feafad 0,#fe6561 100%)}.package-badge.orange .package-number{background:#EB7439;background:-webkit-linear-gradient(top,#f2a57e 0,#eb7439 100%);background:linear-gradient(to bottom,#f2a57e 0,#eb7439 100%)}.package-badge.our .package-number{background:#a3db78;background:-webkit-linear-gradient(top,#ccebb4 0,#a3db78 100%);background:linear-gradient(to bottom,#ccebb4 0,#a3db78 100%);color:#000}.search-big{display:inline-block;position:relative;width:100%;margin-bottom:20px}.search-big input{-webkit-appearance:none;border-radius:0;border:1px solid #cfcfcf;padding:20px 6px;outline:0;display:block;width:100%;font-size:1.3rem;min-height:60px;z-index:20;position:relative}.search-big input+label{position:absolute;z-index:10;-webkit-transform:translate(0,-10px);-ms-transform:translate(0,-10px);transform:translate(0,-10px);-webkit-transition:-webkit-transform .4s cubic-bezier(.7,0,.3,1),opacity .3s cubic-bezier(.7,0,.3,1);transition:transform .4s cubic-bezier(.7,0,.3,1),opacity .3s cubic-bezier(.7,0,.3,1);opacity:0;color:#ccc;font-size:.8rem}.search-big input:valid+label{opacity:1;top:3px;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.search-big input:focus+label{color:#000;-webkit-transform:translate(0,-20px);-ms-transform:translate(0,-20px);transform:translate(0,-20px)}.search-big input:focus{border-color:#a3db78}.package-create{position:relative;top:15px;max-width:100%}.package-create h1,.package-create h2,.package-create h3,.package-create legend{color:rgba(0,0,0,.8);font-weight:700}.package-create h1{margin-top:0}.package-create h2{font-size:1.6rem;margin:0 0 10px}.package-create h3,.package-create legend{font-size:1.2rem;margin:0 0 10px}.package-create p{font-size:.95rem;line-height:1.5;color:#000}.package-create p+p{margin-top:20px}.package-create .stepNavigation{list-style:none;margin-bottom:1rem;padding-bottom:1rem;margin-top:1.5rem;border-bottom:1px solid rgba(0,0,0,.18)}.package-create .stepNavigation li{display:inline-block;margin-right:.5rem;color:#000;font-size:.75rem}.package-create .stepNavigation li.current{color:rgba(0,0,0,.8);font-weight:700}.package-create .stepNavigation li:last-child{margin-right:0}.package-create .stepNavigation li a:hover{color:#000}.package-create fieldset{padding:0 0 1.5rem;margin:1.5rem 0 0;border:none;border-bottom:1px solid #f5f5f5;max-width:100%}.package-create label{color:#000;width:10rem;padding:1.5rem .5rem .2rem 0;display:inline-block;font-size:1rem;font-weight:700}.package-create label.pickfile{font-size:.9rem;padding:0;color:#000}.package-create small{font-size:.85rem;color:#000;margin:5px 0 0;max-width:90%}.package-create input.error,.package-create input.warning,.package-create textarea.error,.package-create textarea.warning{border-color:#fe6561!important}.package-create input[type=text],.package-create textarea{font-size:.95rem;color:#000;border:1px solid #e8e8e8}.package-create input[type=text]:active,.package-create input[type=text]:focus,.package-create textarea:active,.package-create textarea:focus{outline:0;border-color:#a3db78}.package-create input[type=text]{padding:12px 10px;outline:0;width:30rem}.package-create input[type=checkbox]+label{font-size:.9rem;color:rgba(0,0,0,.8);margin-left:.5rem}.package-create input[type=checkbox]:checked+label{font-weight:700}.package-create input[type=checkbox]+label+small,.package-create select+small{top:-20px}.package-create textarea{padding:8px}.package-create ::-webkit-input-placeholder{color:red}.package-create #ContentPlaceHolderDefault_Main_Editor_5_ctl00_Collab+label{padding:0}.package-create .buttons{margin-top:2rem;text-align:right}#registrationForm .package-create .buttons input[type=submit],.package-create .buttons #registrationForm input[type=submit],.package-create .buttons .button,.package-create .buttons .quick-menu .login input[type=submit],.package-create .buttons .quick-menu .new-profile input[type=submit],.package-create .buttons .tagAdd,.quick-menu .login .package-create .buttons input[type=submit],.quick-menu .new-profile .package-create .buttons input[type=submit]{font-size:.9rem}.package-create .buttons a{font-size:.9rem;color:#000}.package-create .buttons a:hover{color:rgba(0,0,0,.8)}.package-create .pickversionWrapper{overflow:hidden}.package-create .pickversion{font-size:.95rem;color:#000;float:left}.package-create .pickversion input[type=checkbox]{margin-right:.5rem;margin-bottom:.5rem}.package-create .pickversion input[type=checkbox]:checked+*{font-weight:700}.package-create #pickNetVersion label,.package-create #pickTrustLevel label,.package-create #pickVersion label{padding-bottom:.5rem;padding-top:0}.package-create #pickVersion{margin-top:0;float:left;display:block}.package-create.complete fieldset{margin-top:2rem}.package-create.complete fieldset label{padding:1.5rem 0 0}.package-create.complete fieldset p+p{margin:.5rem 0 0}.dataTable{border:1px solid #ddd;width:100%;margin-bottom:1rem}.dataTable td,.dataTable th{padding:8px!important;font-size:.8rem}.dataTable th{color:#fff;background:#a3db78;font-size:14px}.dataTable tbody tr{-webkit-transition:background .3s ease-in;transition:background .3s ease-in}.dataTable tbody tr:hover{background:#ddd}.dataTable tbody tr.totals{font-weight:700;font-size:14px}.dataTable tbody tr.totals:hover td{background:#82B84F}.dataTable tbody tr.totals td{border-top:3px solid #a3db78}.dataTable .count,.dataTable .dataTable .center{text-align:center}.dataTable .dataTable .right,.dataTable .money{text-align:right}.eligibilityNotification{border:2px solid #a3db78;background:rgba(163,219,120,.18);padding:15px}.eligibilityNotification li,.eligibilityNotification p{font-size:.9rem;color:#000}.eligibilityNotification ul{list-style:none;margin:.8rem 0}.eligibilityNotification li{margin-left:.3rem;font-weight:700}.eligibilityNotification.notEligible{border-color:#EB7439;background:rgba(235,116,57,.18)}div.ac_results{background:#fff;padding:20px;border:1px solid #f5f5f5}div.ac_results li{padding-bottom:.5rem}.tagAdd{padding:12px 20px!important;float:right}.package-detail{padding-top:0;position:relative}.package-detail .vote{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:20px}.package-detail .vote i{font-size:1.1rem;color:rgba(0,0,0,.3);display:inline-block;margin-right:5px}.package-detail .vote i.liked,.package-detail .vote:hover i{color:#f64051}.package-detail .vote:hover{cursor:pointer}.package-detail .vote:hover i.liked{color:rgba(0,0,0,.3)}.package-detail .vote:hover span{color:#000}.package-detail .vote span{font-size:.9rem;color:rgba(0,0,0,.4)}.package-detail .markdown-syntax pre{margin:0 0 1rem}.package-detail .package-forum-activity{overflow:hidden}.package-detail .package-forum-activity .goto{text-align:right;font-size:.9rem;color:#000;float:right}.package-detail .package-forum-activity .goto:hover{text-decoration:none;color:rgba(0,0,0,.8)}.package-detail .forum-thread{padding:10px}.package-detail .forum-thread img{max-width:60px;height:auto}.package-detail .forum-thread .forum-thread-text{margin-top:.7rem}.package-detail .forum-thread .forum-thread-text h3{font-size:.9rem;color:rgba(0,0,0,.8)}.package-detail .forum-thread .forum-thread-text p{color:#000}.package-detail-sidebar{font-size:.9rem;line-height:1.5;color:#000;margin-top:2rem}#registrationForm .package-detail-sidebar input[type=submit],.package-detail-sidebar #registrationForm input[type=submit],.package-detail-sidebar .button,.package-detail-sidebar .quick-menu .login input[type=submit],.package-detail-sidebar .quick-menu .new-profile input[type=submit],.package-detail-sidebar .tagAdd,.quick-menu .login .package-detail-sidebar input[type=submit],.quick-menu .new-profile .package-detail-sidebar input[type=submit]{max-width:80%;padding:15px 20px;font-size:1rem;margin:.5rem 0 2.5rem}#registrationForm .package-detail-sidebar input[type=submit] i,.package-detail-sidebar #registrationForm input[type=submit] i,.package-detail-sidebar .button i,.package-detail-sidebar .quick-menu .login input[type=submit] i,.package-detail-sidebar .quick-menu .new-profile input[type=submit] i,.package-detail-sidebar .tagAdd i,.quick-menu .login .package-detail-sidebar input[type=submit] i,.quick-menu .new-profile .package-detail-sidebar input[type=submit] i{font-size:1.5rem;position:relative;display:inline-block;top:4px;left:5px}.package-detail-sidebar h2,.package-detail-sidebar h3,.package-detail-sidebar span,.package-detail-sidebar strong{color:rgba(0,0,0,.8)}.package-detail-sidebar h2{font-size:1.5rem;margin-bottom:1rem}.package-detail-sidebar h3{margin-bottom:.3rem;font-size:1.08rem;font-weight:700}.package-detail-sidebar ul{margin-bottom:.8rem}.package-detail-sidebar li{list-style:none;font-size:.9rem;padding:.15rem 0 0}.package-detail-sidebar li:first-child{padding:0}.package-detail-sidebar small{color:#000}.package-detail-sidebar span,.package-detail-sidebar strong{font-weight:700}.package-detail-sidebar span{padding-right:3px}.package-detail-sidebar .package-creator{position:relative}.package-detail-sidebar .package-creator h3{margin:0 0 1rem}.package-detail-sidebar .package-creator .row{margin-top:0;margin-bottom:0}.package-detail-sidebar .package-creator img{display:inline-block;border-radius:50%;max-width:80px;min-width:80px;height:auto;vertical-align:middle}.package-detail-sidebar .package-creator .package-creator-information h3{margin:0;font-size:1rem;color:rgba(0,0,0,.8)}.package-detail-sidebar .package-creator .package-creator-information h3 a:hover{color:#a3db78}.package-detail-sidebar .package-creator .package-creator-information small{font-size:.8rem;-webkit-transform:translate(0,-3px);-ms-transform:translate(0,-3px);transform:translate(0,-3px)}.package-detail-sidebar .package-creator .package-creator-information .text{margin:0 0 0 .5rem;display:inline-block;vertical-align:bottom}.package-detail-sidebar .package-creator .package-creator-information .text a{text-decoration:underline}.package-detail-content .package-detail-description a:hover,.package-detail-sidebar .package-creator .package-creator-information .text a:hover,.public-member .goto:hover,.public-member .member-details a:hover{text-decoration:none}.package-detail-sidebar .package-compatibility,.package-detail-sidebar .package-creator{border-bottom:1px solid #f5f5f5;margin-bottom:1rem;padding-bottom:1rem}.package-compatibility-versions .versions{margin-bottom:1rem}.package-compatibility-versions span{display:block;font-weight:400}.package-compatibility-versions strong{margin-right:5px}.package-detail-content h3{display:block;margin-bottom:.4rem;font-size:1.2rem}.package-detail-content .package-detail-description{margin-bottom:2rem}.package-detail-content .package-detail-description h1{font-size:2.1rem;line-height:1.5;color:rgba(0,0,0,.8);margin-bottom:1rem;margin-top:0;max-width:95%;position:relative;z-index:1;font-weight:700}.package-detail-content .package-detail-description .hero-image{max-width:100%;height:auto;margin-bottom:1.5rem}.package-detail-content .package-detail-description li,.package-detail-content .package-detail-description p{font-size:1rem;line-height:1.5;color:#000}.package-detail-content .package-detail-description li+*,.package-detail-content .package-detail-description p+*{margin-top:1rem}.package-detail-content .package-detail-description li+h3,.package-detail-content .package-detail-description p+h3{margin-top:1.7rem}.package-detail-content .package-detail-description li.hero,.package-detail-content .package-detail-description p.hero{font-size:1.25rem!important;line-height:1.4;color:rgba(0,0,0,.8);margin-bottom:1.5rem}.package-detail-content .package-detail-description ul{margin-left:40px}.package-detail-content .package-detail-description ul li{margin:0}.package-detail-content .package-detail-description h3{display:block;margin-bottom:.4rem;font-size:1.2rem}.package-detail-content .package-detail-screenshots{overflow:hidden}.package-detail-content .package-detail-screenshots a{margin-bottom:.5rem;display:block;position:relative;width:23%;max-height:100px;overflow:hidden;margin-right:2%;float:left;border:1px solid #f5f5f5}.package-detail-content .package-detail-screenshots img{max-width:100%;height:auto}.package-detail-content .tabs{margin:6rem 0 0;padding:0;list-style:none}.package-detail-content .tabs li{background:0 0;color:rgba(0,0,0,.8);display:inline-block;padding:10px 15px;cursor:pointer;font-size:1rem}.package-detail-content .tabs li.current{background:#ededed;color:rgba(0,0,0,.8)}.package-detail-content .tabs li:hover{opacity:.8}.package-detail-content .tab-content{display:none;background:#ededed;padding:30px;margin-bottom:6rem}.package-detail-content .tab-content h3{font-size:1.1rem;margin-bottom:1rem;color:rgba(0,0,0,.8)}.package-detail-content .tab-content p{font-size:1rem;color:#000}.package-detail-content .tab-content span{color:rgba(0,0,0,.4);font-size:.8rem;display:block;margin-top:.2rem}.package-detail-content .tab-content.current{display:inherit}.flex,.flex-center,.public-member .forum-thread .row,.public-member .member-details,.public-member .member-details .roles{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.package-misc .search-all-results{border:none}.package-misc .search-all-results li{border:none;padding:10px}.package-misc .search-all-results .type-context{padding-left:10px}.public-member{font-size:.9rem;line-height:1.5;color:#000;margin-top:2rem}.public-member .member-details{display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.public-member .member-details img{border-radius:50%;max-width:112px;min-width:112px;height:auto}.public-member .member-details h3{margin:0;font-size:1.2rem;line-height:1.3;color:rgba(0,0,0,.8);font-weight:700}.public-member .member-details small{line-height:1.3;color:#445255;font-size:1.15rem;font-weight:700;margin:0}.public-member .member-details .text{margin:0 0 0 1rem}.public-member .member-details .text small{font-size:1rem;font-weight:400;color:#5a6d71}.public-member .member-details .roles{display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.public-member .member-details .roles span{font-size:.85rem;margin:0 2% 2% 0}.public-member h3{margin:0 0 .5rem;font-weight:700;font-size:1.15rem}.public-member .member-bio{margin-top:1rem}.public-member .member-bio p{font-size:1rem;line-height:1.4;color:#4f5f63}.public-member .category{margin-top:.5rem}.public-member .category span.cat{font-size:.75rem}.public-member .forum-thread .row{display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.public-member .forum-thread-text h3,.public-member .goto{font-size:1rem}.flex,.flex-center{display:flex}.flex-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.quickmenu .notification,.quickmenu .notification__blue,.quickmenu .notification__green,.quickmenu .notification__red,.quickmenu .notification__yellow{opacity:0;left:25%}.notification,.notification__blue,.notification__green,.notification__red,.notification__yellow{position:fixed;z-index:999;left:50%;bottom:30px;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);opacity:1;-webkit-transition:all .3s cubic-bezier(0,0,.22,.88);transition:all .3s cubic-bezier(0,0,.22,.88);width:90%;margin:0 auto;max-width:1024px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:20px 10px;border-radius:4px;border:1px solid #85beff;background:#b8d9ff;color:#00499e}.notification__red{border:1px solid #fa040a;background:#feb3b5;color:#4a0103}.notification__red a,.notification__red a:visited{text-decoration:underline;color:#4a0103}.notification__red a:hover,.notification__red a:visited:hover{text-decoration:none}.notification__red .close-notification:hover{color:#af0307}.notification__yellow{border:1px solid #f7e5b4;background:#faedcb;color:#9c7610}.notification__yellow a,.notification__yellow a:visited{text-decoration:underline;color:#9c7610}.notification__yellow a:hover,.notification__yellow a:visited:hover{text-decoration:none}.notification__yellow .close-notification:hover{color:#eec557}.notification__blue{border:1px solid #6bafff;background:#b8d9ff;color:#00499e}.notification__blue a,.notification__blue a:visited{text-decoration:underline;color:#00499e}.notification__blue a:hover,.notification__blue a:visited:hover{text-decoration:none}.notification__blue .close-notification:hover{color:#001a38}.notification__green{border:1px solid #00e75f;background:#9bffc4;color:#008135}.notification__green a,.notification__green a:visited{text-decoration:underline;color:#008135}.notification a:hover,.notification__blue a:hover,.notification__green a:hover,.notification__green a:visited:hover,.notification__red a:hover,.notification__yellow a:hover{text-decoration:none}.notification__green .close-notification:hover{color:#001b0b}.notification h1,.notification h2,.notification h3,.notification__blue h1,.notification__blue h2,.notification__blue h3,.notification__green h1,.notification__green h2,.notification__green h3,.notification__red h1,.notification__red h2,.notification__red h3,.notification__yellow h1,.notification__yellow h2,.notification__yellow h3{margin-bottom:.5rem;font-weight:700}.notification h1,.notification__blue h1,.notification__green h1,.notification__red h1,.notification__yellow h1{font-size:1.3rem}.notification h2,.notification__blue h2,.notification__green h2,.notification__red h2,.notification__yellow h2{font-size:1.2rem}.notification h3,.notification__blue h3,.notification__green h3,.notification__red h3,.notification__yellow h3{font-size:1.1rem}.notification a,.notification p,.notification__blue a,.notification__blue p,.notification__green a,.notification__green p,.notification__red a,.notification__red p,.notification__yellow a,.notification__yellow p{font-size:1rem;line-height:1.5}.notification small,.notification__blue small,.notification__green small,.notification__red small,.notification__yellow small{margin:0;display:inline-block}.notification .message,.notification__blue .message,.notification__green .message,.notification__red .message,.notification__yellow .message{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;margin-bottom:1rem}.notification .close-notification,.notification__blue .close-notification,.notification__green .close-notification,.notification__red .close-notification,.notification__yellow .close-notification{left:15px;cursor:pointer;font-size:1rem;text-align:right;-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.notification .close-notification i,.notification__blue .close-notification i,.notification__green .close-notification i,.notification__red .close-notification i,.notification__yellow .close-notification i{position:relative;top:3px;font-size:1.2rem;margin-right:3px}.alertbar,.alertbar__blue,.alertbar__green,.alertbar__red,.alertbar__yellow{background:#f4ebba;text-align:center;border:none!important;padding:20px}.alertbar__red{border:1px solid #fa040a;background:#feb3b5;color:#4a0103}.alertbar__red a,.alertbar__red a:visited{text-decoration:underline;color:#4a0103}.alertbar__red a:hover,.alertbar__red a:visited:hover{text-decoration:none}.alertbar__red .close-notification:hover{color:#af0307}.alertbar__yellow{border:1px solid #f7e5b4;background:#faedcb;color:#9c7610}.alertbar__yellow a,.alertbar__yellow a:visited{text-decoration:underline;color:#9c7610}.alertbar__yellow a:hover,.alertbar__yellow a:visited:hover{text-decoration:none}.alertbar__yellow .close-notification:hover{color:#eec557}.alertbar__blue{border:1px solid #6bafff;background:#b8d9ff;color:#00499e}.alertbar__blue a,.alertbar__blue a:visited{text-decoration:underline;color:#00499e}.alertbar__blue a:hover,.alertbar__blue a:visited:hover{text-decoration:none}.alertbar__blue .close-notification:hover{color:#001a38}.alertbar__green{border:1px solid #00e75f;background:#9bffc4;color:#008135}.alertbar__green a,.alertbar__green a:visited{text-decoration:underline;color:#008135}.alertbar p a:hover,.alertbar__blue p a:hover,.alertbar__green a:hover,.alertbar__green a:visited:hover,.alertbar__green p a:hover,.alertbar__red p a:hover,.alertbar__yellow p a:hover,.events .event-info a:hover,.forum-thread,.leaderboard a,.person-activity{text-decoration:none}.alertbar__green .close-notification:hover{color:#001b0b}.alertbar h1,.alertbar h2,.alertbar h3,.alertbar__blue h1,.alertbar__blue h2,.alertbar__blue h3,.alertbar__green h1,.alertbar__green h2,.alertbar__green h3,.alertbar__red h1,.alertbar__red h2,.alertbar__red h3,.alertbar__yellow h1,.alertbar__yellow h2,.alertbar__yellow h3{margin-bottom:.8rem}.alertbar h1,.alertbar__blue h1,.alertbar__green h1,.alertbar__red h1,.alertbar__yellow h1{font-size:1.7rem}.alertbar h2,.alertbar__blue h2,.alertbar__green h2,.alertbar__red h2,.alertbar__yellow h2{font-size:1.3rem}.alertbar h3,.alertbar__blue h3,.alertbar__green h3,.alertbar__red h3,.alertbar__yellow h3{font-size:1rem}.alertbar p,.alertbar__blue p,.alertbar__green p,.alertbar__red p,.alertbar__yellow p{font-size:.95rem}.alertbar img,.alertbar__blue img,.alertbar__green img,.alertbar__red img,.alertbar__yellow img{max-width:100%;height:auto}.docs{padding:0;border-bottom:1px solid rgba(127,148,153,.11)}.docs .row{margin:0}.docs .advanced,.docs .beginners{padding:80px 20px;text-align:center}.docs img{margin-bottom:30px;display:inline-block}.docs h2{font-size:2rem;margin-bottom:1rem}.docs p{color:#4f5f63;line-height:1.5;font-size:1.1rem;margin-bottom:30px}#registrationForm .docs input[type=submit],.docs #registrationForm input[type=submit],.docs .button,.docs .quick-menu .login input[type=submit],.docs .quick-menu .new-profile input[type=submit],.docs .tagAdd,.quick-menu .login .docs input[type=submit],.quick-menu .new-profile .docs input[type=submit]{font-size:1rem}section.forum{background:rgba(127,148,153,.11);background-size:100%;background-position:center bottom;background-repeat:no-repeat;position:relative}section.forum h1{font-size:1.8rem;text-align:center;position:relative;z-index:30;margin-bottom:3.5rem}section.forum h1+p{max-width:700px;margin:1rem auto 3rem;padding:0 10px;font-size:1rem;color:#5a6d71;text-align:center}section.forum .col-md-6{margin-bottom:40px}section.forum .goto-forum{text-align:center;margin-top:60px}section.forum .forum-thread .category{margin:.5rem 0 0}section.forum .forum-thread .category span{font-size:.75rem}section.forum small{font-size:.9rem;color:#4f5f63;font-weight:700;display:block;margin-bottom:.5rem}.forum-thread,.person-activity{background:#fff;padding:15px;margin-bottom:30px;width:100%;border:1px solid #e9e9e9;-webkit-transition:box-shadow .2s;transition:box-shadow .2s;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.leaderboard a:hover,.people{background:rgba(127,148,153,.11)}.forum-thread .row,.person-activity .row{margin:0}.forum-thread img,.person-activity img{border-radius:50%;width:100%;max-width:112px;height:auto}.forum-thread img.aura,.person-activity img.aura{border:2px solid transparent;border-radius:50%;padding:3px}.forum-thread img.aura.mvp,.person-activity img.aura.mvp{border-color:rgba(46,179,105,.4)}.forum-thread img.aura.admin,.person-activity img.aura.admin{border-color:rgba(246,23,0,.4)}.forum-thread img.aura.hq,.person-activity img.aura.hq{border-color:rgba(34,124,246,.4)}.forum-thread h3,.person-activity h3{margin-bottom:2px;font-weight:400;color:#000;line-height:1.3;font-size:1rem}.forum-thread p,.person-activity p{margin:0;text-align:left;font-size:.9rem;color:#7F9499}.leaderboard,.people{text-align:center}.forum-thread:last-child,.person-activity:last-child{margin-bottom:0}.forum-thread small,.person-activity small{font-size:.8rem}.forum-thread .col-xs-2,.person-activity .col-xs-2{padding:0 .1rem}.leaderboard,.people{position:relative;overflow:hidden}.leaderboard .user-profile,.people .user-profile{width:100%;max-width:68px;margin:0 auto;height:auto;border-radius:50%;position:relative;-webkit-transition:box-shadow .2s;transition:box-shadow .2s}.leaderboard h1,.leaderboard p,.people h1,.people p{text-align:center;position:relative;z-index:30}.leaderboard h1,.people h1{font-size:1.8rem}.leaderboard p,.people p{max-width:700px;margin:1rem auto 3rem;padding:0 10px;font-size:1rem;color:#5a6d71}.leaderboard div[data-attr=weeks] .profile,.leaderboard div[data-attr=weeks] strong,.leaderboard div[data-attr=alltime] .profile,.leaderboard div[data-attr=alltime] strong{padding-left:.5rem}#registrationForm .leaderboard input[type=submit],#registrationForm .people input[type=submit],.leaderboard #registrationForm input[type=submit],.leaderboard .button,.leaderboard .quick-menu .login input[type=submit],.leaderboard .quick-menu .new-profile input[type=submit],.leaderboard .tagAdd,.people #registrationForm input[type=submit],.people .button,.people .quick-menu .login input[type=submit],.people .quick-menu .new-profile input[type=submit],.people .tagAdd,.quick-menu .login .leaderboard input[type=submit],.quick-menu .login .people input[type=submit],.quick-menu .new-profile .leaderboard input[type=submit],.quick-menu .new-profile .people input[type=submit]{margin:3rem auto 0}.leaderboard div[data-attr=weeks] .meta,.leaderboard div[data-attr=alltime] .meta{margin-left:4%}.people .container,.people .page,.people .subpage{max-width:1400px;position:relative;z-index:30}.people div[class^=col-]{margin-bottom:15px}.leaderboard div[data-attr=weeks],.leaderboard div[data-attr=alltime]{position:relative;z-index:30}.leaderboard div[data-attr=weeks]{text-align:left}.leaderboard div[data-attr=alltime]{margin-bottom:3rem;text-align:left}.leaderboard a{padding:15px 0}.leaderboard strong{font-size:1rem;color:#E13E8F;font-weight:700;display:block}.leaderboard .profile{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.leaderboard .profile:last-of-type{margin:0}.leaderboard .avatar{-webkit-box-flex:0;-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%}.leaderboard .meta{-webkit-box-flex:0;-webkit-flex:0 0 76%;-ms-flex:0 0 76%;flex:0 0 76%}.leaderboard .meta .name{padding-left:0;margin-bottom:.4rem;font-size:1rem}.leaderboard .meta small{font-size:.95rem;color:#667a7f}.leaderboard .meta small span{color:#4f5f63}.events{padding:0}.events .event-map{position:relative;overflow:hidden}.events .event-info{padding:20px;color:#fff;background:rgba(22,22,22,.87);text-align:center}.events .event-info img{max-width:66px;height:auto;margin:10px auto 20px;display:block}.events .event-info h1{font-size:2rem;margin-bottom:30px}.events .event-info p{line-height:1.5}.events .event-info a{margin-top:30px;display:inline-block;font-weight:700}.events #map{height:300px}#registrationForm .community-page .docs input.transparent[type=submit],#registrationForm .community-page .forum input.transparent[type=submit],#registrationForm .frontpage .docs input.transparent[type=submit],#registrationForm .frontpage .forum input.transparent[type=submit],.community-page .docs #registrationForm input.transparent[type=submit],.community-page .docs .button.transparent,.community-page .docs .quick-menu .login input.transparent[type=submit],.community-page .docs .quick-menu .new-profile input.transparent[type=submit],.community-page .docs .transparent.tagAdd,.community-page .forum #registrationForm input.transparent[type=submit],.community-page .forum .button.transparent,.community-page .forum .quick-menu .login input.transparent[type=submit],.community-page .forum .quick-menu .new-profile input.transparent[type=submit],.community-page .forum .transparent.tagAdd,.frontpage .docs #registrationForm input.transparent[type=submit],.frontpage .docs .button.transparent,.frontpage .docs .quick-menu .login input.transparent[type=submit],.frontpage .docs .quick-menu .new-profile input.transparent[type=submit],.frontpage .docs .transparent.tagAdd,.frontpage .forum #registrationForm input.transparent[type=submit],.frontpage .forum .button.transparent,.frontpage .forum .quick-menu .login input.transparent[type=submit],.frontpage .forum .quick-menu .new-profile input.transparent[type=submit],.frontpage .forum .transparent.tagAdd,.quick-menu .login .community-page .docs input.transparent[type=submit],.quick-menu .login .community-page .forum input.transparent[type=submit],.quick-menu .login .frontpage .docs input.transparent[type=submit],.quick-menu .login .frontpage .forum input.transparent[type=submit],.quick-menu .new-profile .community-page .docs input.transparent[type=submit],.quick-menu .new-profile .community-page .forum input.transparent[type=submit],.quick-menu .new-profile .frontpage .docs input.transparent[type=submit],.quick-menu .new-profile .frontpage .forum input.transparent[type=submit]{float:none;font-size:.9rem;padding:12px 14px;-webkit-transition:all .2s;transition:all .2s}#registrationForm .community-page .docs input.transparent[type=submit]:hover,#registrationForm .community-page .forum input.transparent[type=submit]:hover,#registrationForm .frontpage .docs input.transparent[type=submit]:hover,#registrationForm .frontpage .forum input.transparent[type=submit]:hover,.community-page .docs #registrationForm input.transparent[type=submit]:hover,.community-page .docs .button.transparent:hover,.community-page .docs .quick-menu .login input.transparent[type=submit]:hover,.community-page .docs .quick-menu .new-profile input.transparent[type=submit]:hover,.community-page .docs .transparent.tagAdd:hover,.community-page .forum #registrationForm input.transparent[type=submit]:hover,.community-page .forum .button.transparent:hover,.community-page .forum .quick-menu .login input.transparent[type=submit]:hover,.community-page .forum .quick-menu .new-profile input.transparent[type=submit]:hover,.community-page .forum .transparent.tagAdd:hover,.frontpage .docs #registrationForm input.transparent[type=submit]:hover,.frontpage .docs .button.transparent:hover,.frontpage .docs .quick-menu .login input.transparent[type=submit]:hover,.frontpage .docs .quick-menu .new-profile input.transparent[type=submit]:hover,.frontpage .docs .transparent.tagAdd:hover,.frontpage .forum #registrationForm input.transparent[type=submit]:hover,.frontpage .forum .button.transparent:hover,.frontpage .forum .quick-menu .login input.transparent[type=submit]:hover,.frontpage .forum .quick-menu .new-profile input.transparent[type=submit]:hover,.frontpage .forum .transparent.tagAdd:hover,.quick-menu .login .community-page .docs input.transparent[type=submit]:hover,.quick-menu .login .community-page .forum input.transparent[type=submit]:hover,.quick-menu .login .frontpage .docs input.transparent[type=submit]:hover,.quick-menu .login .frontpage .forum input.transparent[type=submit]:hover,.quick-menu .new-profile .community-page .docs input.transparent[type=submit]:hover,.quick-menu .new-profile .community-page .forum input.transparent[type=submit]:hover,.quick-menu .new-profile .frontpage .docs input.transparent[type=submit]:hover,.quick-menu .new-profile .frontpage .forum input.transparent[type=submit]:hover{background:#2EB369;color:#fff;opacity:1;border-color:#2EB369}#registrationForm .community-page .docs input.transparent.ink[type=submit],#registrationForm .community-page .forum input.transparent.ink[type=submit],#registrationForm .frontpage .docs input.transparent.ink[type=submit],#registrationForm .frontpage .forum input.transparent.ink[type=submit],.community-page .docs #registrationForm input.transparent.ink[type=submit],.community-page .docs .button.transparent.ink,.community-page .docs .quick-menu .login input.transparent.ink[type=submit],.community-page .docs .quick-menu .new-profile input.transparent.ink[type=submit],.community-page .docs .transparent.ink.tagAdd,.community-page .forum #registrationForm input.transparent.ink[type=submit],.community-page .forum .button.transparent.ink,.community-page .forum .quick-menu .login input.transparent.ink[type=submit],.community-page .forum .quick-menu .new-profile input.transparent.ink[type=submit],.community-page .forum .transparent.ink.tagAdd,.frontpage .docs #registrationForm input.transparent.ink[type=submit],.frontpage .docs .button.transparent.ink,.frontpage .docs .quick-menu .login input.transparent.ink[type=submit],.frontpage .docs .quick-menu .new-profile input.transparent.ink[type=submit],.frontpage .docs .transparent.ink.tagAdd,.frontpage .forum #registrationForm input.transparent.ink[type=submit],.frontpage .forum .button.transparent.ink,.frontpage .forum .quick-menu .login input.transparent.ink[type=submit],.frontpage .forum .quick-menu .new-profile input.transparent.ink[type=submit],.frontpage .forum .transparent.ink.tagAdd,.quick-menu .login .community-page .docs input.transparent.ink[type=submit],.quick-menu .login .community-page .forum input.transparent.ink[type=submit],.quick-menu .login .frontpage .docs input.transparent.ink[type=submit],.quick-menu .login .frontpage .forum input.transparent.ink[type=submit],.quick-menu .new-profile .community-page .docs input.transparent.ink[type=submit],.quick-menu .new-profile .community-page .forum input.transparent.ink[type=submit],.quick-menu .new-profile .frontpage .docs input.transparent.ink[type=submit],.quick-menu .new-profile .frontpage .forum input.transparent.ink[type=submit]{background:rgba(255,255,255,.3)}.map header{background:0 0!important}.map .container,.map .page,.map .subpage{position:relative;z-index:200}.map+div{margin-top:15px}.map nav a,.map nav a:active,.map nav a:visited{text-decoration:none;color:rgba(255,255,255,.6);-webkit-transition:color .2s;transition:color .2s}.map nav a:active:hover,.map nav a:hover,.map nav a:visited:hover{color:#fff}.map .event-map{position:relative;padding-top:0!important;min-height:200px}.map #map{height:200px}.map .col-md-4{margin-bottom:40px}.map .people{border-bottom:1px solid #f5f5f5;padding:30px 0}.map .people .teaser{max-width:640px;margin:0 auto}.map .people .teaser h1{margin-bottom:1rem}.map .people .teaser p+p{margin-top:30px}.map .people .teaser strong{font-size:1.2rem}.map .people-activity{background:#f5f5f5;padding:30px 0}.map .people-activity strong{margin-bottom:.3rem;display:block;font-size:1.6rem}.map .people-activity img{max-height:66px;width:auto}.map .people-activity .person-activity-text{margin-top:8px}.documentation{padding:0}.documentation>.container,.documentation>.page,.documentation>.subpage{position:relative}.documentation #body a{color:#6dbb32}.documentation #body a:hover{text-decoration:underline}.documentation #body a.active h3{color:#88d050!important}.documentation .search-big{margin-bottom:0;margin-top:20px}.docs-overview{text-align:center}.docs-overview h1{font-size:3rem;font-weight:100;color:rgba(0,0,0,.8)}.docs-overview .docs-section{display:inline-block;max-width:400px;text-align:center;color:#000;-webkit-transition:all .1s cubic-bezier(.7,0,.3,1);transition:all .1s cubic-bezier(.7,0,.3,1)}.dot,.dot .line{display:block}.docs-overview .docs-section img{text-align:center;opacity:.8;-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95);-webkit-transition:all .1s linear;transition:all .1s linear}.docs-overview .docs-section h2,.docs-overview .docs-section p{-webkit-transition:all .1s linear;transition:all .1s linear}.docs-overview .docs-section h2{font-weight:100;color:rgba(0,0,0,.8);margin-bottom:1rem}.docs-overview .docs-section p{text-align:center;color:#000}.docs-overview .docs-section:hover{cursor:pointer}.docs-overview .docs-section:hover h2,.docs-overview .docs-section:hover p{color:#000}.docs-overview .docs-section:hover img{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.docs-overview .contributing{text-align:left;margin-top:2rem}.docs-overview .contributing h3{color:rgba(0,0,0,.8);font-size:1rem;margin-bottom:.5rem}.docs-overview .contributing p{color:#000;font-size:.9rem;margin-top:0}.docs-overview h3{font-weight:100;margin-top:80px}#markdown-docs a{color:#6dbb32;text-decoration:none}#markdown-docs a:hover{color:#3e6b1c}#markdown-docs h1 a,#markdown-docs h2 a,#markdown-docs h3 a,#markdown-docs h4 a,#markdown-docs h5 a,#markdown-docs h6 a{color:#000;text-decoration:underline}#markdown-docs h1 a:hover,#markdown-docs h2 a:hover,#markdown-docs h3 a:hover,#markdown-docs h4 a:hover,#markdown-docs h5 a:hover,#markdown-docs h6 a:hover{color:#000;text-decoration:none}.dot{position:relative;margin-top:13px;background-color:#daf0c9;border:3px solid #daf0c9}.dot .line,.point{position:absolute}.dot .line.h-line{border-top:solid 3px #daf0c9}.dot .line.v-line{border-left:solid 3px #daf0c9}.dot.big{height:60px;width:60px;border-radius:40px;margin:20px auto 100px;font-size:2rem;line-height:3.5rem;text-indent:.7rem;color:#569327}.dot.big .h-line{left:50px;top:25px;width:70px;height:1px}.dot.big .v-line{left:25px;top:57px;width:1px;height:100px}.dot.big .v-line.top{top:-80px;height:80px}.dot.small{height:20px;width:20px;border-radius:30px;margin:0 auto 115px}.dot.small.last{margin-top:60px;margin-bottom:5px}.dot.small .h-line{left:17px;top:7px;width:70px;height:1px;border-width:1px}.dot.small .v-line{top:17px;left:5px;width:1px;height:120px}.dot.small .v-line.top{height:100px;top:-90px}.point{margin-left:191px;margin-top:21px;z-index:100}.point a{color:#000!important}.point h4{font-size:2rem;margin-top:13px}.explain small,.point small{margin-bottom:10px;color:#000;font-size:.9rem;display:block;line-height:1.3;padding-right:5px}.explain .col-xs-12{min-height:153px}.explain .col-xs-12 h4{margin-top:12px;font-size:2em;margin-bottom:.3rem;color:rgba(0,0,0,.8)}.explain .col-xs-12 h4 a{text-decoration:none}.explain .col-xs-12 h4 a:hover{color:#a3db78}.explain .col-xs-6{min-height:133px}.explain .col-xs-6 h5{font-size:1.1rem;margin-bottom:.2rem;font-weight:600}.explain .col-xs-6 h5 a{color:rgba(0,0,0,.8);text-decoration:none}.explain .col-xs-6 h5 a:hover{color:#a3db78}.explain .col-xs-6>a{display:inline-block;min-height:150px;padding:5px;color:#fff}.explain .col-xs-6>a:hover{cursor:pointer}.umbracoVersion{display:inline-block;font-weight:700;border-radius:2px;text-decoration:none;text-transform:capitalize;-webkit-transition:background .2s;transition:background .2s;padding:4px 6px;font-size:.85rem;background:#4ea7ff;color:#fff;margin-top:0}.download-umbraco,body.download header .navigation,body.download header.sticky .navigation{background:#a3db78}.download-umbraco{text-align:center;color:#fff;padding:0 0 100px;position:relative;z-index:90;min-height:530px;height:calc(100vh - 262px)}.download-umbraco .container,.download-umbraco .page,.download-umbraco .subpage{padding:20px 20px 0;position:relative;z-index:200}.download-umbraco h1{font-size:2rem;margin-bottom:2rem}.download-umbraco p{margin:0 auto 1.5rem;font-size:.97rem;line-height:1.5;color:#000}#registrationForm .download-umbraco p+input[type=submit],.download-umbraco #registrationForm p+input[type=submit],.download-umbraco .quick-menu .login p+input[type=submit],.download-umbraco .quick-menu .new-profile p+input[type=submit],.download-umbraco p+.button,.download-umbraco p+.tagAdd,.quick-menu .login .download-umbraco p+input[type=submit],.quick-menu .new-profile .download-umbraco p+input[type=submit]{margin-top:1.5rem}.download-umbraco p.small{font-size:.97rem}.download-umbraco p a{text-decoration:none;border-bottom:2px solid rgba(0,0,0,.48)}.download-umbraco p a:hover{border-color:#fff}#registrationForm .download-umbraco input[type=submit],.download-umbraco #registrationForm input[type=submit],.download-umbraco .button,.download-umbraco .quick-menu .login input[type=submit],.download-umbraco .quick-menu .new-profile input[type=submit],.download-umbraco .tagAdd,.quick-menu .login .download-umbraco input[type=submit],.quick-menu .new-profile .download-umbraco input[type=submit]{margin-bottom:1rem;position:relative;padding-left:60px;cursor:pointer;overflow:hidden;-webkit-transition:all .2s ease;transition:all .2s ease}#registrationForm .download-umbraco input[type=submit] i,.download-umbraco #registrationForm input[type=submit] i,.download-umbraco .button i,.download-umbraco .quick-menu .login input[type=submit] i,.download-umbraco .quick-menu .new-profile input[type=submit] i,.download-umbraco .tagAdd i,.quick-menu .login .download-umbraco input[type=submit] i,.quick-menu .new-profile .download-umbraco input[type=submit] i{font-size:1.5rem;position:absolute;top:50%;left:0;opacity:.5;-webkit-transform:translate(20px,-53%);-ms-transform:translate(20px,-53%);transform:translate(20px,-53%);-webkit-transition:opacity .2s;transition:opacity .2s}.download-umbraco .pm-nuget:before,.download-umbraco .pre{display:block;font-family:Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;font-size:.8rem}#registrationForm .download-umbraco input[type=submit]:hover,#registrationForm .download-umbraco input[type=submit]:hover i,.download-umbraco #registrationForm input[type=submit]:hover,.download-umbraco #registrationForm input[type=submit]:hover i,.download-umbraco .button:hover,.download-umbraco .button:hover i,.download-umbraco .quick-menu .login input[type=submit]:hover,.download-umbraco .quick-menu .login input[type=submit]:hover i,.download-umbraco .quick-menu .new-profile input[type=submit]:hover,.download-umbraco .quick-menu .new-profile input[type=submit]:hover i,.download-umbraco .tagAdd:hover,.download-umbraco .tagAdd:hover i,.quick-menu .login .download-umbraco input[type=submit]:hover,.quick-menu .login .download-umbraco input[type=submit]:hover i,.quick-menu .new-profile .download-umbraco input[type=submit]:hover,.quick-menu .new-profile .download-umbraco input[type=submit]:hover i{opacity:1}#registrationForm .download-umbraco input[type=submit] .ink,.download-umbraco #registrationForm input[type=submit] .ink,.download-umbraco .button .ink,.download-umbraco .quick-menu .login input[type=submit] .ink,.download-umbraco .quick-menu .new-profile input[type=submit] .ink,.download-umbraco .tagAdd .ink,.quick-menu .login .download-umbraco input[type=submit] .ink,.quick-menu .new-profile .download-umbraco input[type=submit] .ink{background:rgba(163,219,120,.3)}#registrationForm .download-umbraco input[type=submit]:not(:active),.download-umbraco #registrationForm input[type=submit]:not(:active),.download-umbraco .button:not(:active),.download-umbraco .quick-menu .login input[type=submit]:not(:active),.download-umbraco .quick-menu .new-profile input[type=submit]:not(:active),.download-umbraco .tagAdd:not(:active),.quick-menu .login .download-umbraco input[type=submit]:not(:active),.quick-menu .new-profile .download-umbraco input[type=submit]:not(:active){-webkit-transition:box-shadow .2s;transition:box-shadow .2s}#registrationForm .download-umbraco input[type=submit]:active,.download-umbraco #registrationForm input[type=submit]:active,.download-umbraco .button:active,.download-umbraco .quick-menu .login input[type=submit]:active,.download-umbraco .quick-menu .new-profile input[type=submit]:active,.download-umbraco .tagAdd:active,.quick-menu .login .download-umbraco input[type=submit]:active,.quick-menu .new-profile .download-umbraco input[type=submit]:active{box-shadow:none}.download-umbraco .pre{overflow:auto;background-color:#333;color:#fff;line-height:1.4em;background-clip:padding-box;padding:8px 25px 8px 50px;border-radius:5px;width:auto;min-width:300px;text-align:center;border:none;margin:0 auto}.download-umbraco .pre:hover{background:#404040;cursor:pointer}.download-umbraco .pm-nuget{position:relative;display:block;margin:0 auto;height:100%;width:300px}.download-umbraco .pm-nuget:before{content:"PM>";position:absolute;top:50%;left:0;-webkit-transform:translate(25px,-46%);-ms-transform:translate(25px,-46%);transform:translate(25px,-46%);opacity:.9}.download-umbraco .archive{position:absolute;bottom:5%;left:50%;transform:translate(-50%,0);color:#000;z-index:200}.download-umbraco .archive,.historical-releases .version span{-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0)}.download-umbraco .archive a:hover{text-decoration:none;opacity:1}.historical-releases .content{min-height:40vh;margin-top:100px;padding-left:30px}.historical-releases .title-level{margin-bottom:15px;font-weight:700;font-size:1.3rem}.historical-releases ul li{list-style:none}.historical-releases ul a{color:#000;font-size:1rem;margin-top:10px;margin-bottom:5px}.historical-releases ul a:hover{color:#000}.historical-releases .versions{border-left:1px solid #e6e6e6}.historical-releases .version{width:100%;position:relative;padding:15px 20px 20px;margin-bottom:30px;max-width:640px}.historical-releases .version ul{padding-left:60px;overflow:hidden}.historical-releases .version li{list-style:none;display:block;float:left}.historical-releases .version span{font-size:1.7rem;font-weight:700;background:#fff;color:#222;border:1px solid rgba(34,34,34,.3);border-radius:50%;height:60px;width:60px;line-height:60px;display:block;text-align:center;position:absolute;left:0;top:0;transform:translate(-50%,0);-webkit-transition:background .2s;transition:background .2s}.historical-releases .downloadable{width:25%}.historical-releases .downloadable a{font-size:1rem;text-decoration:none;padding:10px 12px;background-color:#2EB369;color:#fff!important;font-weight:700;border-radius:3px;display:block;margin-right:20px;margin-bottom:20px;margin-top:0;min-width:60px;text-align:center;-webkit-transition:all .2s ease;transition:all .2s ease}.historical-releases .downloadable a:hover{background:#33c775;color:#fff!important;box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24)}.mac-notice{text-align:center;background:rgba(0,0,0,.13);padding:15px 0;font-size:1.1rem;position:relative;z-index:999;display:none}.mac-notice:before{content:"";display:inline-block;height:24px;width:24px;margin-right:8px;background:url(../images/osx.png) left -3px no-repeat;background-size:24px 24px;vertical-align:middle}.mac-notice a:hover{text-decoration:none}.steps{text-align:left;margin:60px auto 0}.steps h2{font-size:1.9rem;margin-bottom:50px;font-weight:600;text-align:center}.steps .guide{width:100%;margin:0 auto;text-align:center}.steps img{display:block;margin:0 auto;width:60%;height:auto}.steps .step{font-size:1.5rem;margin-bottom:80px;position:relative;display:inline-block;width:30%}.steps .step span{display:block;text-align:center;border:2px dashed rgba(0,0,0,.23);color:rgba(0,0,0,.23);border-radius:50%;height:50px;width:50px;margin:0 auto 20px;font-size:1.7rem;font-weight:700;line-height:45px}.steps .step.step-one{-webkit-animation-delay:.1s;animation-delay:.1s}.steps .step.step-two{-webkit-animation-delay:.4s;animation-delay:.4s}.steps .step.step-three{-webkit-animation-delay:.7s;animation-delay:.7s}.archive i{font-size:1.3rem;padding-top:2px}body.mac .mac-notice{display:block}.download .dot.progress{text-indent:.3rem;text-align:center;line-height:2.8rem}.download .dot.progress .counter{font-size:1.1rem}.download.latest .dot{margin-top:2rem}.explain .changes small{line-height:.5rem}.chart{position:absolute;top:-4px;left:-8px;z-index:1}.chart .percentage{display:inline-block;position:absolute;top:9px;left:16px;font-size:1.1rem;color:#569327}.chart canvas{top:1px;position:absolute;left:5px}.inprogress .chart .percentage,.plannedreleases .chart .percentage{position:initial}.get-release i{font-size:2.5rem;line-height:5rem}.get-release{line-height:1.5;padding:2.5rem 0;margin:2.5rem 0;border-bottom:1px solid #e8e8e8;border-top:1px solid #e8e8e8}.get-release h3{font-size:1.1rem;margin-bottom:.3rem;color:rgba(0,0,0,.8)}.get-release h3 a{text-decoration:none}.get-release h3 a:hover{color:#a3db78}.get-release p{color:rgba(0,0,0,.8);font-size:.95rem;line-height:1.3;margin-bottom:.5rem}.get-release small{font-size:.7rem;color:#000}.release{min-height:160px}.release.zip i{color:rgba(0,0,0,.8)}.release.bin i{color:rgba(0,0,0,.4);font-size:1.6rem}.release.bin h4{font-size:.9rem;margin-bottom:.3rem;color:rgba(0,0,0,.8)}.release.bin h4 a{text-decoration:none}.release.bin h4 a:hover{color:#a3db78}.release.bin.col-sm-5{padding-top:18px}.release.col-sm-1{text-align:center}.latest .dot.big{margin-bottom:30px}.latest .explain h4{font-size:2.5rem}.latest .explain p{font-size:1.1rem;color:#000}.release .markdown-syntax h1,.release .markdown-syntax h2,.release .markdown-syntax h3,.release .markdown-syntax strong{color:rgba(0,0,0,.8)}.latest .explain .col-xs-12{min-height:0}.release .markdown-syntax a,.release .markdown-syntax li,.release .markdown-syntax p,.release .markdown-syntax ul{color:rgba(0,0,0,.8);font-size:.95rem}.release .markdown-syntax a{text-decoration:none}.release .markdown-syntax a:hover{text-decoration:underline}.release .markdown-syntax p+p{margin-bottom:15px!important}.release .markdown-syntax h1{font-size:2rem}.release .markdown-syntax h2{font-size:1.3rem}.release .markdown-syntax h3{font-size:1.1rem}.release .markdown-syntax ul li{margin-bottom:.5rem;line-height:1.5}.releaseTable .col-xs-3:first-child .progress .top,.releaseTable .col-xs-3:nth-last-child(2) .small:last-child .v-line{display:none}.forum-overview .forum,.forum-overview .forum .topic-row,.forum-overview .forum-content .posts{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.inprogress .dot.big.progress{text-indent:0;border:none}.inprogress .dot.big.progress .v-line{top:60px;left:28px}.inprogress .dot.big.progress .v-line.top{top:-80px}.inprogress .dot.big.progress .h-line{top:28px}.inprogress .chart{top:0;left:0;width:100%;height:100%;text-align:center;line-height:3rem}.inprogress .chart canvas{top:0;left:0}.plannedreleases .dot.big{text-indent:0;line-height:3rem}.plannedreleases .chart{top:0;left:0;width:100%;height:100%;text-align:center}.wikipage-page .markdown-syntax a{color:#6dbb32;text-decoration:none}.wikipage-page .markdown-syntax a:hover{color:#3e6b1c}.wikipage-page .markdown-syntax h1 a,.wikipage-page .markdown-syntax h2 a,.wikipage-page .markdown-syntax h3 a,.wikipage-page .markdown-syntax h4 a,.wikipage-page .markdown-syntax h5 a,.wikipage-page .markdown-syntax h6 a{color:#000;text-decoration:underline}.wikipage-page .markdown-syntax h1 a:hover,.wikipage-page .markdown-syntax h2 a:hover,.wikipage-page .markdown-syntax h3 a:hover,.wikipage-page .markdown-syntax h4 a:hover,.wikipage-page .markdown-syntax h5 a:hover,.wikipage-page .markdown-syntax h6 a:hover{color:#000;text-decoration:none}.forum-overview .forum{display:flex;-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;background:0 0;padding:0}.forum-overview .forum-content,.forum-overview .forum-head,.forum-overview .forum-settings{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.forum-overview .forum-settings{margin:30px 0 0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.forum-overview .forum-settings .search-big{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.forum-overview .forum-settings .or{-webkit-box-flex:0;-webkit-flex:0 0 5%;-ms-flex:0 0 5%;flex:0 0 5%;color:#445255;font-size:1.1rem;text-align:center}.forum-overview .forum-settings .sorting{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.forum-overview .forum-settings input,.forum-overview .forum-settings select{font-size:.95rem;color:#7F9499}.forum-overview .forum-settings input:focus,.forum-overview .forum-settings select:focus{color:#445255}.forum-overview .forum-head{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:20px 15px;border-bottom:1px solid #f5f5f5;font-size:.8rem;font-weight:700}.forum-overview .forum-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.forum-overview .forum-content .posts{display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.forum-overview .forum-content .posts small{color:#445255;font-size:1rem;margin-bottom:.2rem}.forum-overview .forum-content .posts span{font-size:.8rem;color:#7F9499}.forum-overview .forum .topic-row{padding:25px 15px;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid rgba(127,148,153,.11)}.forum-overview .forum .topic-row .topic{font-size:.95rem;line-height:1.3}.forum-overview .forum .topic-row .topic a{text-decoration:none;display:block}.forum-overview .forum .topic-row .topic a:hover h3{text-decoration:underline}.forum-overview .forum .topic-row .topic span{display:block;font-size:.75rem;color:#7F9499;margin-top:8px}.forum-overview .forum .topic-row .topic span strong{font-weight:400;color:#445255}.forum-overview .forum .topic-row .category{line-height:1.3}.forum-overview .forum .topic-row.solved{background:rgba(163,219,120,.23);border-bottom:2px solid rgba(163,219,120,.66)}.forum-overview .forum .topic{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;margin-right:5%}.forum-overview .forum .category{-webkit-box-flex:0;-webkit-flex:0 0 30%;-ms-flex:0 0 30%;flex:0 0 30%;margin-right:5%}.forum-overview .forum .posts{-webkit-box-flex:0;-webkit-flex:0 0 10%;-ms-flex:0 0 10%;flex:0 0 10%;text-align:center}.forum-overview .sorting{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;margin-left:auto}.forum-overview .sorting select{border:1px solid #cfcfcf;border-radius:0;padding:20px 20px 20px 10px;background-position:95% center}.forum-overview .sorting select:focus,.forum-overview .sorting select:hover{color:#000;background-position:95% center}.forum-overview .pagination{margin:60px 0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.forum-overview .pagination a{margin-top:0}#registrationForm .forum-page input.create-new-thread[type=submit],#registrationForm .forum-page input.delete-thread[type=submit],#registrationForm .forum-page input.follow[type=submit],#registrationForm .forum-page input.go-to-solution[type=submit],#registrationForm .forum-page input.login[type=submit],.forum-page #registrationForm input.create-new-thread[type=submit],.forum-page #registrationForm input.delete-thread[type=submit],.forum-page #registrationForm input.follow[type=submit],.forum-page #registrationForm input.go-to-solution[type=submit],.forum-page #registrationForm input.login[type=submit],.forum-page .button.create-new-thread,.forum-page .button.delete-thread,.forum-page .button.follow,.forum-page .button.go-to-solution,.forum-page .button.login,.forum-page .create-new-thread.tagAdd,.forum-page .delete-thread.tagAdd,.forum-page .follow.tagAdd,.forum-page .go-to-solution.tagAdd,.forum-page .login.tagAdd,.forum-page .quick-menu .login input.create-new-thread[type=submit],.forum-page .quick-menu .login input.delete-thread[type=submit],.forum-page .quick-menu .login input.follow[type=submit],.forum-page .quick-menu .login input.go-to-solution[type=submit],.forum-page .quick-menu .login input.login[type=submit],.forum-page .quick-menu .new-profile input.create-new-thread[type=submit],.forum-page .quick-menu .new-profile input.delete-thread[type=submit],.forum-page .quick-menu .new-profile input.follow[type=submit],.forum-page .quick-menu .new-profile input.go-to-solution[type=submit],.forum-page .quick-menu .new-profile input.login[type=submit],.quick-menu .login .forum-page input.create-new-thread[type=submit],.quick-menu .login .forum-page input.delete-thread[type=submit],.quick-menu .login .forum-page input.follow[type=submit],.quick-menu .login .forum-page input.go-to-solution[type=submit],.quick-menu .login .forum-page input.login[type=submit],.quick-menu .new-profile .forum-page input.create-new-thread[type=submit],.quick-menu .new-profile .forum-page input.delete-thread[type=submit],.quick-menu .new-profile .forum-page input.follow[type=submit],.quick-menu .new-profile .forum-page input.go-to-solution[type=submit],.quick-menu .new-profile .forum-page input.login[type=submit]{padding:6px 18px 10px 14px;font-size:.8rem;margin-top:5px;margin-left:5px;min-width:115px;width:auto;-webkit-transition:all .2s;transition:all .2s}#registrationForm .forum-page input.create-new-thread[type=submit] i,#registrationForm .forum-page input.delete-thread[type=submit] i,#registrationForm .forum-page input.follow[type=submit] i,#registrationForm .forum-page input.go-to-solution[type=submit] i,#registrationForm .forum-page input.login[type=submit] i,.forum-page #registrationForm input.create-new-thread[type=submit] i,.forum-page #registrationForm input.delete-thread[type=submit] i,.forum-page #registrationForm input.follow[type=submit] i,.forum-page #registrationForm input.go-to-solution[type=submit] i,.forum-page #registrationForm input.login[type=submit] i,.forum-page .button.create-new-thread i,.forum-page .button.delete-thread i,.forum-page .button.follow i,.forum-page .button.go-to-solution i,.forum-page .button.login i,.forum-page .create-new-thread.tagAdd i,.forum-page .delete-thread.tagAdd i,.forum-page .follow.tagAdd i,.forum-page .go-to-solution.tagAdd i,.forum-page .login.tagAdd i,.forum-page .quick-menu .login input.create-new-thread[type=submit] i,.forum-page .quick-menu .login input.delete-thread[type=submit] i,.forum-page .quick-menu .login input.follow[type=submit] i,.forum-page .quick-menu .login input.go-to-solution[type=submit] i,.forum-page .quick-menu .login input.login[type=submit] i,.forum-page .quick-menu .new-profile input.create-new-thread[type=submit] i,.forum-page .quick-menu .new-profile input.delete-thread[type=submit] i,.forum-page .quick-menu .new-profile input.follow[type=submit] i,.forum-page .quick-menu .new-profile input.go-to-solution[type=submit] i,.forum-page .quick-menu .new-profile input.login[type=submit] i,.quick-menu .login .forum-page input.create-new-thread[type=submit] i,.quick-menu .login .forum-page input.delete-thread[type=submit] i,.quick-menu .login .forum-page input.follow[type=submit] i,.quick-menu .login .forum-page input.go-to-solution[type=submit] i,.quick-menu .login .forum-page input.login[type=submit] i,.quick-menu .new-profile .forum-page input.create-new-thread[type=submit] i,.quick-menu .new-profile .forum-page input.delete-thread[type=submit] i,.quick-menu .new-profile .forum-page input.follow[type=submit] i,.quick-menu .new-profile .forum-page input.go-to-solution[type=submit] i,.quick-menu .new-profile .forum-page input.login[type=submit] i{margin-right:3px;font-size:18px;-webkit-transform:translate(0,3px);-ms-transform:translate(0,3px);transform:translate(0,3px);display:inline-block;-webkit-transition:opacity .2s;transition:opacity .2s}#registrationForm .forum-page input.create-new-thread[type=submit]:hover,#registrationForm .forum-page input.delete-thread[type=submit]:hover,#registrationForm .forum-page input.follow[type=submit]:hover,#registrationForm .forum-page input.go-to-solution[type=submit]:hover,#registrationForm .forum-page input.login[type=submit]:hover,.forum-page #registrationForm input.create-new-thread[type=submit]:hover,.forum-page #registrationForm input.delete-thread[type=submit]:hover,.forum-page #registrationForm input.follow[type=submit]:hover,.forum-page #registrationForm input.go-to-solution[type=submit]:hover,.forum-page #registrationForm input.login[type=submit]:hover,.forum-page .button.create-new-thread:hover,.forum-page .button.delete-thread:hover,.forum-page .button.follow:hover,.forum-page .button.go-to-solution:hover,.forum-page .button.login:hover,.forum-page .create-new-thread.tagAdd:hover,.forum-page .delete-thread.tagAdd:hover,.forum-page .follow.tagAdd:hover,.forum-page .go-to-solution.tagAdd:hover,.forum-page .login.tagAdd:hover,.forum-page .quick-menu .login input.create-new-thread[type=submit]:hover,.forum-page .quick-menu .login input.delete-thread[type=submit]:hover,.forum-page .quick-menu .login input.follow[type=submit]:hover,.forum-page .quick-menu .login input.go-to-solution[type=submit]:hover,.forum-page .quick-menu .login input.login[type=submit]:hover,.forum-page .quick-menu .new-profile input.create-new-thread[type=submit]:hover,.forum-page .quick-menu .new-profile input.delete-thread[type=submit]:hover,.forum-page .quick-menu .new-profile input.follow[type=submit]:hover,.forum-page .quick-menu .new-profile input.go-to-solution[type=submit]:hover,.forum-page .quick-menu .new-profile input.login[type=submit]:hover,.quick-menu .login .forum-page input.create-new-thread[type=submit]:hover,.quick-menu .login .forum-page input.delete-thread[type=submit]:hover,.quick-menu .login .forum-page input.follow[type=submit]:hover,.quick-menu .login .forum-page input.go-to-solution[type=submit]:hover,.quick-menu .login .forum-page input.login[type=submit]:hover,.quick-menu .new-profile .forum-page input.create-new-thread[type=submit]:hover,.quick-menu .new-profile .forum-page input.delete-thread[type=submit]:hover,.quick-menu .new-profile .forum-page input.follow[type=submit]:hover,.quick-menu .new-profile .forum-page input.go-to-solution[type=submit]:hover,.quick-menu .new-profile .forum-page input.login[type=submit]:hover{opacity:1}#registrationForm .forum-page input.transparent[type=submit],.forum-page #registrationForm input.transparent[type=submit],.forum-page .button.transparent,.forum-page .quick-menu .login input.transparent[type=submit],.forum-page .quick-menu .new-profile input.transparent[type=submit],.forum-page .transparent.tagAdd,.quick-menu .login .forum-page input.transparent[type=submit],.quick-menu .new-profile .forum-page input.transparent[type=submit]{border:1px solid rgba(0,0,0,.5);background:0 0;color:rgba(0,0,0,.5);padding:5px 17px 9px 13px}#registrationForm .forum-page input.transparent[type=submit]:hover,.forum-page #registrationForm input.transparent[type=submit]:hover,.forum-page .button.transparent:hover,.forum-page .quick-menu .login input.transparent[type=submit]:hover,.forum-page .quick-menu .new-profile input.transparent[type=submit]:hover,.forum-page .transparent.tagAdd:hover,.quick-menu .login .forum-page input.transparent[type=submit]:hover,.quick-menu .new-profile .forum-page input.transparent[type=submit]:hover{background:0 0;color:#000;border-color:#000}#registrationForm .forum-page input.transparent[type=submit] .ink,.forum-page #registrationForm input.transparent[type=submit] .ink,.forum-page .button.transparent .ink,.forum-page .quick-menu .login input.transparent[type=submit] .ink,.forum-page .quick-menu .new-profile input.transparent[type=submit] .ink,.forum-page .transparent.tagAdd .ink,.quick-menu .login .forum-page input.transparent[type=submit] .ink,.quick-menu .new-profile .forum-page input.transparent[type=submit] .ink{background:rgba(46,179,105,.23)}#registrationForm .forum-page input.delete-thread[type=submit],.forum-page #registrationForm input.delete-thread[type=submit],.forum-page .button.delete-thread,.forum-page .delete-thread.tagAdd,.forum-page .quick-menu .login input.delete-thread[type=submit],.forum-page .quick-menu .new-profile input.delete-thread[type=submit],.quick-menu .login .forum-page input.delete-thread[type=submit],.quick-menu .new-profile .forum-page input.delete-thread[type=submit]{opacity:1;border-color:transparent}#registrationForm .forum-page input.delete-thread[type=submit] i,.forum-page #registrationForm input.delete-thread[type=submit] i,.forum-page .button.delete-thread i,.forum-page .delete-thread.tagAdd i,.forum-page .quick-menu .login input.delete-thread[type=submit] i,.forum-page .quick-menu .new-profile input.delete-thread[type=submit] i,.quick-menu .login .forum-page input.delete-thread[type=submit] i,.quick-menu .new-profile .forum-page input.delete-thread[type=submit] i{color:#fff}#registrationForm .forum-page input.delete-thread[type=submit]:hover i,.forum-page #registrationForm input.delete-thread[type=submit]:hover i,.forum-page .button.delete-thread:hover i,.forum-page .delete-thread.tagAdd:hover i,.forum-page .quick-menu .login input.delete-thread[type=submit]:hover i,.forum-page .quick-menu .new-profile input.delete-thread[type=submit]:hover i,.quick-menu .login .forum-page input.delete-thread[type=submit]:hover i,.quick-menu .new-profile .forum-page input.delete-thread[type=submit]:hover i{opacity:.5}#registrationForm .forum-page input.delete-thread[type=submit] .ink,.forum-page #registrationForm input.delete-thread[type=submit] .ink,.forum-page .button.delete-thread .ink,.forum-page .delete-thread.tagAdd .ink,.forum-page .quick-menu .login input.delete-thread[type=submit] .ink,.forum-page .quick-menu .new-profile input.delete-thread[type=submit] .ink,.quick-menu .login .forum-page input.delete-thread[type=submit] .ink,.quick-menu .new-profile .forum-page input.delete-thread[type=submit] .ink{background:rgba(255,255,255,.3)}#registrationForm .forum-page input.following[type=submit],.forum-page #registrationForm input.following[type=submit],.forum-page .button.following,.forum-page .following.tagAdd,.forum-page .quick-menu .login input.following[type=submit],.forum-page .quick-menu .new-profile input.following[type=submit],.quick-menu .login .forum-page input.following[type=submit],.quick-menu .new-profile .forum-page input.following[type=submit]{background:#2EB369;color:#fff;opacity:1;border-color:transparent}#registrationForm .forum-page input.following[type=submit]:hover,.forum-page #registrationForm input.following[type=submit]:hover,.forum-page .button.following:hover,.forum-page .following.tagAdd:hover,.forum-page .quick-menu .login input.following[type=submit]:hover,.forum-page .quick-menu .new-profile input.following[type=submit]:hover,.quick-menu .login .forum-page input.following[type=submit]:hover,.quick-menu .new-profile .forum-page input.following[type=submit]:hover{background:#33c775}#registrationForm .forum-page input.following[type=submit]:hover i,.forum-page #registrationForm input.following[type=submit]:hover i,.forum-page .button.following:hover i,.forum-page .following.tagAdd:hover i,.forum-page .quick-menu .login input.following[type=submit]:hover i,.forum-page .quick-menu .new-profile input.following[type=submit]:hover i,.quick-menu .login .forum-page input.following[type=submit]:hover i,.quick-menu .new-profile .forum-page input.following[type=submit]:hover i{opacity:.5}#registrationForm .forum-page input.create-new-thread[type=submit],#registrationForm .forum-page input.login[type=submit],.forum-page #registrationForm input.create-new-thread[type=submit],.forum-page #registrationForm input.login[type=submit],.forum-page .button.create-new-thread,.forum-page .button.login,.forum-page .create-new-thread.tagAdd,.forum-page .login.tagAdd,.forum-page .quick-menu .login input.create-new-thread[type=submit],.forum-page .quick-menu .login input.login[type=submit],.forum-page .quick-menu .new-profile input.create-new-thread[type=submit],.forum-page .quick-menu .new-profile input.login[type=submit],.quick-menu .login .forum-page input.create-new-thread[type=submit],.quick-menu .login .forum-page input.login[type=submit],.quick-menu .new-profile .forum-page input.create-new-thread[type=submit],.quick-menu .new-profile .forum-page input.login[type=submit]{padding:9px 18px 10px 14px;opacity:1;border-color:transparent;font-size:1rem;font-weight:700;color:#fff}#registrationForm .forum-page input.create-new-thread[type=submit] i,#registrationForm .forum-page input.login[type=submit] i,.forum-page #registrationForm input.create-new-thread[type=submit] i,.forum-page #registrationForm input.login[type=submit] i,.forum-page .button.create-new-thread i,.forum-page .button.login i,.forum-page .create-new-thread.tagAdd i,.forum-page .login.tagAdd i,.forum-page .quick-menu .login input.create-new-thread[type=submit] i,.forum-page .quick-menu .login input.login[type=submit] i,.forum-page .quick-menu .new-profile input.create-new-thread[type=submit] i,.forum-page .quick-menu .new-profile input.login[type=submit] i,.quick-menu .login .forum-page input.create-new-thread[type=submit] i,.quick-menu .login .forum-page input.login[type=submit] i,.quick-menu .new-profile .forum-page input.create-new-thread[type=submit] i,.quick-menu .new-profile .forum-page input.login[type=submit] i{color:#fff;-webkit-transform:translate(0,3px);-ms-transform:translate(0,3px);transform:translate(0,3px)}#registrationForm .forum-page input.create-new-thread[type=submit]:hover,#registrationForm .forum-page input.login[type=submit]:hover,.forum-page #registrationForm input.create-new-thread[type=submit]:hover,.forum-page #registrationForm input.login[type=submit]:hover,.forum-page .button.create-new-thread:hover,.forum-page .button.login:hover,.forum-page .create-new-thread.tagAdd:hover,.forum-page .login.tagAdd:hover,.forum-page .quick-menu .login input.create-new-thread[type=submit]:hover,.forum-page .quick-menu .login input.login[type=submit]:hover,.forum-page .quick-menu .new-profile input.create-new-thread[type=submit]:hover,.forum-page .quick-menu .new-profile input.login[type=submit]:hover,.quick-menu .login .forum-page input.create-new-thread[type=submit]:hover,.quick-menu .login .forum-page input.login[type=submit]:hover,.quick-menu .new-profile .forum-page input.create-new-thread[type=submit]:hover,.quick-menu .new-profile .forum-page input.login[type=submit]:hover{background:#45cf82}#registrationForm .forum-page input.create-new-thread.disabled[type=submit],#registrationForm .forum-page input.login.disabled[type=submit],.forum-page #registrationForm input.create-new-thread.disabled[type=submit],.forum-page #registrationForm input.login.disabled[type=submit],.forum-page .button.create-new-thread.disabled,.forum-page .button.login.disabled,.forum-page .create-new-thread.disabled.tagAdd,.forum-page .login.disabled.tagAdd,.forum-page .quick-menu .login input.create-new-thread.disabled[type=submit],.forum-page .quick-menu .login input.login.disabled[type=submit],.forum-page .quick-menu .new-profile input.create-new-thread.disabled[type=submit],.forum-page .quick-menu .new-profile input.login.disabled[type=submit],.quick-menu .login .forum-page input.create-new-thread.disabled[type=submit],.quick-menu .login .forum-page input.login.disabled[type=submit],.quick-menu .new-profile .forum-page input.create-new-thread.disabled[type=submit],.quick-menu .new-profile .forum-page input.login.disabled[type=submit]{background:0 0;border:1px solid #7f7f7f;color:#7f7f7f}#registrationForm .forum-page input.create-new-thread.disabled[type=submit] i,#registrationForm .forum-page input.login.disabled[type=submit] i,.forum-page #registrationForm input.create-new-thread.disabled[type=submit] i,.forum-page #registrationForm input.login.disabled[type=submit] i,.forum-page .button.create-new-thread.disabled i,.forum-page .button.login.disabled i,.forum-page .create-new-thread.disabled.tagAdd i,.forum-page .login.disabled.tagAdd i,.forum-page .quick-menu .login input.create-new-thread.disabled[type=submit] i,.forum-page .quick-menu .login input.login.disabled[type=submit] i,.forum-page .quick-menu .new-profile input.create-new-thread.disabled[type=submit] i,.forum-page .quick-menu .new-profile input.login.disabled[type=submit] i,.quick-menu .login .forum-page input.create-new-thread.disabled[type=submit] i,.quick-menu .login .forum-page input.login.disabled[type=submit] i,.quick-menu .new-profile .forum-page input.create-new-thread.disabled[type=submit] i,.quick-menu .new-profile .forum-page input.login.disabled[type=submit] i{color:#7f7f7f}#registrationForm .forum-page input.create-new-thread.disabled[type=submit]:hover,#registrationForm .forum-page input.login.disabled[type=submit]:hover,.forum-page #registrationForm input.create-new-thread.disabled[type=submit]:hover,.forum-page #registrationForm input.login.disabled[type=submit]:hover,.forum-page .button.create-new-thread.disabled:hover,.forum-page .button.login.disabled:hover,.forum-page .create-new-thread.disabled.tagAdd:hover,.forum-page .login.disabled.tagAdd:hover,.forum-page .quick-menu .login input.create-new-thread.disabled[type=submit]:hover,.forum-page .quick-menu .login input.login.disabled[type=submit]:hover,.forum-page .quick-menu .new-profile input.create-new-thread.disabled[type=submit]:hover,.forum-page .quick-menu .new-profile input.login.disabled[type=submit]:hover,.quick-menu .login .forum-page input.create-new-thread.disabled[type=submit]:hover,.quick-menu .login .forum-page input.login.disabled[type=submit]:hover,.quick-menu .new-profile .forum-page input.create-new-thread.disabled[type=submit]:hover,.quick-menu .new-profile .forum-page input.login.disabled[type=submit]:hover{color:#000;border-color:#000}#registrationForm .forum-page input.create-new-thread.disabled[type=submit]:hover i,#registrationForm .forum-page input.login.disabled[type=submit]:hover i,.forum-page #registrationForm input.create-new-thread.disabled[type=submit]:hover i,.forum-page #registrationForm input.login.disabled[type=submit]:hover i,.forum-page .button.create-new-thread.disabled:hover i,.forum-page .button.login.disabled:hover i,.forum-page .create-new-thread.disabled.tagAdd:hover i,.forum-page .login.disabled.tagAdd:hover i,.forum-page .quick-menu .login input.create-new-thread.disabled[type=submit]:hover i,.forum-page .quick-menu .login input.login.disabled[type=submit]:hover i,.forum-page .quick-menu .new-profile input.create-new-thread.disabled[type=submit]:hover i,.forum-page .quick-menu .new-profile input.login.disabled[type=submit]:hover i,.quick-menu .login .forum-page input.create-new-thread.disabled[type=submit]:hover i,.quick-menu .login .forum-page input.login.disabled[type=submit]:hover i,.quick-menu .new-profile .forum-page input.create-new-thread.disabled[type=submit]:hover i,.quick-menu .new-profile .forum-page input.login.disabled[type=submit]:hover i{color:#000;opacity:1}.forum-overview{background:#fff;max-width:1160px;padding:20px 0 0;margin:0 auto}.forum-overview .scrolly-loading{margin:2rem auto;text-align:center;display:block;position:relative;left:50%}.forum-overview .scrolly-loading .span{background-color:rgba(80,77,62,.5);-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}.forum-overview #breadcrumb{display:inline-block;padding:0;margin-bottom:15px}.forum-overview #breadcrumb li{display:none}.forum-overview #breadcrumb li:last-child{display:block;opacity:.5;font-style:italic}.forum-overview #breadcrumb li a{font-size:.9rem}.forum-overview .sorting{width:100%;text-align:center}.forum-overview .sorting select{font-family:Asap,sans-serif;position:relative;overflow:hidden;-webkit-appearance:none;-moz-appearance:none;background:url(/assets/images/selectdown_unfocus.svg) 95% center no-repeat #fff;background-size:11px 13px;color:#4d4d4d;width:100%;-webkit-transition:border .3s;transition:border .3s}.forum-overview .sorting select:focus,.forum-overview .sorting select:hover{border-color:#a3db78;outline:0;cursor:pointer;background:url(/assets/images/selectdown_our.svg) 95% center no-repeat #fff;background-size:11px 13px}.forum-overview .sorting select option{margin:0;display:block}.forum-archive-header{color:#898989;font-size:.9rem;margin:0 0 20px;padding:0 10px;text-align:center}.forum-archive-header .container,.forum-archive-header .page,.forum-archive-header .subpage{padding:0}.forum-archive-header .container .row,.forum-archive-header .page .row,.forum-archive-header .subpage .row{margin:0}.forum-archive-header #breadcrumb span:last-child{color:#383838}.forum-archive-header #breadcrumb span:last-child:after{display:none}.forum-archive-header #breadcrumb span:after{content:"";display:inline-block;margin:0 5px;background:url(/assets/images/breadcrumb.png) bottom center no-repeat;background-size:100%;height:16px;width:16px;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.projectGroups{margin-top:50px}.projectGroups .projectGroup{min-height:150px}.projectGroups .projectGroup h3{color:rgba(0,0,0,.8);font-size:1.3rem}.projectGroups .projectGroup p{color:#000;line-height:1.5;font-size:.97rem}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media (min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}table.visible-xs.visible-sm{display:table}tr.visible-xs.visible-sm{display:table-row!important}td.visible-xs.visible-sm,th.visible-xs.visible-sm{display:table-cell!important}.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-md.visible-sm{display:block!important}table.visible-md.visible-sm{display:table}tr.visible-md.visible-sm{display:table-row!important}td.visible-md.visible-sm,th.visible-md.visible-sm{display:table-cell!important}.visible-lg.visible-sm{display:block!important}table.visible-lg.visible-sm{display:table}tr.visible-lg.visible-sm{display:table-row!important}td.visible-lg.visible-sm,th.visible-lg.visible-sm{display:table-cell!important}.hidden-lg.hidden-sm,.hidden-md.hidden-sm,.hidden-sm,.hidden-xs.hidden-sm,td.hidden-lg.hidden-sm,td.hidden-md.hidden-sm,td.hidden-sm,td.hidden-xs.hidden-sm,th.hidden-lg.hidden-sm,th.hidden-md.hidden-sm,th.hidden-sm,th.hidden-xs.hidden-sm,tr.hidden-lg.hidden-sm,tr.hidden-md.hidden-sm,tr.hidden-sm,tr.hidden-xs.hidden-sm{display:none!important}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,header .search input[type=submit]{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}section{padding:80px 0}#registrationForm p{margin-left:.5rem}body{padding-top:120px}header{top:-120px}header .navigation{padding:30px 0;position:fixed}header .logo{background-size:40px auto;text-indent:46px}header .logo:hover{color:rgba(255,255,255,.66);background-size:36px auto;background-position:4px center}header nav{visibility:visible;display:block}header .search{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}header .search input[type=search]{float:left;width:100%}header .search .search-text p{display:block;font-size:1rem;text-align:center;max-width:80%;margin:1rem auto 0}header.sticky .logo{background-size:30px auto;text-indent:40px}.notificationCount{right:-4px;top:3px}#breadcrumb{display:inline-block;width:auto}.quick-menu{width:450px;min-height:100%;-webkit-transform:translateX(450px);-ms-transform:translateX(450px);transform:translateX(450px)}.quick-menu .close,.quick-menu .settings{top:3px}body.quickmenu .navigation,body.quickmenu .wrapper{margin-left:-100px;margin-right:100px;overflow:hidden;max-height:100vh}body.quickmenu .navigation:after,body.quickmenu .wrapper:after{visibility:visible;opacity:1}.search-all-form{margin-top:100px}.search-all-results .type-icon{width:5%;font-size:2rem;color:#000}.search-all-results .type-context{width:95%}.plain .search-all{padding:0 15px}.wrapper{margin-bottom:0}.wrapper:before,footer{height:142px}.has-sidebar .sidebar-area .sidebar-content,.projects-page .sidebar-area .sidebar-content{float:right}.has-sidebar .main-area .main-content,.projects-page .main-area .main-content{padding-left:40px;padding-right:40px}#registrationForm .profile .profile-settings input[type=submit],.profile .profile-settings #registrationForm input[type=submit],.profile .profile-settings .button,.profile .profile-settings .quick-menu .login input[type=submit],.profile .profile-settings .quick-menu .new-profile input[type=submit],.profile .profile-settings .tagAdd,.quick-menu .login .profile .profile-settings input[type=submit],.quick-menu .new-profile .profile .profile-settings input[type=submit]{padding:12px 20px}.profile .profile-settings-forms div.profile-input input,.profile .profile-settings-forms div.profile-input textarea{width:300px}.profile .profile-settings-forms div.profile-input textarea{width:298px}.box .row [class*=col-]{float:none;display:table-cell;vertical-align:top}.box .row{margin:0;display:table}.box .stats{text-align:right;right:0;bottom:0}.box .other .edit{top:0;right:0}.box .other{margin-top:0!important}.profile-settings-following li{margin-bottom:1rem;padding-bottom:0;font-size:.9rem;border-bottom:none}.profile-settings-following li a{font-size:1rem;margin-bottom:0}.profile-settings-following li span{display:inline-block!important}#registrationForm .profile-settings-following li input.unfollow[type=submit],.profile-settings-following li #registrationForm input.unfollow[type=submit],.profile-settings-following li .quick-menu .login input.unfollow[type=submit],.profile-settings-following li .quick-menu .new-profile input.unfollow[type=submit],.profile-settings-following li .unfollow.button,.profile-settings-following li .unfollow.tagAdd,.quick-menu .login .profile-settings-following li input.unfollow[type=submit],.quick-menu .new-profile .profile-settings-following li input.unfollow[type=submit]{display:inline-block;font-size:.75rem;padding:0}.profile-settings #contris #forums a.remove-forum,.profile-settings #contris ul a.remove-contri{max-width:14px;overflow:hidden}.markdown-syntax pre{margin:20px -30px}.markdown-editor .show .wmd-button{top:10px;opacity:.9}.markdown-editor .markdown-close{top:1.5rem}.category a,.category span.cat,.version a,.version span.cat{padding:4px 6px;font-size:.85rem}.roles span:first-child{margin-left:.3rem}.comments{padding:0 20px 0 30px;margin:0 0 0 30px}.comments .comment .comment-inner{padding:20px 30px 30px}.comments .comment .highfive,.comments .comment .photo span{font-size:.7rem;background:#fff;padding:3px;text-align:center;color:#8e8e8e;display:block}.comments .comment .photo span{text-decoration:none;position:absolute;left:50%;-webkit-transform:translate(-50%,4px);-ms-transform:translate(-50%,4px);transform:translate(-50%,4px)}.comments .comment .photo{left:-52px}.comments .comment .photo img{max-width:44px}.comments .comment .highfive{right:auto;top:auto;-webkit-transform:translate(-52px,6px);-ms-transform:translate(-52px,6px);transform:translate(-52px,6px);border:none;max-width:44px;min-width:44px;line-height:1.3}.comments .comment .highfive a,.comments .comment .highfive img{margin:0}.comments .comment .highfive .highfive-count{display:inline-block;font-size:.85rem;font-weight:700;padding-top:3px}.comments .comment .highfive .highfive-count+a{margin-top:10px}.comments .comment .highfive img{display:block;margin:0 auto .2rem}.comments .comment .meta .hide-xs,.comments .comment .meta .profile a,.comments .comment:hover .actions a span,.forum-overview #breadcrumb li{display:inline-block}.comments .comment .meta .gotosolution{float:none}.comments .comment.question .topic{font-size:1.5rem}.comments .comment .body-meta .category a,.comments .comment .body-meta .version a{font-size:.9rem}.comments .comment .body-meta .topic{margin-bottom:0;width:74%}.comments .comment .body-meta .categories{width:25%;text-align:right;float:right}.comments .comment .actions a{overflow:hidden;margin-right:.5rem}.comments .comment .actions a i{font-size:1.1rem;margin-right:.5rem}.comments .comment .actions{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;padding:10px 0}.comments .level-2{margin-left:30px}#registrationForm .replybutton input.reply[type=submit],.quick-menu .login .replybutton input.reply[type=submit],.quick-menu .new-profile .replybutton input.reply[type=submit],.replybutton #registrationForm input.reply[type=submit],.replybutton .button.reply,.replybutton .quick-menu .login input.reply[type=submit],.replybutton .quick-menu .new-profile input.reply[type=submit],.replybutton .reply.tagAdd{font-size:1.2rem}.replybutton.notloggedin{padding:30px 0;margin:60px auto 30px;width:100%}.pagination{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.pagination a{padding:6px 12px}.packages-content .box .package-badge{position:absolute;right:0;bottom:25px}.package-create .stepNavigation li{font-size:.9rem;margin-right:1rem}.package-create label{width:15rem}.tagAdd{position:absolute;float:none}.package-detail-sidebar{margin-top:0}.public-member .forum-thread-text h3{font-size:1.1rem}.notification,.notification__blue,.notification__green,.notification__red,.notification__yellow{padding:20px;width:100%;top:100px;bottom:auto}.notification p,.notification__blue p,.notification__green p,.notification__red p,.notification__yellow p{font-size:.95rem}.notification .message,.notification__blue .message,.notification__green .message,.notification__red .message,.notification__yellow .message{-webkit-box-flex:1;-webkit-flex:1 0 89%;-ms-flex:1 0 89%;flex:1 0 89%;margin-right:1%;margin-bottom:0}.notification .close-notification,.notification__blue .close-notification,.notification__green .close-notification,.notification__red .close-notification,.notification__yellow .close-notification{-webkit-box-flex:0;-webkit-flex:0 0 10%;-ms-flex:0 0 10%;flex:0 0 10%}.docs .advanced,.docs .beginners{padding:80px 60px}.docs .col-md-6:last-child{border-left:1px solid rgba(127,148,153,.11)}#registrationForm .docs input[type=submit],.docs #registrationForm input[type=submit],.docs .button,.docs .quick-menu .login input[type=submit],.docs .quick-menu .new-profile input[type=submit],.docs .tagAdd,.quick-menu .login .docs input[type=submit],.quick-menu .new-profile .docs input[type=submit]{font-size:1.2rem}section.forum h1{font-size:2.4rem}section.forum h1+p{padding:0;font-size:1.2rem}section.forum .col-md-6{margin-bottom:0}#registrationForm section.forum input[type=submit],.quick-menu .login section.forum input[type=submit],.quick-menu .new-profile section.forum input[type=submit],section.forum #registrationForm input[type=submit],section.forum .button,section.forum .quick-menu .login input[type=submit],section.forum .quick-menu .new-profile input[type=submit],section.forum .tagAdd{font-size:1.2rem}.forum-thread img,.person-activity img{max-width:58px}.forum-thread h3,.person-activity h3{font-size:1.1rem}.forum-thread .col-xs-2,.person-activity .col-xs-2{padding:0 .3rem}.leaderboard h1,.people h1{font-size:2.4rem}#registrationForm .leaderboard input[type=submit],#registrationForm .people input[type=submit],.leaderboard #registrationForm input[type=submit],.leaderboard .button,.leaderboard .meta .name,.leaderboard .quick-menu .login input[type=submit],.leaderboard .quick-menu .new-profile input[type=submit],.leaderboard .tagAdd,.map .people-activity strong,.people #registrationForm input[type=submit],.people .button,.people .quick-menu .login input[type=submit],.people .quick-menu .new-profile input[type=submit],.people .tagAdd,.quick-menu .login .leaderboard input[type=submit],.quick-menu .login .people input[type=submit],.quick-menu .new-profile .leaderboard input[type=submit],.quick-menu .new-profile .people input[type=submit]{font-size:1.2rem}.leaderboard p,.people p{padding:0;font-size:1.2rem}.leaderboard div[data-attr=weeks],.leaderboard div[data-attr=alltime]{margin:2rem 0}.leaderboard div[data-attr=alltime]{margin-bottom:0;text-align:right}.leaderboard div[data-attr=alltime] .profile,.leaderboard div[data-attr=alltime] strong{padding-left:0;padding-right:.5rem}.leaderboard div[data-attr=alltime] .profile{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.leaderboard div[data-attr=alltime] .profile .meta{margin-left:0;margin-right:4%}.leaderboard .avatar{-webkit-box-flex:0;-webkit-flex:0 0 10%;-ms-flex:0 0 10%;flex:0 0 10%}.leaderboard .meta{-webkit-box-flex:0;-webkit-flex:0 0 86%;-ms-flex:0 0 86%;flex:0 0 86%}.events .event-info{position:absolute;right:0;top:50%;height:100%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:400px;padding:30px}.events #map,.map #map{height:500px}.events .event-info img{margin:10px auto 40px}.map .event-map{min-height:500px}.map .col-md-4{margin-bottom:0}#markdown-docs pre,.wikipage-page .markdown-syntax pre{margin:20px 0}.download-umbraco{height:calc(100vh - 262px);background:0 0}.download-umbraco:after{content:"";position:absolute;top:0;left:0;height:100%;width:100%;background:#a3db78;z-index:100}.download-umbraco .container,.download-umbraco .page,.download-umbraco .subpage{-webkit-transform:translate(-50%,-65%);-ms-transform:translate(-50%,-65%);transform:translate(-50%,-65%);position:absolute;top:50%;left:50%;padding:20px 0 0}.download-umbraco{padding:0 0 100px}.download-umbraco h1{font-size:3rem}.download-umbraco p{font-size:1.3rem}.steps{min-width:960px}.forum-overview .forum{padding:0 15px}.forum-overview .forum-settings .search-big{-webkit-box-flex:0;-webkit-flex:0 0 70%;-ms-flex:0 0 70%;flex:0 0 70%}.forum-overview .forum-settings .sorting{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%}.forum-overview .forum .topic-row .topic{font-size:1.15rem;line-height:1.3}.forum-overview .forum .topic-row .topic span{font-size:.9rem}.forum-overview .forum .topic-row{padding:35px 15px}.forum-overview .forum .topic{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;margin-right:10%}.forum-overview .forum .category{-webkit-box-flex:0;-webkit-flex:0 0 28%;-ms-flex:0 0 28%;flex:0 0 28%;margin-right:2%}#registrationForm .forum-page input.create-new-thread[type=submit],#registrationForm .forum-page input.delete-thread[type=submit],#registrationForm .forum-page input.follow[type=submit],#registrationForm .forum-page input.go-to-solution[type=submit],#registrationForm .forum-page input.login[type=submit],.forum-page #registrationForm input.create-new-thread[type=submit],.forum-page #registrationForm input.delete-thread[type=submit],.forum-page #registrationForm input.follow[type=submit],.forum-page #registrationForm input.go-to-solution[type=submit],.forum-page #registrationForm input.login[type=submit],.forum-page .button.create-new-thread,.forum-page .button.delete-thread,.forum-page .button.follow,.forum-page .button.go-to-solution,.forum-page .button.login,.forum-page .create-new-thread.tagAdd,.forum-page .delete-thread.tagAdd,.forum-page .follow.tagAdd,.forum-page .go-to-solution.tagAdd,.forum-page .login.tagAdd,.forum-page .quick-menu .login input.create-new-thread[type=submit],.forum-page .quick-menu .login input.delete-thread[type=submit],.forum-page .quick-menu .login input.follow[type=submit],.forum-page .quick-menu .login input.go-to-solution[type=submit],.forum-page .quick-menu .login input.login[type=submit],.forum-page .quick-menu .new-profile input.create-new-thread[type=submit],.forum-page .quick-menu .new-profile input.delete-thread[type=submit],.forum-page .quick-menu .new-profile input.follow[type=submit],.forum-page .quick-menu .new-profile input.go-to-solution[type=submit],.forum-page .quick-menu .new-profile input.login[type=submit],.quick-menu .login .forum-page input.create-new-thread[type=submit],.quick-menu .login .forum-page input.delete-thread[type=submit],.quick-menu .login .forum-page input.follow[type=submit],.quick-menu .login .forum-page input.go-to-solution[type=submit],.quick-menu .login .forum-page input.login[type=submit],.quick-menu .new-profile .forum-page input.create-new-thread[type=submit],.quick-menu .new-profile .forum-page input.delete-thread[type=submit],.quick-menu .new-profile .forum-page input.follow[type=submit],.quick-menu .new-profile .forum-page input.go-to-solution[type=submit],.quick-menu .new-profile .forum-page input.login[type=submit]{float:right}.forum-overview #breadcrumb{height:48px;line-height:48px;margin-bottom:0}.forum-overview #breadcrumb li:last-child{display:inline-block;opacity:1}.forum-archive-header{padding:10px 15px;text-align:left}}@media (min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}table.visible-xs.visible-md{display:table}tr.visible-xs.visible-md{display:table-row!important}td.visible-xs.visible-md,th.visible-xs.visible-md{display:table-cell!important}.visible-sm.visible-md{display:block!important}table.visible-sm.visible-md{display:table}tr.visible-sm.visible-md{display:table-row!important}td.visible-sm.visible-md,th.visible-sm.visible-md{display:table-cell!important}.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-lg.visible-md{display:block!important}table.visible-lg.visible-md{display:table}tr.visible-lg.visible-md{display:table-row!important}td.visible-lg.visible-md,th.visible-lg.visible-md{display:table-cell!important}.hidden-lg.hidden-md,.hidden-md,.hidden-sm.hidden-md,.hidden-xs.hidden-md,td.hidden-lg.hidden-md,td.hidden-md,td.hidden-sm.hidden-md,td.hidden-xs.hidden-md,th.hidden-lg.hidden-md,th.hidden-md,th.hidden-sm.hidden-md,th.hidden-xs.hidden-md,tr.hidden-lg.hidden-md,tr.hidden-md,tr.hidden-sm.hidden-md,tr.hidden-xs.hidden-md{display:none!important}}@media (min-width:993px){.sidebar-content nav{padding-top:50px}.sidebar-content nav.fixed{position:fixed;top:20px}}@media (min-width:1142px){.package-create small{margin:0;max-width:80%;opacity:.6}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}.visible-xs.visible-lg{display:block!important}table.visible-xs.visible-lg{display:table}tr.visible-xs.visible-lg{display:table-row!important}td.visible-xs.visible-lg,th.visible-xs.visible-lg{display:table-cell!important}.visible-sm.visible-lg{display:block!important}table.visible-sm.visible-lg{display:table}tr.visible-sm.visible-lg{display:table-row!important}td.visible-sm.visible-lg,th.visible-sm.visible-lg{display:table-cell!important}.visible-md.visible-lg{display:block!important}table.visible-md.visible-lg{display:table}tr.visible-md.visible-lg{display:table-row!important}td.visible-md.visible-lg,th.visible-md.visible-lg{display:table-cell!important}.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.hidden-lg,.hidden-md.hidden-lg,.hidden-sm.hidden-lg,.hidden-xs.hidden-lg,td.hidden-lg,td.hidden-md.hidden-lg,td.hidden-sm.hidden-lg,td.hidden-xs.hidden-lg,th.hidden-lg,th.hidden-md.hidden-lg,th.hidden-sm.hidden-lg,th.hidden-xs.hidden-lg,tr.hidden-lg,tr.hidden-md.hidden-lg,tr.hidden-sm.hidden-lg,tr.hidden-xs.hidden-lg{display:none!important}}@media (min-width:1600px){.has-sidebar .sidebar-area,.projects-page .sidebar-area{width:35%}.has-sidebar .main-area,.projects-page .main-area{width:65%}}@media (min-width:2100px){.has-sidebar .sidebar-area,.projects-page .sidebar-area{width:40%}.has-sidebar .main-area,.projects-page .main-area{width:60%}}@media (max-width:992px){.has-sidebar .main-area,.has-sidebar .page-content,.has-sidebar .sidebar-area,.projects-page .main-area,.projects-page .page-content,.projects-page .sidebar-area{width:100%;display:block}.has-sidebar .main-area .main-content,.has-sidebar .sidebar-area .sidebar-content,.projects-page .main-area .main-content,.projects-page .sidebar-area .sidebar-content{max-width:none}header{position:fixed;top:0;left:0;width:100%}.search-all .search-all-form,.search-all .search-all-results{-webkit-transition:width .2s cubic-bezier(.7,0,.3,1),max-width .2s cubic-bezier(.7,0,.3,1);transition:width .2s cubic-bezier(.7,0,.3,1),max-width .2s cubic-bezier(.7,0,.3,1)}.search-all.open .search-all-form,.search-all.open .search-all-results{width:100%}.sidebar-content nav ul{padding-left:0;text-align:center;margin-left:0}.sidebar-content nav .level-1{border-left:none;background-color:#bee6a0;padding-top:10px;padding-bottom:10px}.sidebar-content nav .level-2{border-left:none;background-color:#ccebb4}.sidebar-content nav .level-3{border-left:none;background-color:#e8f6dd}#registrationForm .profile .profile-settings-forms input[type=submit],#registrationForm .profile-settings-packages input[type=submit],.profile .profile-settings-forms #registrationForm input[type=submit],.profile .profile-settings-forms .button,.profile .profile-settings-forms .quick-menu .login input[type=submit],.profile .profile-settings-forms .quick-menu .new-profile input[type=submit],.profile .profile-settings-forms .tagAdd,.profile-settings-packages #registrationForm input[type=submit],.profile-settings-packages .button,.profile-settings-packages .quick-menu .login input[type=submit],.profile-settings-packages .quick-menu .new-profile input[type=submit],.profile-settings-packages .tagAdd,.quick-menu .login .profile .profile-settings-forms input[type=submit],.quick-menu .login .profile-settings-packages input[type=submit],.quick-menu .new-profile .profile .profile-settings-forms input[type=submit],.quick-menu .new-profile .profile-settings-packages input[type=submit]{width:100%}.markdown-editor.mobile-preview #input-container{display:none}.markdown-editor.mobile-preview #preview-container{display:block}.markdown-editor #preview-container,.markdown-editor .wmd-spacer{display:none}.markdown-editor.mobile-preview #wmd-preview{margin-bottom:4px}.roles{display:block;margin-top:.3rem}.comments .roles{display:inline-block;margin-left:5px}.comments .roles span{text-indent:-9999px;padding:0;margin:0;border-radius:50%;height:10px;width:10px}.package-create fieldset input{max-width:360px}.docs .col-md-6,.docs .container,.docs .page,.docs .row,.docs .subpage{padding:0}.docs .col-md-6 p,.docs .container p,.docs .page p,.docs .row p,.docs .subpage p{padding:0 40px}.docs .advanced{padding:40px 0 80px;border-top:1px solid rgba(127,148,153,.11)}.forum-overview .forum-settings .or{display:none}.forum-overview .forum .posts{-webkit-transform:translate(-6px,0);-ms-transform:translate(-6px,0);transform:translate(-6px,0)}}@media screen and (max-width:992px){.sidebar-content nav,.sidebar-content nav.fixed{position:relative}}@media (max-width:991px){header nav li,header nav ul{width:100%;text-align:center}.menu-toggle{display:block;position:absolute;right:20px;top:25px;z-index:999;-webkit-transition:top .3s;transition:top .3s}.toggle,.toggle span{position:relative;z-index:999}.toggle{display:inline-block;width:30px;height:30px}.toggle.cross{-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-delay:.1s;transition-delay:.1s}.toggle.cross span:after,.toggle.cross span:before{-webkit-transition-property:margin,-webkit-transform;transition-property:margin,transform;-webkit-transition-duration:.1s;transition-duration:.1s;-webkit-transition-delay:.1s,0;transition-delay:.1s,0}.toggle.cross.open span{background-color:transparent;-webkit-transition-delay:.1s;transition-delay:.1s}.toggle.cross.open span:before{margin-top:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition-delay:0,.1s;transition-delay:0,.1s;background-color:#fff}.toggle.cross.open span:after{margin-top:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition-delay:0,.1s;transition-delay:0,.1s;background-color:#fff}.toggle span{margin:0 auto;top:12px;width:25px;height:2px;background-color:#fff;display:block}.toggle span:after,.toggle span:before{position:absolute;content:'';width:25px;height:2px;background-color:#fff;display:block}header nav,header nav ul{background:rgba(163,219,120,.98);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.toggle span:before{margin-top:-7px}.toggle span:after{margin-top:7px}header .navigation .container,header .navigation .page,header .navigation .subpage{padding:0}header nav{position:fixed!important;top:0;left:0;width:100%;height:100%;-webkit-transform:translate(0,-100%);-ms-transform:translate(0,-100%);transform:translate(0,-100%);-webkit-transition:-webkit-transform .3s;transition:transform .3s;visibility:hidden;opacity:0;line-height:1;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}header nav.open,header nav.open .user,header nav.open li,header nav.open ul{visibility:visible}header nav.open{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);opacity:1}header nav .user,header nav ul{visibility:hidden}header nav ul{height:75%;padding-top:40px;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}header nav li{float:none;font-size:1.3rem;padding:.2rem 0;margin:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}header nav li:first-child{padding-top:0}header nav li:last-child{padding-bottom:0}header nav a,header nav a:active,header nav a:visited{text-decoration:none;color:#fff;-webkit-transition:color .2s;transition:color .2s}header nav a:active:hover,header nav a:hover,header nav a:visited:hover{color:#fff}header nav .user img{height:75px;width:75px}header nav .notificationCount{-webkit-transform:translate(-14px,6px);-ms-transform:translate(-14px,6px);transform:translate(-14px,6px)}}@media (max-width:768px){.dot .line.h-line,.markdown-editor #wmd-button-bar{display:none}.markdown-editor{top:100%;padding:20px 0 0}.markdown-editor.write{top:0}.markdown-editor #wmd-input{height:152px}.markdown-editor #wmd-preview{max-height:150px;min-height:150px;margin-bottom:0}.markdown-editor .markdown-control{padding:5px!important}.markdown-editor select{margin-top:20px}.markdown-editor #mobile-preview{margin-bottom:10px}}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-sm.visible-xs{display:block!important}table.visible-sm.visible-xs{display:table}tr.visible-sm.visible-xs{display:table-row!important}td.visible-sm.visible-xs,th.visible-sm.visible-xs{display:table-cell!important}.visible-md.visible-xs{display:block!important}table.visible-md.visible-xs{display:table}tr.visible-md.visible-xs{display:table-row!important}td.visible-md.visible-xs,th.visible-md.visible-xs{display:table-cell!important}.visible-lg.visible-xs{display:block!important}table.visible-lg.visible-xs{display:table}tr.visible-lg.visible-xs{display:table-row!important}td.visible-lg.visible-xs,th.visible-lg.visible-xs{display:table-cell!important}.hidden-lg.hidden-xs,.hidden-md.hidden-xs,.hidden-sm.hidden-xs,.hidden-xs,td.hidden-lg.hidden-xs,td.hidden-md.hidden-xs,td.hidden-sm.hidden-xs,td.hidden-xs,th.hidden-lg.hidden-xs,th.hidden-md.hidden-xs,th.hidden-sm.hidden-xs,th.hidden-xs,tr.hidden-lg.hidden-xs,tr.hidden-md.hidden-xs,tr.hidden-sm.hidden-xs,tr.hidden-xs{display:none!important}}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}.hidden-print,td.hidden-print,th.hidden-print,tr.hidden-print{display:none!important}}@-webkit-keyframes animGenie{0%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}25%{opacity:1;-webkit-transform:scale(1.2);transform:scale(1.2)}50%{opacity:1;-webkit-transform:scale(.8);transform:scale(.8)}75%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes animGenie{0%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}25%{opacity:1;-webkit-transform:scale(1.2);transform:scale(1.2)}50%{opacity:1;-webkit-transform:scale(.8);transform:scale(.8)}75%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes fadeOut{0%,100%{opacity:0}50%{opacity:1}}@keyframes fadeOut{0%,100%{opacity:0}50%{opacity:1}}@-webkit-keyframes newIn{0%{background-color:rgba(163,219,120,.1);box-shadow:0 3px 6px rgba(0,0,0,.08),0 3px 6px rgba(0,0,0,.14)}100%{background-color:#fff;box-shadow:none}}@keyframes newIn{0%{background-color:rgba(163,219,120,.1);box-shadow:0 3px 6px rgba(0,0,0,.08),0 3px 6px rgba(0,0,0,.14)}100%{background-color:#fff;box-shadow:none}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes searchLoading{0%,100%{opacity:1}50%{opacity:0}}@keyframes searchLoading{0%,100%{opacity:1}50%{opacity:0}}@-webkit-keyframes typing{0%{background-color:#fff;box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,.4)}25%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,.2),24px 0 0 0 rgba(255,255,255,.4)}75%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 #fff}}@keyframes typing{0%{background-color:#fff;box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,.4)}25%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,.2),24px 0 0 0 rgba(255,255,255,.4)}75%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 #fff}}@-webkit-keyframes ripple{100%{opacity:0;-webkit-transform:scale(2);transform:scale(2)}}@keyframes ripple{100%{opacity:0;-webkit-transform:scale(2);transform:scale(2)}} \ No newline at end of file +a,body{margin:0}a,hr{padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section{display:block}caption,th{text-align:left}#registrationForm input,body{font-family:Asap,sans-serif}.dataTable,table{border-collapse:collapse}abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;outline:0;border:0;background:0 0;vertical-align:baseline;font-size:100%}ins,mark{background-color:#ff9;color:#000}body{line-height:1}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{background:0 0;vertical-align:baseline;font-size:100%}ins{text-decoration:none}mark{font-weight:700;font-style:italic}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-spacing:0;background-color:transparent}hr{margin:1em 0;height:1px;border:0;border-top:1px solid #ccc}input,select{vertical-align:middle}*,:after,:before{box-sizing:border-box}h1,h2,h3,h4,h5,h6{font-weight:100}.container,.page,.subpage{max-width:1200px;margin:0 auto;padding:0 20px}.row{margin:20px -15px}.row:after,.row:before{content:" ";display:table}.row:after{clear:both}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}caption{padding-top:8px;padding-bottom:8px;color:#777}.login h2,.text-center{text-align:center}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.span,.user,body{position:relative}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs,td.visible-lg,td.visible-md,td.visible-sm,td.visible-xs,th.visible-lg,th.visible-md,th.visible-sm,th.visible-xs,tr.visible-lg,tr.visible-md,tr.visible-sm,tr.visible-xs{display:none!important}.hidden-xs{display:block!important}table.hidden-xs{display:table}tr.hidden-xs{display:table-row!important}td.hidden-xs,th.hidden-xs{display:table-cell!important}.hidden-sm{display:block!important}table.hidden-sm{display:table}tr.hidden-sm{display:table-row!important}td.hidden-sm,th.hidden-sm{display:table-cell!important}.hidden-md{display:block!important}table.hidden-md{display:table}tr.hidden-md{display:table-row!important}td.hidden-md,th.hidden-md{display:table-cell!important}.hidden-lg{display:block!important}table.hidden-lg{display:table}tr.hidden-lg{display:table-row!important}td.hidden-lg,th.hidden-lg{display:table-cell!important}.visible-print,td.visible-print,th.visible-print,tr.visible-print{display:none!important}.BoxShadow,.comments .comment .photo:hover img:hover,.leaderboard .user-profile:hover,.markdown-editor .draft.show:hover,.people .user-profile:hover,header .search input[type=search]:active,header .search input[type=search]:focus,header .search input[type=search]:hover,header .user img:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.docs-search-listing,.projects-default-listing,.table.table-striped.topic-list{opacity:1;-webkit-transition:opacity 50ms cubic-bezier(.7,0,.3,1);transition:opacity 50ms cubic-bezier(.7,0,.3,1)}.docs-search-listing.fadeResultOut,.projects-default-listing.fadeResultOut,.table.table-striped.topic-list.fadeResultOut{opacity:0}.fadeInUp,.steps .step{-webkit-animation-name:fadeInUp;animation-name:fadeInUp;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.newInAnimation{-webkit-animation-name:newIn;animation-name:newIn;animation-duration:1.2s;-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;-webkit-animation-timing-function:cubic-bezier(.7,0,.3,1);animation-timing-function:cubic-bezier(.7,0,.3,1)}.fadeOut,.newInAnimation{-webkit-animation-duration:1.2s}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut;animation-duration:1.2s;animation-iteration-count:1;-webkit-animation-fill-mode:forward;animation-fill-mode:forward;animation-timing-function:cubic-bezier(.7,0,.3,1);display:block}.user-logged-in .search-text p,.user-logged-in section.forum:before{display:none}.fadeOut,.searchLoading{-webkit-animation-timing-function:cubic-bezier(.7,0,.3,1);-webkit-animation-iteration-count:1}.searchLoading{-webkit-animation-name:searchLoading;animation-name:searchLoading;-webkit-animation-duration:2s;animation-duration:2s;animation-iteration-count:1;animation-timing-function:cubic-bezier(.7,0,.3,1)}body,html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:none;overflow-x:hidden;min-height:100%}body{font-size:16px;width:100%}a,a:active,a:visited{color:inherit}li,p{line-height:1.3;font-size:1rem;font-weight:400}section{padding:20px 0}.unread{border-left:3px solid #a3db78}.user-logged-in .search-all .search-all-form{margin-top:0}.user-logged-in .search-text{padding:2.2em 0 1rem!important}.user-logged-in section.forum{padding:30px 0;min-height:0}.search-all{background:#a3db78}.search-all .search-text{padding:1rem 0 3rem}.search-all .search-text strong{font-size:1.2rem;margin:0 0 .8rem;display:block;color:#fff}.search-all .search-text p{color:#fff}.search-all input{-webkit-appearance:none;border-radius:0}.loader-placeholder{margin:30px auto;width:100%}.loader-placeholder .span{margin:0 auto}.login h2{margin-bottom:.8rem;font-size:1.5rem;color:rgba(0,0,0,.8)}.login p{font-size:.95rem;color:#000}.login p a{text-decoration:underline!important}.login p a:hover{text-decoration:none}#registrationForm{padding:0}#registrationForm fieldset{max-width:640px}#registrationForm fieldset p{display:block;margin-left:0}#registrationForm label{text-align:left;font-size:.85rem}#registrationForm input{margin-bottom:5px;display:inline-block}[class*=" our-icon-"]:before,[class^=our-icon-]:before,[data-icon]:before{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1;font-family:our-umbraco!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important}#registrationForm input[type=password],#registrationForm input[type=text]{width:100%;padding:10px 20px 10px 8px;font-size:1rem;border:1px solid #e1e1e1;border-radius:5px}#posting,.span{border-radius:3px}#registrationForm input[type=submit]{margin:1rem auto;padding:15px 45px!important;font-size:1rem!important}#registrationForm p{display:inline-block;font-size:.9rem}#registrationForm p a:hover{text-decoration:none!important}@font-face{font-family:our-umbraco;src:url(fonts/our-icon/our-umbraco.eot);src:url(fonts/our-icon/our-umbraco.eot?#iefix) format("embedded-opentype"),url(fonts/our-icon/our-umbraco.woff) format("woff"),url(fonts/our-icon/our-umbraco.ttf) format("truetype"),url(fonts/our-icon/our-umbraco.svg#our-umbraco) format("svg");font-weight:400;font-style:normal}.markdown-editor .wmd-button-row #wmd-bold-button span:before,.our-icon-bold:before{content:"a"}.markdown-editor .wmd-button-row #wmd-code-button span:before,.our-icon-code:before{content:"b"}.markdown-editor .wmd-button-row #wmd-heading-button span:before,.our-icon-header:before{content:"c"}.markdown-editor .wmd-button-row #wmd-hr-button span:before,.our-icon-hr:before{content:"d"}.markdown-editor .wmd-button-row #wmd-link-button span:before,.our-icon-hyperlink:before{content:"e"}.markdown-editor .wmd-button-row #wmd-italic-button span:before,.our-icon-italic:before{content:"f"}.markdown-editor .wmd-button-row #wmd-olist-button span:before,.our-icon-ol:before{content:"g"}.markdown-editor .wmd-button-row #wmd-image-button span:before,.our-icon-picture:before{content:"h"}.markdown-editor .wmd-button-row #wmd-quote-button span:before,.our-icon-quote:before{content:"i"}.markdown-editor .wmd-button-row #wmd-redo-button span:before,.our-icon-redo:before{content:"j"}.markdown-editor .wmd-button-row #wmd-ulist-button span:before,.our-icon-ul:before{content:"k"}.markdown-editor .wmd-button-row #wmd-undo-button span:before,.our-icon-undo:before{content:"l"}@font-face{font-family:icomoon;src:url(fonts/icomoon/icomoon.eot);src:url(fonts/icomoon/icomoon.eot?#iefix) format("embedded-opentype"),url(fonts/icomoon/icomoon.woff) format("woff"),url(fonts/icomoon/icomoon.ttf) format("truetype"),url(fonts/icomoon/icomoon.svg#icomoon) format("svg");font-weight:400;font-style:normal}[data-icon]:before{content:attr(data-icon)}.icon-Activity,.icon-Add,.icon-Adressbook,.icon-Alarm-clock,.icon-Alert,.icon-Alert-alt,.icon-Alt,.icon-Anchor,.icon-App,.icon-Application-Error,.icon-Application-window,.icon-Application-window-alt,.icon-Arrivals,.icon-Arrow-down,.icon-Arrow-left,.icon-Arrow-right,.icon-Arrow-up,.icon-Art-easel,.icon-Article,.icon-Attachment,.icon-Auction-hammer,.icon-Autofill,.icon-Award,.icon-Baby-stroller,.icon-Backspace,.icon-Badge-add,.icon-Badge-count,.icon-Badge-remove,.icon-Badge-restricted,.icon-Ball,.icon-Band-aid,.icon-Bar-chart,.icon-Barcode,.icon-Bars,.icon-Battery-full,.icon-Battery-low,.icon-Beer-glass,.icon-Bell,.icon-Bell-off,.icon-Bill,.icon-Bill-dollar,.icon-Bill-euro,.icon-Bill-pound,.icon-Bill-yen,.icon-Billboard,.icon-Bills,.icon-Bills-dollar,.icon-Bills-euro,.icon-Bills-pound,.icon-Bills-yen,.icon-Binarycode,.icon-Binoculars,.icon-Bird,.icon-Birthday-cake,.icon-Block,.icon-Blueprint,.icon-Bluetooth,.icon-Boat-shipping,.icon-Bomb,.icon-Bones,.icon-Book,.icon-Book-alt,.icon-Book-alt-2,.icon-Bookmark,.icon-Books,.icon-Box,.icon-Box-alt,.icon-Box-open,.icon-Brackets,.icon-Brick,.icon-Briefcase,.icon-Browser-window,.icon-Brush,.icon-Brush-alt,.icon-Brush-alt-2,.icon-Bug,.icon-Bulleted-list,.icon-Burn,.icon-Bus,.icon-Calculator,.icon-Calendar,.icon-Calendar-alt,.icon-Camcorder,.icon-Camera-roll,.icon-Candy,.icon-Caps-lock,.icon-Car,.icon-Cash-register,.icon-Categories,.icon-Certificate,.icon-Chart,.icon-Chart-curve,.icon-Chat,.icon-Chat-active,.icon-Check,.icon-Checkbox,.icon-Checkbox-dotted,.icon-Checkbox-dotted-active,.icon-Checkbox-empty,.icon-Chess,.icon-Chip,.icon-Chip-alt,.icon-Cinema,.icon-Circle-dotted,.icon-Circle-dotted-active,.icon-Circuits,.icon-Circus,.icon-Client,.icon-Clothes-hanger,.icon-Cloud,.icon-Cloud-drive,.icon-Cloud-upload,.icon-Cloudy,.icon-Clubs,.icon-Cocktail,.icon-Code,.icon-Coffee,.icon-Coin,.icon-Coin-dollar,.icon-Coin-euro,.icon-Coin-pound,.icon-Coin-yen,.icon-Coins,.icon-Coins-alt,.icon-Coins-dollar,.icon-Coins-dollar-alt,.icon-Coins-euro,.icon-Coins-euro-alt,.icon-Coins-pound,.icon-Coins-pound-alt,.icon-Coins-yen,.icon-Coins-yen-alt,.icon-Color-bucket,.icon-Colorpicker,.icon-Columns,.icon-Comb,.icon-Combination-lock,.icon-Combination-lock-open,.icon-Command,.icon-Company,.icon-Compress,.icon-Connection,.icon-Console,.icon-Contrast,.icon-Conversation,.icon-Conversation-alt,.icon-Coverflow,.icon-Credit-card,.icon-Credit-card-alt,.icon-Crop,.icon-Crosshair,.icon-Crown,.icon-Crown-alt,.icon-Cupcake,.icon-Curve,.icon-Cut,.icon-Dashboard,.icon-Defrag,.icon-Delete,.icon-Delete-key,.icon-Departure,.icon-Desk,.icon-Desktop,.icon-Diagnostics,.icon-Diagonal-arrow,.icon-Diagonal-arrow-alt,.icon-Diamond,.icon-Diamonds,.icon-Dice,.icon-Diploma,.icon-Diploma-alt,.icon-Directions,.icon-Directions-alt,.icon-Disc,.icon-Disk-image,.icon-Display,.icon-Dna,.icon-Dock-connector,.icon-Document,.icon-Document-dashed-line,.icon-Documents,.icon-Dollar-bag,.icon-Donate,.icon-Door-open,.icon-Door-open-alt,.icon-Download,.icon-Download-alt,.icon-Drop,.icon-Eco,.icon-Economy,.icon-Edit,.icon-Eject,.icon-Employee,.icon-Energy-saving-bulb,.icon-Enter,.icon-Equalizer,.icon-Escape,.icon-Ethernet,.icon-Euro-bag,.icon-Exit-fullscreen,.icon-Eye,.icon-FIlter,.icon-Facebook-like,.icon-Factory,.icon-Favorite,.icon-Female-symbol,.icon-File-cabinet,.icon-Files,.icon-Filter-arrows,.icon-Fingerprint,.icon-Fire,.icon-Firewall,.icon-Firewire,.icon-Flag,.icon-Flag-alt,.icon-Flash,.icon-Flashlight,.icon-Flowerpot,.icon-Folder,.icon-Folder-open,.icon-Folder-outline,.icon-Folders,.icon-Font,.icon-Food,.icon-Footprints,.icon-Forking,.icon-Frame,.icon-Frame-alt,.icon-Fullscreen,.icon-Fullscreen-alt,.icon-Game,.icon-Geometry,.icon-Gift,.icon-Glasses,.icon-Globe,.icon-Globe-Asia,.icon-Globe-Europe---Africa,.icon-Globe-alt,.icon-Globe-inverted-america,.icon-Globe-inverted-asia,.icon-Globe-inverted-europe-africa,.icon-Gps,.icon-Graduate,.icon-Grid,.icon-Hammer,.icon-Hand-active,.icon-Hand-active-alt,.icon-Hand-pointer,.icon-Hand-pointer-alt,.icon-Handprint,.icon-Handshake,.icon-Handtool,.icon-Handtool-alt,.icon-Hard-drive,.icon-Hard-drive-alt,.icon-Hat,.icon-Hd,.icon-Headphones,.icon-Headset,.icon-Hearts,.icon-Height,.icon-Help,.icon-Help-alt,.icon-Home,.icon-Hourglass,.icon-Inactive-line,.icon-Inbox,.icon-Inbox-full,.icon-Indent,.icon-Infinity,.icon-Info,.icon-Invoice,.icon-Iphone,.icon-Item-arrangement,.icon-Junk,.icon-Key,.icon-Keyboard,.icon-Keychain,.icon-Keyhole,.icon-Lab,.icon-Laptop,.icon-Layers,.icon-Layers-alt,.icon-Layout,.icon-Left-double-arrow,.icon-Legal,.icon-Lense,.icon-Library,.icon-Light-down,.icon-Light-up,.icon-Lightbulb,.icon-Lightbulb-active,.icon-Lightning,.icon-Link,.icon-Linux-tux,.icon-List,.icon-Load,.icon-Loading,.icon-Locate,.icon-Location-near-me,.icon-Location-nearby,.icon-Lock,.icon-Log-out,.icon-Logout,.icon-Loupe,.icon-Magnet,.icon-Mailbox,.icon-Male-and-female,.icon-Male-symbol,.icon-Map,.icon-Map-alt,.icon-Map-loaction,.icon-Map-marker,.icon-Medal,.icon-Medical-emergency,.icon-Medicine,.icon-Meeting,.icon-Megaphone,.icon-Merge,.icon-Message,.icon-Message-open,.icon-Message-unopened,.icon-Microscope,.icon-Mindmap,.icon-Mobile,.icon-Molecular,.icon-Molecular-network,.icon-Mountain,.icon-Mouse,.icon-Mouse-cursor,.icon-Movie,.icon-Movie-alt,.icon-Multiple-credit-cards,.icon-Multiple-windows,.icon-Music,.icon-Name-badge,.icon-Navigation,.icon-Navigation-bottom,.icon-Navigation-down,.icon-Navigation-first,.icon-Navigation-horizontal,.icon-Navigation-last,.icon-Navigation-left,.icon-Navigation-right,.icon-Navigation-road,.icon-Navigation-top,.icon-Navigation-up,.icon-Navigation-vertical,.icon-Navigational-arrow,.icon-Network-alt,.icon-Newspaper,.icon-Newspaper-alt,.icon-Next,.icon-Next-media,.icon-Nodes,.icon-Notepad,.icon-Notepad-alt,.icon-Old-key,.icon-Old-phone,.icon-Operator,.icon-Ordered-list,.icon-Os-x,.icon-Out,.icon-Outbox,.icon-Outdent,.icon-Page-add,.icon-Page-down,.icon-Page-remove,.icon-Page-restricted,.icon-Page-up,.icon-Paint-roller,.icon-Palette,.icon-Panel-show,.icon-Pannel-close,.icon-Pants,.icon-Paper-bag,.icon-Paper-plane,.icon-Paper-plane-alt,.icon-Parachute-drop,.icon-Parental-control,.icon-Partly-cloudy,.icon-Paste-in,.icon-Path,.icon-Pause,.icon-Pc,.icon-People,.icon-People-alt,.icon-People-alt-2,.icon-People-female,.icon-Phone,.icon-Phone-ring,.icon-Photo-album,.icon-Picture,.icon-Pictures,.icon-Pictures-alt,.icon-Pictures-alt-2,.icon-Pie-chart,.icon-Piggy-bank,.icon-Pin-location,.icon-Piracy,.icon-Plane,.icon-Planet,.icon-Play,.icon-Playing-cards,.icon-Playlist,.icon-Plugin,.icon-Podcast,.icon-Poker-chip,.icon-Poll,.icon-Post-it,.icon-Pound-bag,.icon-Power,.icon-Power-outlet,.icon-Presentation,.icon-Previous,.icon-Previous-media,.icon-Price-dollar,.icon-Price-euro,.icon-Price-pound,.icon-Price-yen,.icon-Print,.icon-Printer-alt,.icon-Projector,.icon-Pulse,.icon-Pushpin,.icon-Qr-code,.icon-Quote,.icon-Radio,.icon-Radio-alt,.icon-Radio-receiver,.icon-Rain,.icon-Rate,.icon-Re-post,.icon-Readonly,.icon-Receipt-alt,.icon-Receipt-dollar,.icon-Receipt-euro,.icon-Receipt-pound,.icon-Receipt-yen,.icon-Reception,.icon-Record,.icon-Redo,.icon-Refresh,.icon-Remote,.icon-Remove,.icon-Repeat,.icon-Repeat-one,.icon-Reply-arrow,.icon-Resize,.icon-Return-to-top,.icon-Right-double-arrow,.icon-Road,.icon-Roadsign,.icon-Rocket,.icon-Rss,.icon-Ruler,.icon-Ruler-alt,.icon-Safe,.icon-Safedial,.icon-Sandbox-toys,.icon-Satellite-dish,.icon-Save,.icon-Scan,.icon-School,.icon-Screensharing,.icon-Script,.icon-Script-alt,.icon-Scull,.icon-Search,.icon-Security-camera,.icon-Sensor,.icon-Server,.icon-Server-alt,.icon-Settings,.icon-Settings-alt,.icon-Settings-alt-2,.icon-Share,.icon-Share-alt,.icon-Share-alt-2,.icon-Sharing-iphone,.icon-Shield,.icon-Shift,.icon-Shipping,.icon-Shipping-box,.icon-Shoe,.icon-Shopping-basket,.icon-Shopping-basket-alt,.icon-Shopping-basket-alt-2,.icon-Shorts,.icon-Shuffle,.icon-Sience,.icon-Simcard,.icon-Single-note,.icon-Sitemap,.icon-Sleep,.icon-Slideshow,.icon-Smiley,.icon-Smiley-inverted,.icon-Snow,.icon-Sound,.icon-Sound-low,.icon-Sound-medium,.icon-Sound-off,.icon-Sound-waves,.icon-Spades,.icon-Speaker,.icon-Speed-gauge,.icon-Split,.icon-Split-alt,.icon-Sprout,.icon-Squiggly-line,.icon-Ssd,.icon-Stacked-disks,.icon-Stamp,.icon-Stop,.icon-Stop-alt,.icon-Stop-hand,.icon-Store,.icon-Stream,.icon-Sunny,.icon-Sweatshirt,.icon-Sync,.icon-T-shirt,.icon-Tab,.icon-Tab-key,.icon-Tactics,.icon-Tag,.icon-Tags,.icon-Takeaway-cup,.icon-Target,.icon-Temperatrure-alt,.icon-Temperature,.icon-Terminal,.icon-Theater,.icon-Theif,.icon-Thought-bubble,.icon-Thumb-down,.icon-Thumb-up,.icon-Thumbnail-list,.icon-Thumbnails,.icon-Thumbnails-small,.icon-Ticket,.icon-Time,.icon-Timer,.icon-Tools,.icon-Top,.icon-Traffic-alt,.icon-Trafic,.icon-Train,.icon-Trash,.icon-Trash-alt,.icon-Trash-alt-2,.icon-Tree,.icon-Trophy,.icon-Truck,.icon-Tv,.icon-Tv-old,.icon-Umbraco_icons-01,.icon-Umbraco_icons-02,.icon-Umbraco_icons-03,.icon-Umbraco_icons-04,.icon-Umbraco_icons-05,.icon-Umbraco_icons-06,.icon-Umbraco_icons-07,.icon-Umbraco_icons-08,.icon-Umbrella,.icon-Undo,.icon-Universal,.icon-Unlocked,.icon-Usb,.icon-Usb-connector,.icon-User,.icon-User-female,.icon-User-females,.icon-User-females-alt,.icon-User-glasses,.icon-Users,.icon-Users-alt,.icon-Utilities,.icon-Vcard,.icon-Video,.icon-Voice,.icon-Wall-plug,.icon-Wallet,.icon-Wand,.icon-War,.icon-Weight,.icon-Width,.icon-Wifi,.icon-Window-popin,.icon-Window-sizes,.icon-Windows,.icon-Wine-glass,.icon-Wrench,.icon-Wrong,.icon-Yen-bag,.icon-Zip,.icon-Zoom-in,.icon-Zoom-out,.icon-axis-rotation,.icon-axis-rotation-2,.icon-axis-rotation-3,.icon-glasses,.icon-iMac,.icon-iPad,.icon-untitled{font-family:icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.quick-menu .login input,.quick-menu .new-profile input,button.button,button.tagAdd,header .search input{font-family:Asap,sans-serif}.icon-Zoom-out:before{content:"\e000"}.icon-Truck:before{content:"\e001"}.icon-Zoom-in:before{content:"\e002"}.icon-Zip:before{content:"\e003"}.icon-axis-rotation:before{content:"\e004"}.icon-Yen-bag:before{content:"\e005"}.icon-axis-rotation-2:before{content:"\e006"}.icon-axis-rotation-3:before{content:"\e007"}.icon-Wrench:before{content:"\e008"}.icon-Wine-glass:before{content:"\e009"}.icon-Wrong:before{content:"\e00a"}.icon-Windows:before{content:"\e00b"}.icon-Window-sizes:before{content:"\e00c"}.icon-Window-popin:before{content:"\e00d"}.icon-Wifi:before{content:"\e00e"}.icon-Width:before{content:"\e00f"}.icon-Weight:before{content:"\e010"}.icon-War:before{content:"\e011"}.icon-Wand:before{content:"\e012"}.icon-Wallet:before{content:"\e013"}.icon-Wall-plug:before{content:"\e014"}.icon-Umbraco_icons-06:before{content:"\e015"}.icon-Voice:before{content:"\e016"}.icon-Video:before{content:"\e017"}.icon-Vcard:before{content:"\e018"}.icon-Utilities:before{content:"\e019"}.icon-Users:before{content:"\e01a"}.icon-Users-alt:before{content:"\e01b"}.icon-User:before{content:"\e01c"}.icon-User-glasses:before{content:"\e01d"}.icon-User-females:before{content:"\e01e"}.icon-User-females-alt:before{content:"\e01f"}.icon-User-female:before{content:"\e020"}.icon-Usb:before{content:"\e021"}.icon-Usb-connector:before{content:"\e022"}.icon-Unlocked:before{content:"\e023"}.icon-Universal:before{content:"\e024"}.icon-Undo:before{content:"\e025"}.icon-Umbrella:before{content:"\e026"}.icon-Umbraco_icons-08:before{content:"\e027"}.icon-Umbraco_icons-07:before{content:"\e028"}.icon-Umbraco_icons-05:before{content:"\e029"}.icon-Umbraco_icons-04:before{content:"\e02a"}.icon-Umbraco_icons-03:before{content:"\e02b"}.icon-Umbraco_icons-02:before{content:"\e02c"}.icon-Umbraco_icons-01:before{content:"\e02d"}.icon-Tv:before{content:"\e02e"}.icon-Tv-old:before{content:"\e02f"}.icon-Trophy:before{content:"\e030"}.icon-Tree:before{content:"\e031"}.icon-Trash:before{content:"\e032"}.icon-Trash-alt:before{content:"\e033"}.icon-Trash-alt-2:before{content:"\e034"}.icon-Train:before{content:"\e035"}.icon-Trafic:before{content:"\e036"}.icon-Traffic-alt:before{content:"\e037"}.icon-Top:before{content:"\e038"}.icon-Tools:before{content:"\e039"}.icon-Timer:before{content:"\e03a"}.icon-Time:before{content:"\e03b"}.icon-T-shirt:before{content:"\e03c"}.icon-Tab-key:before{content:"\e03d"}.icon-Tab:before{content:"\e03e"}.icon-Tactics:before{content:"\e03f"}.icon-Tag:before{content:"\e040"}.icon-Tags:before{content:"\e041"}.icon-Takeaway-cup:before{content:"\e042"}.icon-Target:before{content:"\e043"}.icon-Temperatrure-alt:before{content:"\e044"}.icon-Temperature:before{content:"\e045"}.icon-Terminal:before{content:"\e046"}.icon-Theater:before{content:"\e047"}.icon-Theif:before{content:"\e048"}.icon-Thought-bubble:before{content:"\e049"}.icon-Thumb-down:before{content:"\e04a"}.icon-Thumb-up:before{content:"\e04b"}.icon-Thumbnail-list:before{content:"\e04c"}.icon-Thumbnails-small:before{content:"\e04d"}.icon-Thumbnails:before{content:"\e04e"}.icon-Ticket:before{content:"\e04f"}.icon-Sync:before{content:"\e050"}.icon-Sweatshirt:before{content:"\e051"}.icon-Sunny:before{content:"\e052"}.icon-Stream:before{content:"\e053"}.icon-Store:before{content:"\e054"}.icon-Stop:before{content:"\e055"}.icon-Stop-hand:before{content:"\e056"}.icon-Stop-alt:before{content:"\e057"}.icon-Stamp:before{content:"\e058"}.icon-Stacked-disks:before{content:"\e059"}.icon-Ssd:before{content:"\e05a"}.icon-Squiggly-line:before{content:"\e05b"}.icon-Sprout:before{content:"\e05c"}.icon-Split:before{content:"\e05d"}.icon-Split-alt:before{content:"\e05e"}.icon-Speed-gauge:before{content:"\e05f"}.icon-Speaker:before{content:"\e060"}.icon-Sound:before{content:"\e061"}.icon-Spades:before{content:"\e062"}.icon-Sound-waves:before{content:"\e063"}.icon-Shipping-box:before{content:"\e064"}.icon-Shipping:before{content:"\e065"}.icon-Shoe:before{content:"\e066"}.icon-Shopping-basket-alt-2:before{content:"\e067"}.icon-Shopping-basket:before{content:"\e068"}.icon-Shopping-basket-alt:before{content:"\e069"}.icon-Shorts:before{content:"\e06a"}.icon-Shuffle:before{content:"\e06b"}.icon-Sience:before{content:"\e06c"}.icon-Simcard:before{content:"\e06d"}.icon-Single-note:before{content:"\e06e"}.icon-Sitemap:before{content:"\e06f"}.icon-Sleep:before{content:"\e070"}.icon-Slideshow:before{content:"\e071"}.icon-Smiley-inverted:before{content:"\e072"}.icon-Smiley:before{content:"\e073"}.icon-Snow:before{content:"\e074"}.icon-Sound-low:before{content:"\e075"}.icon-Sound-medium:before{content:"\e076"}.icon-Sound-off:before{content:"\e077"}.icon-Shift:before{content:"\e078"}.icon-Shield:before{content:"\e079"}.icon-Sharing-iphone:before{content:"\e07a"}.icon-Share:before{content:"\e07b"}.icon-Share-alt:before{content:"\e07c"}.icon-Share-alt-2:before{content:"\e07d"}.icon-Settings:before{content:"\e07e"}.icon-Settings-alt:before{content:"\e07f"}.icon-Settings-alt-2:before{content:"\e080"}.icon-Server:before{content:"\e081"}.icon-Server-alt:before{content:"\e082"}.icon-Sensor:before{content:"\e083"}.icon-Security-camera:before{content:"\e084"}.icon-Search:before{content:"\e085"}.icon-Scull:before{content:"\e086"}.icon-Script:before{content:"\e087"}.icon-Script-alt:before{content:"\e088"}.icon-Screensharing:before{content:"\e089"}.icon-School:before{content:"\e08a"}.icon-Scan:before{content:"\e08b"}.icon-Refresh:before{content:"\e08c"}.icon-Remote:before{content:"\e08d"}.icon-Remove:before{content:"\e08e"}.icon-Repeat-one:before{content:"\e08f"}.icon-Repeat:before{content:"\e090"}.icon-Resize:before{content:"\e091"}.icon-Reply-arrow:before{content:"\e092"}.icon-Return-to-top:before{content:"\e093"}.icon-Right-double-arrow:before{content:"\e094"}.icon-Road:before{content:"\e095"}.icon-Roadsign:before{content:"\e096"}.icon-Rocket:before{content:"\e097"}.icon-Rss:before{content:"\e098"}.icon-Ruler-alt:before{content:"\e099"}.icon-Ruler:before{content:"\e09a"}.icon-Sandbox-toys:before{content:"\e09b"}.icon-Satellite-dish:before{content:"\e09c"}.icon-Save:before{content:"\e09d"}.icon-Safedial:before{content:"\e09e"}.icon-Safe:before{content:"\e09f"}.icon-Redo:before{content:"\e0a0"}.icon-Printer-alt:before{content:"\e0a1"}.icon-Planet:before{content:"\e0a2"}.icon-Paste-in:before{content:"\e0a3"}.icon-Os-x:before{content:"\e0a4"}.icon-Navigation-left:before{content:"\e0a5"}.icon-Message:before{content:"\e0a6"}.icon-Lock:before{content:"\e0a7"}.icon-Layers-alt:before{content:"\e0a8"}.icon-Record:before{content:"\e0a9"}.icon-Print:before{content:"\e0aa"}.icon-Plane:before{content:"\e0ab"}.icon-Partly-cloudy:before{content:"\e0ac"}.icon-Ordered-list:before{content:"\e0ad"}.icon-Navigation-last:before{content:"\e0ae"}.icon-Message-unopened:before{content:"\e0af"}.icon-Location-nearby:before{content:"\e0b0"}.icon-Laptop:before{content:"\e0b1"}.icon-Reception:before{content:"\e0b2"}.icon-Price-yen:before{content:"\e0b3"}.icon-Piracy:before{content:"\e0b4"}.icon-Parental-control:before{content:"\e0b5"}.icon-Operator:before{content:"\e0b6"}.icon-Navigation-horizontal:before{content:"\e0b7"}.icon-Message-open:before{content:"\e0b8"}.icon-Lab:before{content:"\e0b9"}.icon-Location-near-me:before{content:"\e0ba"}.icon-Receipt-yen:before{content:"\e0bb"}.icon-Price-pound:before{content:"\e0bc"}.icon-Pin-location:before{content:"\e0bd"}.icon-Parachute-drop:before{content:"\e0be"}.icon-Old-phone:before{content:"\e0bf"}.icon-Merge:before{content:"\e0c0"}.icon-Navigation-first:before{content:"\e0c1"}.icon-Locate:before{content:"\e0c2"}.icon-Keyhole:before{content:"\e0c3"}.icon-Receipt-pound:before{content:"\e0c4"}.icon-Price-euro:before{content:"\e0c5"}.icon-Piggy-bank:before{content:"\e0c6"}.icon-Paper-plane:before{content:"\e0c7"}.icon-Old-key:before{content:"\e0c8"}.icon-Navigation-down:before{content:"\e0c9"}.icon-Megaphone:before{content:"\e0ca"}.icon-Loading:before{content:"\e0cb"}.icon-Keychain:before{content:"\e0cc"}.icon-Receipt-euro:before{content:"\e0cd"}.icon-Price-dollar:before{content:"\e0ce"}.icon-Pie-chart:before{content:"\e0cf"}.icon-Paper-plane-alt:before{content:"\e0d0"}.icon-Notepad:before{content:"\e0d1"}.icon-Navigation-bottom:before{content:"\e0d2"}.icon-Meeting:before{content:"\e0d3"}.icon-Keyboard:before{content:"\e0d4"}.icon-Load:before{content:"\e0d5"}.icon-Receipt-dollar:before{content:"\e0d6"}.icon-Previous:before{content:"\e0d7"}.icon-Pictures:before{content:"\e0d8"}.icon-Notepad-alt:before{content:"\e0d9"}.icon-Paper-bag:before{content:"\e0da"}.icon-Name-badge:before{content:"\e0db"}.icon-Medicine:before{content:"\e0dc"}.icon-List:before{content:"\e0dd"}.icon-Key:before{content:"\e0de"}.icon-Receipt-alt:before{content:"\e0df"}.icon-Previous-media:before{content:"\e0e0"}.icon-Pictures-alt:before{content:"\e0e1"}.icon-Pants:before{content:"\e0e2"}.icon-Nodes:before{content:"\e0e3"}.icon-Music:before{content:"\e0e4"}.icon-Readonly:before{content:"\e0e5"}.icon-Presentation:before{content:"\e0e6"}.icon-Pictures-alt-2:before{content:"\e0e7"}.icon-Pannel-close:before{content:"\e0e8"}.icon-Next:before{content:"\e0e9"}.icon-Multiple-windows:before{content:"\e0ea"}.icon-Medical-emergency:before{content:"\e0eb"}.icon-Medal:before{content:"\e0ec"}.icon-Link:before{content:"\e0ed"}.icon-Linux-tux:before{content:"\e0ee"}.icon-Junk:before{content:"\e0ef"}.icon-Item-arrangement:before{content:"\e0f0"}.icon-Iphone:before{content:"\e0f1"}.icon-Lightning:before{content:"\e0f2"}.icon-Map:before{content:"\e0f3"}.icon-Multiple-credit-cards:before{content:"\e0f4"}.icon-Next-media:before{content:"\e0f5"}.icon-Panel-show:before{content:"\e0f6"}.icon-Picture:before{content:"\e0f7"}.icon-Power:before{content:"\e0f8"}.icon-Re-post:before{content:"\e0f9"}.icon-Rate:before{content:"\e0fa"}.icon-Rain:before{content:"\e0fb"}.icon-Radio:before{content:"\e0fc"}.icon-Radio-receiver:before{content:"\e0fd"}.icon-Radio-alt:before{content:"\e0fe"}.icon-Quote:before{content:"\e0ff"}.icon-Qr-code:before{content:"\e100"}.icon-Pushpin:before{content:"\e101"}.icon-Pulse:before{content:"\e102"}.icon-Projector:before{content:"\e103"}.icon-Play:before{content:"\e104"}.icon-Playing-cards:before{content:"\e105"}.icon-Playlist:before{content:"\e106"}.icon-Plugin:before{content:"\e107"}.icon-Podcast:before{content:"\e108"}.icon-Poker-chip:before{content:"\e109"}.icon-Poll:before{content:"\e10a"}.icon-Post-it:before{content:"\e10b"}.icon-Pound-bag:before{content:"\e10c"}.icon-Power-outlet:before{content:"\e10d"}.icon-Photo-album:before{content:"\e10e"}.icon-Phone:before{content:"\e10f"}.icon-Phone-ring:before{content:"\e110"}.icon-People:before{content:"\e111"}.icon-People-female:before{content:"\e112"}.icon-People-alt:before{content:"\e113"}.icon-People-alt-2:before{content:"\e114"}.icon-Pc:before{content:"\e115"}.icon-Pause:before{content:"\e116"}.icon-Path:before{content:"\e117"}.icon-Out:before{content:"\e118"}.icon-Outbox:before{content:"\e119"}.icon-Outdent:before{content:"\e11a"}.icon-Page-add:before{content:"\e11b"}.icon-Page-down:before{content:"\e11c"}.icon-Page-remove:before{content:"\e11d"}.icon-Page-restricted:before{content:"\e11e"}.icon-Page-up:before{content:"\e11f"}.icon-Paint-roller:before{content:"\e120"}.icon-Palette:before{content:"\e121"}.icon-Newspaper:before{content:"\e122"}.icon-Newspaper-alt:before{content:"\e123"}.icon-Network-alt:before{content:"\e124"}.icon-Navigational-arrow:before{content:"\e125"}.icon-Navigation:before{content:"\e126"}.icon-Navigation-vertical:before{content:"\e127"}.icon-Navigation-up:before{content:"\e128"}.icon-Navigation-top:before{content:"\e129"}.icon-Navigation-road:before{content:"\e12a"}.icon-Navigation-right:before{content:"\e12b"}.icon-Microscope:before{content:"\e12c"}.icon-Mindmap:before{content:"\e12d"}.icon-Molecular-network:before{content:"\e12e"}.icon-Molecular:before{content:"\e12f"}.icon-Mountain:before{content:"\e130"}.icon-Mouse-cursor:before{content:"\e131"}.icon-Mouse:before{content:"\e132"}.icon-Movie-alt:before{content:"\e133"}.icon-Map-marker:before{content:"\e134"}.icon-Movie:before{content:"\e135"}.icon-Map-loaction:before{content:"\e136"}.icon-Map-alt:before{content:"\e137"}.icon-Male-symbol:before{content:"\e138"}.icon-Male-and-female:before{content:"\e139"}.icon-Mailbox:before{content:"\e13a"}.icon-Magnet:before{content:"\e13b"}.icon-Loupe:before{content:"\e13c"}.icon-Mobile:before{content:"\e13d"}.icon-Logout:before{content:"\e13e"}.icon-Log-out:before{content:"\e13f"}.icon-Layers:before{content:"\e140"}.icon-Left-double-arrow:before{content:"\e141"}.icon-Layout:before{content:"\e142"}.icon-Legal:before{content:"\e143"}.icon-Lense:before{content:"\e144"}.icon-Library:before{content:"\e145"}.icon-Light-down:before{content:"\e146"}.icon-Light-up:before{content:"\e147"}.icon-Lightbulb-active:before{content:"\e148"}.icon-Lightbulb:before{content:"\e149"}.icon-iPad:before{content:"\e14a"}.icon-Invoice:before{content:"\e14b"}.icon-Info:before{content:"\e14c"}.icon-Infinity:before{content:"\e14d"}.icon-Indent:before{content:"\e14e"}.icon-Inbox:before{content:"\e14f"}.icon-Inbox-full:before{content:"\e150"}.icon-Inactive-line:before{content:"\e151"}.icon-iMac:before{content:"\e152"}.icon-Hourglass:before{content:"\e153"}.icon-Home:before{content:"\e154"}.icon-Grid:before{content:"\e155"}.icon-Food:before{content:"\e156"}.icon-Favorite:before{content:"\e157"}.icon-Door-open-alt:before{content:"\e158"}.icon-Diagnostics:before{content:"\e159"}.icon-Contrast:before{content:"\e15a"}.icon-Coins-dollar-alt:before{content:"\e15b"}.icon-Circle-dotted-active:before{content:"\e15c"}.icon-Cinema:before{content:"\e15d"}.icon-Chip:before{content:"\e15e"}.icon-Chip-alt:before{content:"\e15f"}.icon-Chess:before{content:"\e160"}.icon-Checkbox:before{content:"\e161"}.icon-Checkbox-empty:before{content:"\e162"}.icon-Checkbox-dotted:before{content:"\e163"}.icon-Checkbox-dotted-active:before{content:"\e164"}.icon-Check:before{content:"\e165"}.icon-Chat:before{content:"\e166"}.icon-Chat-active:before{content:"\e167"}.icon-Chart:before{content:"\e168"}.icon-Chart-curve:before{content:"\e169"}.icon-Certificate:before{content:"\e16a"}.icon-Categories:before{content:"\e16b"}.icon-Cash-register:before{content:"\e16c"}.icon-Car:before{content:"\e16d"}.icon-Caps-lock:before{content:"\e16e"}.icon-Candy:before{content:"\e16f"}.icon-Circle-dotted:before{content:"\e170"}.icon-Circuits:before{content:"\e171"}.icon-Circus:before{content:"\e172"}.icon-Client:before{content:"\e173"}.icon-Clothes-hanger:before{content:"\e174"}.icon-Cloud-drive:before{content:"\e175"}.icon-Cloud-upload:before{content:"\e176"}.icon-Cloud:before{content:"\e177"}.icon-Cloudy:before{content:"\e178"}.icon-Clubs:before{content:"\e179"}.icon-Cocktail:before{content:"\e17a"}.icon-Code:before{content:"\e17b"}.icon-Coffee:before{content:"\e17c"}.icon-Coin-dollar:before{content:"\e17d"}.icon-Coin-pound:before{content:"\e17e"}.icon-Coin-yen:before{content:"\e17f"}.icon-Coin:before{content:"\e180"}.icon-Coins-alt:before{content:"\e181"}.icon-Console:before{content:"\e182"}.icon-Connection:before{content:"\e183"}.icon-Compress:before{content:"\e184"}.icon-Company:before{content:"\e185"}.icon-Command:before{content:"\e186"}.icon-Coin-euro:before{content:"\e187"}.icon-Combination-lock:before{content:"\e188"}.icon-Combination-lock-open:before{content:"\e189"}.icon-Comb:before{content:"\e18a"}.icon-Columns:before{content:"\e18b"}.icon-Colorpicker:before{content:"\e18c"}.icon-Color-bucket:before{content:"\e18d"}.icon-Coins:before{content:"\e18e"}.icon-Coins-yen:before{content:"\e18f"}.icon-Coins-yen-alt:before{content:"\e190"}.icon-Coins-pound:before{content:"\e191"}.icon-Coins-pound-alt:before{content:"\e192"}.icon-Coins-euro:before{content:"\e193"}.icon-Coins-euro-alt:before{content:"\e194"}.icon-Coins-dollar:before{content:"\e195"}.icon-Conversation-alt:before{content:"\e196"}.icon-Conversation:before{content:"\e197"}.icon-Coverflow:before{content:"\e198"}.icon-Credit-card-alt:before{content:"\e199"}.icon-Credit-card:before{content:"\e19a"}.icon-Crop:before{content:"\e19b"}.icon-Crosshair:before{content:"\e19c"}.icon-Crown-alt:before{content:"\e19d"}.icon-Crown:before{content:"\e19e"}.icon-Cupcake:before{content:"\e19f"}.icon-Curve:before{content:"\e1a0"}.icon-Cut:before{content:"\e1a1"}.icon-Dashboard:before{content:"\e1a2"}.icon-Defrag:before{content:"\e1a3"}.icon-Delete:before{content:"\e1a4"}.icon-Delete-key:before{content:"\e1a5"}.icon-Departure:before{content:"\e1a6"}.icon-Desk:before{content:"\e1a7"}.icon-Desktop:before{content:"\e1a8"}.icon-Donate:before{content:"\e1a9"}.icon-Dollar-bag:before{content:"\e1aa"}.icon-Documents:before{content:"\e1ab"}.icon-Document:before{content:"\e1ac"}.icon-Document-dashed-line:before{content:"\e1ad"}.icon-Dock-connector:before{content:"\e1ae"}.icon-Dna:before{content:"\e1af"}.icon-Display:before{content:"\e1b0"}.icon-Disk-image:before{content:"\e1b1"}.icon-Disc:before{content:"\e1b2"}.icon-Directions:before{content:"\e1b3"}.icon-Directions-alt:before{content:"\e1b4"}.icon-Diploma:before{content:"\e1b5"}.icon-Diploma-alt:before{content:"\e1b6"}.icon-Dice:before{content:"\e1b7"}.icon-Diamonds:before{content:"\e1b8"}.icon-Diamond:before{content:"\e1b9"}.icon-Diagonal-arrow:before{content:"\e1ba"}.icon-Diagonal-arrow-alt:before{content:"\e1bb"}.icon-Door-open:before{content:"\e1bc"}.icon-Download-alt:before{content:"\e1bd"}.icon-Download:before{content:"\e1be"}.icon-Drop:before{content:"\e1bf"}.icon-Eco:before{content:"\e1c0"}.icon-Economy:before{content:"\e1c1"}.icon-Edit:before{content:"\e1c2"}.icon-Eject:before{content:"\e1c3"}.icon-Employee:before{content:"\e1c4"}.icon-Energy-saving-bulb:before{content:"\e1c5"}.icon-Enter:before{content:"\e1c6"}.icon-Equalizer:before{content:"\e1c7"}.icon-Escape:before{content:"\e1c8"}.icon-Ethernet:before{content:"\e1c9"}.icon-Euro-bag:before{content:"\e1ca"}.icon-Exit-fullscreen:before{content:"\e1cb"}.icon-Eye:before{content:"\e1cc"}.icon-Facebook-like:before{content:"\e1cd"}.icon-Factory:before{content:"\e1ce"}.icon-Font:before{content:"\e1cf"}.icon-Folders:before{content:"\e1d0"}.icon-Folder:before{content:"\e1d1"}.icon-Folder-outline:before{content:"\e1d2"}.icon-Folder-open:before{content:"\e1d3"}.icon-Flowerpot:before{content:"\e1d4"}.icon-Flashlight:before{content:"\e1d5"}.icon-Flash:before{content:"\e1d6"}.icon-Flag:before{content:"\e1d7"}.icon-Flag-alt:before{content:"\e1d8"}.icon-Firewire:before{content:"\e1d9"}.icon-Firewall:before{content:"\e1da"}.icon-Fire:before{content:"\e1db"}.icon-Fingerprint:before{content:"\e1dc"}.icon-FIlter:before{content:"\e1dd"}.icon-Filter-arrows:before{content:"\e1de"}.icon-Files:before{content:"\e1df"}.icon-File-cabinet:before{content:"\e1e0"}.icon-Female-symbol:before{content:"\e1e1"}.icon-Footprints:before{content:"\e1e2"}.icon-Hammer:before{content:"\e1e3"}.icon-Hand-active-alt:before{content:"\e1e4"}.icon-Forking:before{content:"\e1e5"}.icon-Hand-active:before{content:"\e1e6"}.icon-Hand-pointer-alt:before{content:"\e1e7"}.icon-Hand-pointer:before{content:"\e1e8"}.icon-Handprint:before{content:"\e1e9"}.icon-Handshake:before{content:"\e1ea"}.icon-Handtool:before{content:"\e1eb"}.icon-Hard-drive:before{content:"\e1ec"}.icon-Help:before{content:"\e1ed"}.icon-Graduate:before{content:"\e1ee"}.icon-Gps:before{content:"\e1ef"}.icon-Help-alt:before{content:"\e1f0"}.icon-Height:before{content:"\e1f1"}.icon-Globe:before{content:"\e1f2"}.icon-Hearts:before{content:"\e1f3"}.icon-Globe-inverted-europe-africa:before{content:"\e1f4"}.icon-Headset:before{content:"\e1f5"}.icon-Globe-inverted-asia:before{content:"\e1f6"}.icon-Headphones:before{content:"\e1f7"}.icon-Globe-inverted-america:before{content:"\e1f8"}.icon-Hd:before{content:"\e1f9"}.icon-Globe-Europe---Africa:before{content:"\e1fa"}.icon-Hat:before{content:"\e1fb"}.icon-Globe-Asia:before{content:"\e1fc"}.icon-Globe-alt:before{content:"\e1fd"}.icon-Hard-drive-alt:before{content:"\e1fe"}.icon-Glasses:before{content:"\e1ff"}.icon-Gift:before{content:"\e200"}.icon-Handtool-alt:before{content:"\e201"}.icon-Geometry:before{content:"\e202"}.icon-Game:before{content:"\e203"}.icon-Fullscreen:before{content:"\e204"}.icon-Fullscreen-alt:before{content:"\e205"}.icon-Frame:before{content:"\e206"}.icon-Frame-alt:before{content:"\e207"}.icon-Camera-roll:before{content:"\e208"}.icon-Bookmark:before{content:"\e209"}.icon-Bill:before{content:"\e20a"}.icon-Baby-stroller:before{content:"\e20b"}.icon-Alarm-clock:before{content:"\e20c"}.icon-Adressbook:before{content:"\e20d"}.icon-Add:before{content:"\e20e"}.icon-Activity:before{content:"\e20f"}.icon-untitled:before{content:"\e210"}.icon-glasses:before{content:"\e211"}.icon-Camcorder:before{content:"\e212"}.icon-Calendar:before{content:"\e213"}.icon-Calendar-alt:before{content:"\e214"}.icon-Calculator:before{content:"\e215"}.icon-Bus:before{content:"\e216"}.icon-Burn:before{content:"\e217"}.icon-Bulleted-list:before{content:"\e218"}.icon-Bug:before{content:"\e219"}.icon-Brush:before{content:"\e21a"}.icon-Brush-alt:before{content:"\e21b"}.icon-Brush-alt-2:before{content:"\e21c"}.icon-Browser-window:before{content:"\e21d"}.icon-Briefcase:before{content:"\e21e"}.icon-Brick:before{content:"\e21f"}.icon-Brackets:before{content:"\e220"}.icon-Box:before{content:"\e221"}.icon-Box-open:before{content:"\e222"}.icon-Box-alt:before{content:"\e223"}.icon-Books:before{content:"\e224"}.icon-Billboard:before{content:"\e225"}.icon-Bills-dollar:before{content:"\e226"}.icon-Bills-euro:before{content:"\e227"}.icon-Bills-pound:before{content:"\e228"}.icon-Bills-yen:before{content:"\e229"}.icon-Bills:before{content:"\e22a"}.icon-Binarycode:before{content:"\e22b"}.icon-Binoculars:before{content:"\e22c"}.icon-Bird:before{content:"\e22d"}.icon-Birthday-cake:before{content:"\e22e"}.icon-Blueprint:before{content:"\e22f"}.icon-Block:before{content:"\e230"}.icon-Bluetooth:before{content:"\e231"}.icon-Boat-shipping:before{content:"\e232"}.icon-Bomb:before{content:"\e233"}.icon-Book-alt-2:before{content:"\e234"}.icon-Bones:before{content:"\e235"}.icon-Book-alt:before{content:"\e236"}.icon-Book:before{content:"\e237"}.icon-Bill-yen:before{content:"\e238"}.icon-Award:before{content:"\e239"}.icon-Bill-pound:before{content:"\e23a"}.icon-Autofill:before{content:"\e23b"}.icon-Bill-euro:before{content:"\e23c"}.icon-Auction-hammer:before{content:"\e23d"}.icon-Bill-dollar:before{content:"\e23e"}.icon-Attachment:before{content:"\e23f"}.icon-Bell:before{content:"\e240"}.icon-Article:before{content:"\e241"}.icon-Bell-off:before{content:"\e242"}.icon-Art-easel:before{content:"\e243"}.icon-Beer-glass:before{content:"\e244"}.icon-Arrow-up:before{content:"\e245"}.icon-Battery-low:before{content:"\e246"}.icon-Arrow-right:before{content:"\e247"}.icon-Battery-full:before{content:"\e248"}.icon-Arrow-left:before{content:"\e249"}.icon-Bars:before{content:"\e24a"}.icon-Arrow-down:before{content:"\e24b"}.icon-Barcode:before{content:"\e24c"}.icon-Arrivals:before{content:"\e24d"}.icon-Bar-chart:before{content:"\e24e"}.icon-Application-window:before{content:"\e24f"}.icon-Band-aid:before{content:"\e250"}.icon-Application-window-alt:before{content:"\e251"}.icon-Ball:before{content:"\e252"}.icon-Application-Error:before{content:"\e253"}.icon-Badge-restricted:before{content:"\e254"}.icon-App:before{content:"\e255"}.icon-Badge-remove:before{content:"\e256"}.icon-Anchor:before{content:"\e257"}.icon-Badge-count:before{content:"\e258"}.icon-Alt:before{content:"\e259"}.icon-Badge-add:before{content:"\e25a"}.icon-Alert:before{content:"\e25b"}.icon-Backspace:before{content:"\e25c"}.icon-Alert-alt:before{content:"\e25d"}.span{width:60px;background-color:rgba(163,219,120,.5);height:60px}#posting,.loader{position:absolute}#posting{top:0;width:140px;background-color:#4aae4e;height:36px;display:none}.loader{width:6px;height:6px;border-radius:50%;-webkit-animation:typing 1s linear infinite alternate;animation:typing 1s linear infinite alternate;top:50%;left:50%;-webkit-transform:translate(-250%,-50%);-ms-transform:translate(-250%,-50%);transform:translate(-250%,-50%)}#registrationForm input[type=submit],.button,.quick-menu .login input[type=submit],.quick-menu .new-profile input[type=submit],.tagAdd,a.button,a.tagAdd{background:#2f6bff;padding:20px 40px;display:inline-block;text-decoration:none;border:none;border-radius:3px;-webkit-appearance:none;position:relative;overflow:hidden;color:#fff;text-align:center;font-size:1rem;-webkit-transition:background .2s;transition:background .2s;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#registrationForm input[type=submit]:hover,.button:hover,.quick-menu .login input[type=submit]:hover,.quick-menu .new-profile input[type=submit]:hover,.tagAdd:hover,a.button:hover,a.tagAdd:hover{background:#497dff}#registrationForm input[type=submit] span,.button span,.quick-menu .login input[type=submit] span,.quick-menu .new-profile input[type=submit] span,.tagAdd span,a.button span,a.tagAdd span{position:relative;z-index:20}.ink,header{position:absolute}#registrationForm input[type=submit],.button.green,.forum-page .button.create-new-thread,.forum-page .button.login,.forum-page .create-new-thread.tagAdd,.forum-page .login.tagAdd,.forum-page a.button.create-new-thread,.forum-page a.button.login,.forum-page a.create-new-thread.tagAdd,.forum-page a.login.tagAdd,.green.tagAdd,.quick-menu .login input[type=submit],.quick-menu .new-profile input[type=submit],a.button.green,a.green.tagAdd{background:#2EB369}#registrationForm input[type=submit]:hover,.button.green:hover,.forum-page .button.create-new-thread:hover,.forum-page .button.login:hover,.forum-page .create-new-thread.tagAdd:hover,.forum-page .login.tagAdd:hover,.forum-page a.button.create-new-thread:hover,.forum-page a.button.login:hover,.forum-page a.create-new-thread.tagAdd:hover,.forum-page a.login.tagAdd:hover,.green.tagAdd:hover,.quick-menu .login input[type=submit]:hover,.quick-menu .new-profile input[type=submit]:hover,a.button.green:hover,a.green.tagAdd:hover{background:#33c775}#registrationForm input.white[type=submit],.button.white,.quick-menu .login input.white[type=submit],.quick-menu .new-profile input.white[type=submit],.white.tagAdd,a.button.white,a.white.tagAdd{background:#fff;color:#000}#registrationForm input.white[type=submit]:hover,.button.white:hover,.quick-menu .login input.white[type=submit]:hover,.quick-menu .new-profile input.white[type=submit]:hover,.white.tagAdd:hover,a.button.white:hover,a.white.tagAdd:hover{background:rgba(255,255,255,.7)}#registrationForm .forum-page input.delete-thread[type=submit],#registrationForm input.red[type=submit],.button.red,.forum-page #registrationForm input.delete-thread[type=submit],.forum-page .button.delete-thread,.forum-page .delete-thread.tagAdd,.forum-page .quick-menu .login input.delete-thread[type=submit],.forum-page .quick-menu .new-profile input.delete-thread[type=submit],.forum-page a.button.delete-thread,.forum-page a.delete-thread.tagAdd,.quick-menu .login .forum-page input.delete-thread[type=submit],.quick-menu .login input.red[type=submit],.quick-menu .new-profile .forum-page input.delete-thread[type=submit],.quick-menu .new-profile input.red[type=submit],.red.tagAdd,a.button.red,a.red.tagAdd{background:#fe6561;color:#fff}#registrationForm .forum-page input.delete-thread[type=submit]:hover,#registrationForm input.red[type=submit]:hover,.button.red:hover,.forum-page #registrationForm input.delete-thread[type=submit]:hover,.forum-page .button.delete-thread:hover,.forum-page .delete-thread.tagAdd:hover,.forum-page .quick-menu .login input.delete-thread[type=submit]:hover,.forum-page .quick-menu .new-profile input.delete-thread[type=submit]:hover,.forum-page a.button.delete-thread:hover,.forum-page a.delete-thread.tagAdd:hover,.quick-menu .login .forum-page input.delete-thread[type=submit]:hover,.quick-menu .login input.red[type=submit]:hover,.quick-menu .new-profile .forum-page input.delete-thread[type=submit]:hover,.quick-menu .new-profile input.red[type=submit]:hover,.red.tagAdd:hover,a.button.red:hover,a.red.tagAdd:hover{background:#fe7e7a}#registrationForm input.transparent[type=submit],.button.transparent,.quick-menu .login input.transparent[type=submit],.quick-menu .new-profile input.transparent[type=submit],.transparent.tagAdd,a.button.transparent,a.transparent.tagAdd{border:1px solid #565656;background:0 0;color:#565656}#registrationForm input.transparent[type=submit]:hover,.button.transparent:hover,.quick-menu .login input.transparent[type=submit]:hover,.quick-menu .new-profile input.transparent[type=submit]:hover,.transparent.tagAdd:hover,a.button.transparent:hover,a.transparent.tagAdd:hover{background:0 0;color:#000;border-color:#000}#registrationForm input.transparent[type=submit] .ink,.button.transparent .ink,.quick-menu .login input.transparent[type=submit] .ink,.quick-menu .new-profile input.transparent[type=submit] .ink,.transparent.tagAdd .ink,a.button.transparent .ink,a.transparent.tagAdd .ink{background:rgba(46,179,105,.3)}#registrationForm input.pink[type=submit],.button.pink,.pink.tagAdd,.quick-menu .login input.pink[type=submit],.quick-menu .new-profile input.pink[type=submit],a.button.pink,a.pink.tagAdd{background:#E13E8F}#registrationForm input.pink[type=submit]:hover,.button.pink:hover,.pink.tagAdd:hover,.quick-menu .login input.pink[type=submit]:hover,.quick-menu .new-profile input.pink[type=submit]:hover,a.button.pink:hover,a.pink.tagAdd:hover{background:#e4549c}#registrationForm input.large[type=submit],.button.large,.large.tagAdd,.quick-menu .login input.large[type=submit],.quick-menu .new-profile input.large[type=submit],a.button.large,a.large.tagAdd{font-size:1.2rem}#registrationForm input[type=submit],.button.tiny,.quick-menu .login input[type=submit],.quick-menu .new-profile input[type=submit],.tagAdd,a.button.tiny,a.tagAdd{padding:10px 20px;font-size:.9rem}button.button,button.tagAdd{cursor:pointer;outline:0}button.button:active,button.button:focus,button.tagAdd:active,button.tagAdd:focus{outline:0}.ink{display:block;background:rgba(255,255,255,.3);border-radius:100%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.animate{-webkit-animation:ripple .65s cubic-bezier(0,0,.22,.88);animation:ripple .65s cubic-bezier(0,0,.22,.88)}body{padding-top:80px}body.navopen{overflow:hidden;max-height:100%}header{color:#fff;width:100%;z-index:800;top:-80px}header .navigation{z-index:200;width:100%;padding:10px 0;background:#a3db78;transition:all .2s}header .logo,header .navigation{position:relative;-webkit-transition:all .2s}header .row:first-child{margin:0}header .logo{background:url(../images/logo.svg) left center no-repeat;background-size:30px auto;height:60px;line-height:60px;display:inline-block;text-indent:40px;text-decoration:none;z-index:300;font-size:1rem;transition:all .2s}header nav{text-align:right;overflow:hidden;height:60px;line-height:60px;color:rgba(0,0,0,.5)}header nav ul{float:right}header nav li{float:left;margin-right:20px;font-size:1rem;line-height:inherit}header nav li:last-child{margin-right:0}header nav a,header nav a:visited{text-decoration:none;color:rgba(0,0,0,.6);border-bottom:1px solid transparent}header nav a.active,header nav a:hover,header nav a:visited.active,header nav a:visited:hover{border-bottom-color:rgba(0,0,0,.6)}header .search{max-width:1200px;-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%)}header .search form{position:relative}header .search input[type=search]{-webkit-appearance:none;border:none;padding:14px 0;text-indent:14px;height:60px;width:100%;min-width:400px;display:block;font-size:1rem;-webkit-transition:box-shadow .2s;transition:box-shadow .2s}header .search input[type=search]:active,header .search input[type=search]:focus{outline:0}header .search input[type=submit]{background:url(../images/search-dark.png) center no-repeat #fff;background-size:24px 24px;width:10%;height:60px;padding:14px 28px;border:none;position:absolute;z-index:100;right:0;top:0;margin:0}header .search .search-text p{display:none}header .user img{height:40px;width:40px;border-radius:50%;vertical-align:middle;cursor:pointer;-webkit-transition:all .2s;transition:all .2s}header.sticky .navigation{background:#98d768;padding:0}header.sticky .menu-toggle{top:15px}.notificationCount{position:absolute;text-align:center;height:20px;width:20px;background:#fe6561;line-height:20px;z-index:40;font-size:.68rem;font-weight:700;cursor:pointer;border-radius:50%;color:#fff;-webkit-animation-name:animGenie;animation-name:animGenie;-webkit-animation-duration:1s;animation-duration:1s}.map .sticky .navigation{background:#a3db78}.map .navigation{background:0 0}#breadcrumb{padding:10px 10px 10px 0;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);margin:0;display:block;width:100%}#breadcrumb li{display:inline-block;list-style:none}#breadcrumb li:after{content:"";background:url(../images/breadcrumb.png) center bottom no-repeat;background-size:16px 16px;display:inline-block;height:20px;width:16px;margin-left:3px;margin-right:3px;-webkit-transform:translateY(4px);-ms-transform:translateY(4px);transform:translateY(4px)}#breadcrumb li a{color:#000;text-decoration:none;font-size:.8rem;-webkit-transition:color .1s;transition:color .1s}#breadcrumb li a:hover{color:#000;text-decoration:underline}#breadcrumb li:last-child a{color:#000}#breadcrumb li:last-child:after{display:none}body.quickmenu{overflow:hidden;max-height:100%}.quick-menu{width:100%;position:fixed;right:0;top:0;z-index:999;visibility:hidden;-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);overflow-y:scroll;height:100%;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.08),0 3px 6px rgba(0,0,0,.12);-webkit-transition:all .3s;transition:all .3s}.quick-menu>.container,.quick-menu>.page,.quick-menu>.subpage{padding-bottom:30px}.quick-menu .user-image img{border-radius:50%;display:block;margin:30px auto;max-width:128px;height:auto}.quick-menu .close{left:15px;cursor:pointer;font-size:.9rem;color:#5a6d71}.quick-menu .close:hover{color:#7F9499}.quick-menu .close i{position:relative;top:3px;font-size:1rem;margin-right:3px}.quick-menu .settings{right:15px}.quick-menu .settings a{font-size:.9rem;text-decoration:none;color:#5a6d71}.quick-menu .settings i{position:relative;top:3px;font-size:1rem;margin-right:5px}.quick-menu .settings:hover a{color:#7F9499}.quick-menu .close,.quick-menu .settings{-webkit-transition:color .2s cubic-bezier(.7,0,.3,1);transition:color .2s cubic-bezier(.7,0,.3,1);position:absolute;top:-3px}.quick-menu .user-profile{text-align:center;margin:0 auto 30px}.quick-menu .user-profile h2{font-size:1.3rem;margin-bottom:.5rem}.quick-menu .user-profile .karma,.quick-menu .user-profile .user-twitter{display:inline-block;font-size:.9rem;color:#5a6d71}.quick-menu .user-profile .karma:before{content:"Karma";display:inline-block;padding:0 2px 0 0;-webkit-transform:translateY(-1px);-ms-transform:translateY(-1px);transform:translateY(-1px)}.quick-menu .user-profile .karma:after{content:"-";display:inline-block;padding:0 1px}.quick-menu .log-out a,.quick-menu .user-profile .roles span{font-size:.8rem}.quick-menu small,.search-all-results li a,.search-all.open .search-all-results{display:block}.quick-menu .user-profile .user-twitter a{border-bottom:1px solid rgba(0,0,0,.6);padding-bottom:1px;text-decoration:none;-webkit-transition:all .2s;transition:all .2s}.quick-menu .user-profile .user-twitter a:hover{padding-bottom:3px;color:#7F9499}.quick-menu .user-profile .roles{display:block;margin-top:1rem}.quick-menu .log-out{margin-top:20px}.quick-menu small{font-size:.9rem;color:#4f5f63;text-transform:uppercase;font-weight:700;letter-spacing:.2px;margin-bottom:.5rem}.quick-menu .forum-thread,.quick-menu .user-notification,.quick-menu .user-notification__blue,.quick-menu .user-notification__green,.quick-menu .user-notification__red,.quick-menu .user-notification__yellow{border:1px solid #e1e1e1;margin-bottom:10px;padding:15px;margin-top:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-decoration:none}.quick-menu .forum-thread-text,.quick-menu .user-notification-text{margin-top:0;margin-right:5%;-webkit-box-flex:1;-webkit-flex:1 0 60%;-ms-flex:1 0 60%;flex:1 0 60%}.quick-menu .forum-thread-text h3,.quick-menu .user-notification-text h3{font-size:.9rem}.quick-menu .forum-thread .cat,.quick-menu .user-notification .cat,.quick-menu .user-notification__blue .cat,.quick-menu .user-notification__green .cat,.quick-menu .user-notification__red .cat,.quick-menu .user-notification__yellow .cat{-webkit-box-flex:1;-webkit-flex:1 0 30%;-ms-flex:1 0 30%;flex:1 0 30%;font-size:.8rem;margin:0}.quick-menu .user-notifications{margin-bottom:2rem}.quick-menu .user-notification,.quick-menu .user-notification__blue,.quick-menu .user-notification__green,.quick-menu .user-notification__red,.quick-menu .user-notification__yellow{-webkit-transition:all 250ms cubic-bezier(.7,0,.3,1);transition:all 250ms cubic-bezier(.7,0,.3,1)}.quick-menu .user-notification__red{border:1px solid #fa040a;background:#feb3b5;color:#4a0103}.quick-menu .user-notification__red a,.quick-menu .user-notification__red a:visited{text-decoration:underline;color:#4a0103}.quick-menu .user-notification__red a:hover,.quick-menu .user-notification__red a:visited:hover{text-decoration:none}.quick-menu .user-notification__red .close-notification:hover{color:#af0307}.quick-menu .user-notification__yellow{border:1px solid #f7e5b4;background:#faedcb;color:#9c7610}.quick-menu .user-notification__yellow a,.quick-menu .user-notification__yellow a:visited{text-decoration:underline;color:#9c7610}.quick-menu .user-notification__yellow a:hover,.quick-menu .user-notification__yellow a:visited:hover{text-decoration:none}.quick-menu .user-notification__yellow .close-notification:hover{color:#eec557}.quick-menu .user-notification__blue{border:1px solid #6bafff;background:#b8d9ff;color:#00499e}.quick-menu .user-notification__blue a,.quick-menu .user-notification__blue a:visited{text-decoration:underline;color:#00499e}.quick-menu .user-notification__blue a:hover,.quick-menu .user-notification__blue a:visited:hover{text-decoration:none}.quick-menu .user-notification__blue .close-notification:hover{color:#001a38}.quick-menu .user-notification__green{border:1px solid #00e75f;background:#9bffc4;color:#008135}.quick-menu .user-notification__green a,.quick-menu .user-notification__green a:visited{text-decoration:underline;color:#008135}.box h3 a,.quick-menu .login a:hover,.quick-menu .new-profile a:hover,.quick-menu .user-notification__green a:hover,.quick-menu .user-notification__green a:visited:hover,.sidebar-content nav ul a{text-decoration:none}.quick-menu .user-notification__green .close-notification:hover{color:#001b0b}.quick-menu .user-notification-text p{font-size:.9rem}.quick-menu .user-notification:hover,.quick-menu .user-notification__blue:hover,.quick-menu .user-notification__green:hover,.quick-menu .user-notification__red:hover,.quick-menu .user-notification__yellow:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.quick-menu .login,.quick-menu .new-profile{padding:0 20px;margin-top:60px}.quick-menu .login h2,.quick-menu .new-profile h2{margin-bottom:.8rem;text-align:center}.quick-menu .login small,.quick-menu .new-profile small{text-align:center;line-height:1.3}.quick-menu .login label,.quick-menu .new-profile label{text-align:left;font-size:.7rem}.quick-menu .login .buttons,.quick-menu .new-profile .buttons,.quick-menu .oAuth,.search-all{text-align:center}.quick-menu .login input,.quick-menu .new-profile input{margin-bottom:5px;display:inline-block}.quick-menu .login input[type=password],.quick-menu .login input[type=text],.quick-menu .new-profile input[type=password],.quick-menu .new-profile input[type=text]{width:95%;padding:10px 20px 10px 8px;font-size:1rem;border:1px solid #e1e1e1;border-radius:5px}.quick-menu .login input[type=submit],.quick-menu .new-profile input[type=submit]{margin:1rem auto 2rem;display:inline-block;padding:15px 45px;font-size:1rem}.quick-menu .oAuth img{display:inline-block}.navigation:after,.wrapper:after{content:"";position:absolute;z-index:998;height:100%;width:100%;background:rgba(0,0,0,.33);top:0;left:0;visibility:hidden;opacity:0;-webkit-transition:opacity .3s;transition:opacity .3s}.wrapper{-webkit-transition:margin-left .3s,margin-right .3s;transition:margin-left .3s,margin-right .3s;position:relative}body.quickmenu .quick-menu{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);visibility:visible}.search-all{width:100%;padding:20px 0}.search-container{position:relative;height:100%;width:100%;overflow:hidden}.search-all-form{position:relative;display:inline-block;width:80%;height:60px;max-width:1100px;margin-top:15px;padding-top:0;background-color:#fff;z-index:150}.search-all-form .search-fieldset{position:relative;display:inline-block;width:100%;height:100%;border-left:1px solid transparent;border-right:1px solid transparent;border-top:1px solid transparent}.search-all-form input[type=search],.search-all-form input[type=submit]{min-height:60px;font-size:1em;border:none;background:#fff;padding:15px 20px;z-index:150;margin:0;-webkit-transition:border .2,background-color .5s cubic-bezier(.7,0,.3,1);transition:border .2,background-color .5s cubic-bezier(.7,0,.3,1)}.search-all-results,.search-all-results li{border-bottom:1px solid #f5f5f5}.search-all-results,.search-all.open .search-fieldset{border-left:1px solid #f5f5f5;border-right:1px solid #f5f5f5}.search-all-form input[type=search]{width:100%;-webkit-appearance:none;font-family:Asap,sans-serif;font-size:1.2rem}.search-all-form input[type=search]:focus{outline:0}.search-all-form input[type=search]:focus+input[type=submit]{color:#a3db78}.search-all-form input[type=submit]{position:absolute;top:0;right:0;font-family:Icomoon;color:#a4a4a4}.search-text{padding-top:2em;padding-bottom:5em}.search-all-results ul{max-width:1100px;width:100%;margin:0 auto;background:#fcfcfc;padding:0}.search-all-results li{list-style:none;padding:30px;text-align:left;overflow:hidden}.search-all-results li:hover{background:rgba(163,219,120,.16)}.search-all-results li:hover .type-description,.search-all-results li:hover .type-icon,.search-all-results li:hover .type-name{color:#000}.search-all-results li.search-view-all{border-bottom:none;font-size:.9rem;font-weight:700;text-align:center;padding:15px;color:#000;background:#f7f7f7}.search-all-results li.search-view-all a{text-decoration:none;color:rgba(0,0,0,.8)}.search-all-results li.search-view-all:hover{background:#f5f5f5}.search-all-results li.search-view-all:hover a{color:#000}.search-all-results .type-context,.search-all-results .type-icon{float:left}.search-all-results .type-icon{width:20%;font-size:2rem;color:#000}.search-all-results .type-context{width:80%}.search-all-results .type-context .type-name{font-size:1rem;margin-bottom:.15rem;font-weight:600;color:rgba(0,0,0,.8)}.search-all-results .type-context .type-description{font-size:.9rem;color:#000}.search-all.open input[type=search],.search-all.open input[type=submit]{color:#000}.search-all.open input[type=search] ::-webkit-input-placeholder,.search-all.open input[type=submit] ::-webkit-input-placeholder{color:#000}.search-all.open input[type=search] :-moz-placeholder,.search-all.open input[type=submit] :-moz-placeholder{color:#000}.search-all.open input[type=search] ::-moz-placeholder,.search-all.open input[type=submit] ::-moz-placeholder{color:#000}.search-all.open input[type=search] :-ms-input-placeholder,.search-all.open input[type=submit] :-ms-input-placeholder{color:#000}.search-all.open .search-fieldset{border-top:1px solid #f5f5f5}.community-page .search-all-results,.frontpage .search-all-results{width:80%;left:50%;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);display:none;position:absolute;z-index:150;max-width:1100px}.plain{max-width:1160px;margin:0 auto}.plain .search-big{margin-top:30px;margin-bottom:0}.plain .search-all{background:0 0;padding:0 10px}.plain .forum-archive-header{margin-bottom:0;border-bottom:none}.plain .search-all-results{width:100%}.plain .search-all-results ul{margin:0;width:100%;max-width:100%}.plain .search-all-results .type-icon{font-size:1.6rem;opacity:.6}.plain .search-all-results .type-context .type-name{font-size:.95rem}.plain .search-all-results .type-context .type-description{font-size:.8rem}.forum-page .search-big{width:100%;margin:15px 0}.forum-page .search-big input{font-size:.9rem;min-height:55px}.overlay{width:100%;position:fixed;top:0;left:0;overflow-y:scroll;height:100%;z-index:850;background-color:rgba(0,0,0,.33);visibility:hidden;opacity:0;-webkit-transition:opacity .2s;transition:opacity .2s}.active .overlay{visibility:visible;opacity:1}#insert-image-dialog,#update-avatar-dialog,.confirm-wrapper,.copy-link-wrapper,.wmd-prompt-dialog{z-index:870;padding:2rem;position:fixed;width:50%;max-width:500px;min-width:300px;background-color:#fff;border-radius:2px;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);-webkit-transition:opacity .2s;transition:opacity .2s;clip:rect(1px 1px 1px 1px);opacity:0;text-align:center;top:-9999999px;left:-9999999px}#insert-image-dialog i,#update-avatar-dialog i,.confirm-wrapper i,.copy-link-wrapper i,.wmd-prompt-dialog i{display:block;font-size:2rem;color:#a3db78;margin-bottom:1rem}#insert-image-dialog p,#update-avatar-dialog p,.confirm-wrapper p,.copy-link-wrapper p,.wmd-prompt-dialog p{margin-top:1rem;font-size:.85rem;color:#000}#insert-image-dialog input,#insert-image-dialog textarea,#update-avatar-dialog input,#update-avatar-dialog textarea,.confirm-wrapper input,.confirm-wrapper textarea,.copy-link-wrapper input,.copy-link-wrapper textarea,.wmd-prompt-dialog input,.wmd-prompt-dialog textarea{background-color:#f3f3f3;color:#454545;border:0;font-size:1rem;padding:1rem;margin:0;width:100%;border-radius:2px;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-family:Asap,sans-serif}#insert-image-dialog textarea,#update-avatar-dialog textarea,.confirm-wrapper textarea,.copy-link-wrapper textarea,.wmd-prompt-dialog textarea{outline:0;resize:none;white-space:initial;padding-bottom:10px}#insert-image-dialog textarea:focus,#update-avatar-dialog textarea:focus,.confirm-wrapper textarea:focus,.copy-link-wrapper textarea:focus,.wmd-prompt-dialog textarea:focus{outline:0}#insert-image-dialog .error,#update-avatar-dialog .error,.confirm-wrapper .error,.copy-link-wrapper .error,.wmd-prompt-dialog .error{text-align:center;color:#E7483B;display:block;padding:.5rem}.active.copy-prompt #insert-image-dialog,.active.copy-prompt .copy-link-wrapper,.active.copy-prompt .wmd-prompt-dialog{clip:auto;opacity:1;top:50%;left:50%}.confirm-wrapper{max-width:360px;padding:2.5rem}.confirm-wrapper h4{font-size:1.5rem}.confirm-wrapper p{margin-top:.5rem}.active.confirm-prompt .confirm-wrapper,.active.uploading-image #update-avatar-dialog{clip:auto;opacity:1;top:50%;left:50%}#update-avatar-dialog .invalid-file{color:rgba(254,101,97,0);-webkit-transition:color .4s ease-in;transition:color .4s ease-in}#update-avatar-dialog.invalid .invalid-file{color:#fe6561}#update-avatar-dialog button{margin-top:15px}#update-avatar-dialog .span{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#E7E7E7}#thankyou{position:fixed;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);top:-9999999px;left:-9999999px;font-size:1rem;background:rgba(0,0,0,.8);padding:10px 15px;border-radius:6px;z-index:860;color:#fff;opacity:0;-webkit-transition:opacity .4s ease-in;transition:opacity .4s ease-in}#thankyou.active{top:50%;left:50%;opacity:1}.wrapper{min-height:100%;margin-bottom:0}.wrapper:before,footer{height:184px}footer{background:#161616;color:#fff;padding:30px 0;font-size:.9rem;text-align:center;line-height:1.5;width:100%}html{height:100%}.package-create h1,.sidebarTitle{margin:1em 0 10px;font-size:2.1rem}.has-sidebar .page-content,.projects-page .page-content{width:100%;display:table;overflow:hidden;height:auto}.has-sidebar .content-wrapper,.projects-page .content-wrapper{display:inline-block;max-width:100%;text-align:left;width:100%}.has-sidebar .sidebar-area,.projects-page .sidebar-area{display:table-cell;vertical-align:top;width:30%;background-color:#f5fbf1;height:100%}.has-sidebar .sidebar-area .sidebar-content,.projects-page .sidebar-area .sidebar-content{display:inline-block;overflow:hidden;width:100%;max-width:360px;text-align:center}.has-sidebar .main-area,.projects-page .main-area{width:70%;height:auto;display:table-cell;vertical-align:top;padding-bottom:200px}.has-sidebar .main-area .main-content,.projects-page .main-area .main-content{display:block;width:100%;padding-left:20px;padding-right:20px;max-width:880px;text-align:center;min-height:600px}.sidebar-content nav{margin:0;height:100%;z-index:1}.sidebar-content nav ul{list-style:none;margin-left:5px;padding-left:10px;-webkit-transition:max-height 300ms ease-in-out;transition:max-height 300ms ease-in-out}.sidebar-content nav ul li.active>a *{color:#6dbb32}.sidebar-content nav ul li.open>ul{max-height:600px}.sidebar-content nav ul h3,.sidebar-content nav ul h4,.sidebar-content nav ul h5{margin-top:10px;margin-bottom:5px;font-weight:400}.sidebar-content nav ul a{display:inline-block}.sidebar-content nav .level-1 h3{font-size:1.1em;color:rgba(0,0,0,.8);cursor:pointer}.sidebar-content nav .level-2{overflow:hidden;max-height:0;border-left:1px solid #bee6a0}.sidebar-content nav .level-2 h4{font-size:.9em;color:rgba(0,0,0,.8)}.sidebar-content nav .level-3{overflow:hidden;max-height:0;border-left:1px solid #daf0c9}.sidebar-content nav .level-3 h5{font-size:.8em;color:rgba(0,0,0,.8)}.profile nav h3:hover{opacity:.8}.profile nav h4{opacity:.7;margin:.5rem 0}.profile li h3{opacity:.5}.profile li.active a,.profile li.active h3,.profile li.open a,.profile li.open h3{opacity:1;color:#000!important}.profile li.active>ul{max-height:100%}.profile .profile-settings{position:relative;top:30px}.profile .profile-settings strong{display:block;margin:3rem 0 1rem}.profile .profile-settings h1{font-size:1.5rem}#registrationForm .profile .profile-settings input[type=submit],.profile .profile-settings #registrationForm input[type=submit],.profile .profile-settings .button,.profile .profile-settings .quick-menu .login input[type=submit],.profile .profile-settings .quick-menu .new-profile input[type=submit],.profile .profile-settings .tagAdd,.quick-menu .login .profile .profile-settings input[type=submit],.quick-menu .new-profile .profile .profile-settings input[type=submit]{padding:20px;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms{margin-top:30px}.profile .profile-settings-forms label{font-weight:600}#registrationForm .profile .profile-settings-forms input[type=submit],.profile .profile-settings-forms #registrationForm input[type=submit],.profile .profile-settings-forms .button,.profile .profile-settings-forms .quick-menu .login input[type=submit],.profile .profile-settings-forms .quick-menu .new-profile input[type=submit],.profile .profile-settings-forms .tagAdd,.quick-menu .login .profile .profile-settings-forms input[type=submit],.quick-menu .new-profile .profile .profile-settings-forms input[type=submit]{margin-top:60px}.profile .profile-settings-forms ::-webkit-input-placeholder{color:#000;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms :-moz-placeholder{color:#000;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms ::-moz-placeholder{color:#000;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms :-ms-input-placeholder{color:#000;font-size:1rem;font-family:Asap,sans-serif}.profile .profile-settings-forms div.profile-input{font-size:1rem;font-family:Asap,sans-serif;color:#000;position:relative;min-height:30px}.profile .profile-settings-forms div.profile-input+div.profile-input{margin-top:20px}.profile .profile-settings-forms div.profile-input#bio{min-height:200px}.profile .profile-settings-forms div.profile-input input,.profile .profile-settings-forms div.profile-input textarea{height:30px;line-height:30px;border:1px solid transparent;border-bottom-color:#e6e6e6;min-width:200px;width:140px;display:inline-block;padding:4px 8px 4px 0;color:#000;font-size:1rem;font-family:Asap,sans-serif;position:absolute;top:-8px;left:100px;-webkit-transition:all .2s;transition:all .2s}.profile .profile-settings-forms div.profile-input input:focus,.profile .profile-settings-forms div.profile-input textarea:focus{outline:0;border-bottom-color:#a3db78;color:#000}.profile .profile-settings-forms div.profile-input textarea{border:1px solid #e6e6e6;min-height:200px;left:102px;line-height:normal;display:inline-block;text-align:left;overflow:hidden;padding:8px;resize:none;max-width:100%;font-size:.9rem;width:138px}.profile .profile-settings-forms div.profile-input textarea:focus{border-color:#a3db78}.profile .profile-settings-forms div.profile-input input:hover{border-bottom-color:rgba(163,219,120,.78);color:gray}.profile .profile-settings-forms div.profile-input input:hover:focus{color:#000;border-bottom-color:#a3db78}.profile .profile-settings-forms div.profile-input input[type=password]{letter-spacing:1px;font-size:1.1rem}.profile .profile-settings-forms div.profile-input textarea:hover{border-color:rgba(163,219,120,.78);color:gray}.profile .profile-settings-forms div.profile-input textarea:hover:focus{color:#000;border-color:#a3db78}.profile .profile-settings-forms div.profile-input.warning input,.profile .profile-settings-forms div.profile-input.warning textarea{border-bottom-color:#fe6561;color:#fe6561}.profile .profile-settings-forms div.profile-input.warning textarea{border-color:#fe6561}.profile .profile-settings-forms div.profile-input.warning label{color:#fe6561}.profile .profile-settings-forms div.profile-input.confirm-password{display:none}.profile .profile-settings-forms div.profile-input.confirm-password.visible{display:block}.profile .profile-settings-forms label:after{content:":";display:inline-block}.profile .profile-settings-forms .avatar{margin:0 0 50px;position:relative;overflow:hidden;height:98px;line-height:98px}.profile .profile-settings-forms .avatar .ink{background:rgba(255,255,255,.5);overflow:hidden}.profile .profile-settings-forms .avatar label{float:left}.profile .profile-settings-forms .avatar .avatar-image{position:absolute;height:98px;width:98px;left:100px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.profile .profile-settings-forms .avatar .avatar-image img{border-radius:50%;height:auto;width:98px}.profile .profile-settings-forms .avatar .avatar-image span{opacity:0;border-radius:50%;position:absolute;height:100%;width:100%;top:0;left:0;background:rgba(0,0,0,.58);text-align:center;line-height:98px;font-size:.85rem;color:#fff;-webkit-transition:opacity .2s;transition:opacity .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.profile .profile-settings-forms .avatar .avatar-image:hover span{opacity:1;cursor:pointer}#registrationForm .profile-settings-packages input[type=submit],.profile-settings-packages #registrationForm input[type=submit],.profile-settings-packages .button,.profile-settings-packages .quick-menu .login input[type=submit],.profile-settings-packages .quick-menu .new-profile input[type=submit],.profile-settings-packages .tagAdd,.quick-menu .login .profile-settings-packages input[type=submit],.quick-menu .new-profile .profile-settings-packages input[type=submit]{margin-top:30px;margin-bottom:30px}.profile-settings-packages strong{margin-top:3rem;display:block;margin-bottom:1rem}.profile-settings-packages.packages-content{top:0}.box{background:#fff;padding:15px;margin-bottom:15px;-webkit-transition:box-shadow .2s;transition:box-shadow .2s;position:relative;height:100%;width:100%}.box .row{display:block;margin:0}.box .row [class*=col-]{margin:0}.box .forum-thread-text{margin-top:4px}.box .other,.profile-settings-following{margin-top:20px}.box i{font-size:3rem;color:#acacac}.box h3{margin-bottom:3px;font-size:1.3rem;font-weight:400}.box h3 a{color:rgba(0,0,0,.5)}.box h3 a:hover{color:#000}.box p{font-size:.8rem;color:#8f8f8f}.box:last-child{margin-bottom:0}.box .stats{font-size:.8rem;position:absolute;left:15px;bottom:0}.box .stats span{color:#7f7f7f}.box .stats span span,small.notification.success,small.success.notification__blue,small.success.notification__green,small.success.notification__red,small.success.notification__yellow{color:#000}.box .stats span:first-child{margin-right:8px}.box .stats span span:first-child{margin-right:0}.box .other{padding-top:10px;display:block;overflow:hidden;width:100%}.box .other .edit{font-size:.8rem;position:absolute;right:15px;bottom:0;opacity:.6;text-decoration:underline;display:inline-block}.box .other .edit:hover{opacity:1;text-decoration:none}.profile-settings-following li{font-size:1.05rem;margin-bottom:1rem;padding-bottom:1rem;padding-left:0;list-style:none;border-bottom:1px solid #f1f1f1}.profile-settings-following li:last-child{margin-bottom:0}.profile-settings-following li a{display:inline-block;font-size:.95rem;margin-bottom:1rem}.profile-settings-following li a:hover{text-decoration:none;background:0 0}.profile-settings-following li .unfollow{opacity:.7;margin-left:5px;margin-right:0}#registrationForm .profile-settings-following li input.unfollow[type=submit],.profile-settings-following li #registrationForm input.unfollow[type=submit],.profile-settings-following li .quick-menu .login input.unfollow[type=submit],.profile-settings-following li .quick-menu .new-profile input.unfollow[type=submit],.profile-settings-following li .unfollow.button,.profile-settings-following li .unfollow.tagAdd,.quick-menu .login .profile-settings-following li input.unfollow[type=submit],.quick-menu .new-profile .profile-settings-following li input.unfollow[type=submit]{display:block;font-size:.9rem;padding:12px 0;border:none}#registrationForm .profile-settings-following li input.unfollow[type=submit] .ink,.profile-settings-following li #registrationForm input.unfollow[type=submit] .ink,.profile-settings-following li .quick-menu .login input.unfollow[type=submit] .ink,.profile-settings-following li .quick-menu .new-profile input.unfollow[type=submit] .ink,.profile-settings-following li .unfollow.button .ink,.profile-settings-following li .unfollow.tagAdd .ink,.quick-menu .login .profile-settings-following li input.unfollow[type=submit] .ink,.quick-menu .new-profile .profile-settings-following li input.unfollow[type=submit] .ink{background:rgba(255,255,255,.23)}#registrationForm .profile-settings-following li input.unfollow[type=submit]:hover,.profile-settings-following li #registrationForm input.unfollow[type=submit]:hover,.profile-settings-following li .quick-menu .login input.unfollow[type=submit]:hover,.profile-settings-following li .quick-menu .new-profile input.unfollow[type=submit]:hover,.profile-settings-following li .unfollow.button:hover,.profile-settings-following li .unfollow.tagAdd:hover,.quick-menu .login .profile-settings-following li input.unfollow[type=submit]:hover,.quick-menu .new-profile .profile-settings-following li input.unfollow[type=submit]:hover{background:0 0;border:none;color:#000;opacity:1}small.notification,small.notification__blue,small.notification__green,small.notification__red,small.notification__yellow{display:inline-block;position:absolute;line-height:43px;padding:0 10px;margin:60px 0 0}small.alert.notification__blue,small.alert.notification__green,small.alert.notification__red,small.alert.notification__yellow,small.notification.alert{color:#fe6561}.profile-settings #open-for-colab{width:auto;left:200px;top:-10px}.profile-settings #contris ul li{list-style:none}.profile-settings #contris ul a.contri-name{text-decoration:none;line-height:1.7rem;color:#000;font-size:.8rem}.profile-settings #contris ul a.contri-name:hover{text-decoration:underline}.profile-settings #contris ul a.remove-contri{display:inline-block;text-decoration:none;font-size:.75rem;margin-left:.7rem;margin-right:.5rem;color:rgba(0,0,0,.5);max-height:14px;cursor:pointer}.profile-settings #contris ul a.remove-contri:hover{color:#000}.profile-settings #contris ul a.remove-contri i{display:inline-block;font-size:14px;margin-right:5px;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px)}.profile-settings #contris #forums li{list-style:none}.profile-settings #contris #forums a.remove-forum{display:inline-block;text-decoration:none;font-size:.75rem;margin-left:.7rem;margin-right:.5rem;color:rgba(0,0,0,.5);max-height:14px;cursor:pointer}.profile-settings #contris #forums a.remove-forum:hover{color:#000}.profile-settings #contris #forums a.remove-forum i{display:inline-block;font-size:14px;margin-right:5px;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px)}.markdown-syntax a{text-decoration:none}.markdown-syntax a.absent{color:#c00}.markdown-syntax a.anchor{display:block;padding-left:30px;margin-left:-30px;cursor:pointer;position:absolute;top:0;left:0;bottom:0}.markdown-syntax h1,.markdown-syntax h2,.markdown-syntax h3,.markdown-syntax h4,.markdown-syntax h5,.markdown-syntax h6{margin:1em 0 10px;padding:0;font-weight:700;-webkit-font-smoothing:antialiased;cursor:text;position:relative;color:rgba(0,0,0,.8)}.markdown-syntax h1:hover a.anchor,.markdown-syntax h2:hover a.anchor,.markdown-syntax h3:hover a.anchor,.markdown-syntax h4:hover a.anchor,.markdown-syntax h5:hover a.anchor,.markdown-syntax h6:hover a.anchor{background:url(assets/images/documentation/para.png) 10px center no-repeat;text-decoration:none}.markdown-syntax h1 code,.markdown-syntax h1 tt,.markdown-syntax h2 code,.markdown-syntax h2 tt,.markdown-syntax h3 code,.markdown-syntax h3 tt,.markdown-syntax h4 a,.markdown-syntax h4 code,.markdown-syntax h4 tt,.markdown-syntax h5 code,.markdown-syntax h5 tt,.markdown-syntax h6 code,.markdown-syntax h6 tt{font-size:inherit}.markdown-syntax *+h2{margin-top:3rem}.markdown-syntax *+h3,.markdown-syntax *+h4{margin-top:2rem}.markdown-syntax img{margin:1.5rem 0;max-width:100%}.markdown-syntax p{margin:10px 0;line-height:1.5;word-break:break-word;color:#000}.markdown-syntax li{padding:0 0 3px;color:#000}.markdown-syntax h1{font-size:2.1rem}.markdown-syntax h2{font-size:1.7rem}.markdown-syntax h3{font-size:1.6rem}.markdown-syntax h4{font-size:1.4rem}.markdown-syntax h5{font-size:1.2}.markdown-syntax h6{font-size:1.1rem}.markdown-syntax blockquote,.markdown-syntax dl,.markdown-syntax ol,.markdown-syntax pre,.markdown-syntax table,.markdown-syntax ul{margin:0 0 1rem}.markdown-syntax hr{border-top:1px #f5f5f5 solid;margin:3em 0;color:#871A1A;height:0;padding:0}.markdown-syntax h1 p,.markdown-syntax h2 p,.markdown-syntax h3 p,.markdown-syntax h4 p,.markdown-syntax h5 p,.markdown-syntax h6 p,.markdown-syntax ol :first-child,.markdown-syntax ul :first-child{margin-top:0}.markdown-syntax a:first-child h1,.markdown-syntax a:first-child h2,.markdown-syntax a:first-child h3,.markdown-syntax a:first-child h4,.markdown-syntax a:first-child h5,.markdown-syntax a:first-child h6,.markdown-syntax body>h1:first-child,.markdown-syntax body>h1:first-child+h2,.markdown-syntax body>h2:first-child,.markdown-syntax body>h3:first-child,.markdown-syntax body>h4:first-child,.markdown-syntax body>h5:first-child,.markdown-syntax body>h6:first-child{margin-top:0;padding-top:0}.markdown-syntax li p.first{display:inline-block}.markdown-syntax ol,.markdown-syntax ul{padding-left:30px}.markdown-syntax dl,.markdown-syntax dl dt:first-child{padding:0}.markdown-syntax ol :last-child,.markdown-syntax ul :last-child{margin-bottom:0}.markdown-syntax dl dt{font-size:14px;font-weight:700;font-style:italic;padding:0;margin:15px 0 5px}.markdown-syntax dl dt>:first-child{margin-top:0}.markdown-syntax dl dt>:last-child{margin-bottom:0}.markdown-syntax dl dd{margin:0 0 15px;padding:0 15px}.markdown-syntax blockquote>:first-child,.markdown-syntax dl dd>:first-child,.markdown-syntax table tr td:first-child,.markdown-syntax table tr th:first-child{margin-top:0}.markdown-syntax blockquote>:last-child,.markdown-syntax dl dd>:last-child,.markdown-syntax table tr td:last-child,.markdown-syntax table tr th:last-child{margin-bottom:0}.markdown-syntax blockquote{border-left:4px solid #ddd;padding:0 15px;color:#777}.markdown-syntax table{padding:0}.markdown-syntax table tr{border-top:1px solid #ccc;background-color:#fff;margin:0;padding:0}.markdown-syntax table tr td,.markdown-syntax table tr th{border:1px solid #ccc;text-align:left;margin:0;padding:6px 13px}.markdown-syntax table tr:nth-child(2n){background-color:#f8f8f8}.markdown-syntax table tr th{font-weight:700}.markdown-syntax span.frame{display:block;overflow:hidden}.markdown-syntax span.frame>span{border:1px solid #ddd;display:block;float:left;overflow:hidden;margin:13px 0 0;padding:7px;width:auto}.markdown-syntax span.frame span img{display:block;float:left}.markdown-syntax span.frame span span{clear:both;color:#333;display:block;padding:5px 0 0}.markdown-syntax span.align-center{display:block;overflow:hidden;clear:both}.markdown-syntax span.align-center>span{display:block;overflow:hidden;margin:13px auto 0;text-align:center}.markdown-syntax span.align-center span img{margin:0 auto;text-align:center}.markdown-syntax span.align-right{display:block;overflow:hidden;clear:both}.markdown-syntax span.align-right>span{display:block;overflow:hidden;margin:13px 0 0;text-align:right}.markdown-syntax span.align-right span img{margin:0;text-align:right}.markdown-syntax span.float-left{display:block;margin-right:13px;overflow:hidden;float:left}.markdown-syntax span.float-left span{margin:13px 0 0}.markdown-syntax span.float-right{display:block;margin-left:13px;overflow:hidden;float:right}.markdown-syntax span.float-right>span{display:block;overflow:hidden;margin:13px auto 0;text-align:right}.markdown-syntax code{border:none;background:0 0}.markdown-syntax code,.markdown-syntax tt{margin:0 2px;padding:1px 5px;white-space:pre-wrap;border:1px solid rgba(127,148,153,.44);background-color:#fff;border-radius:3px;font-size:.9rem}.markdown-syntax pre{overflow:auto;display:block;font-family:Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;background-color:#333;color:#fff;font-size:.9rem;line-height:1.4em;background-clip:padding-box;padding:20px 30px;white-space:pre;margin:20px -15px}.markdown-syntax pre code{margin:0;padding:0;white-space:pre;background:0 0}.markdown-syntax pre code,.markdown-syntax pre tt{background-color:transparent;border:none}.documentation .markdown-syntax pre{margin:20px 0}.markdown-editor{position:fixed;bottom:-100%;max-height:100%;width:100%;padding:.2rem;background-color:rgba(252,252,252,.94);box-shadow:0 -2px 6px 0 rgba(0,0,0,.08);-webkit-transition:bottom .6s cubic-bezier(.7,0,.3,1),top .6s cubic-bezier(.7,0,.3,1);transition:bottom .6s cubic-bezier(.7,0,.3,1),top .6s cubic-bezier(.7,0,.3,1);z-index:800}.forum-thread:hover,.packages-content .package:hover,.person-activity:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.markdown-editor.write{bottom:0;overflow-y:scroll;visibility:visible}.markdown-editor input,.markdown-editor select,.markdown-editor textarea{border:1px solid transparent}.markdown-editor input:active,.markdown-editor input:focus,.markdown-editor select:active,.markdown-editor select:focus,.markdown-editor textarea:active,.markdown-editor textarea:focus{outline:0}.markdown-editor input.warning,.markdown-editor select.warning,.markdown-editor textarea.warning{border:1px solid #fe6561!important}.markdown-editor .wmd-button{position:relative;margin-right:15px;left:0!important;font-size:1.4em;top:10px;cursor:pointer;float:left;border-radius:20px;-webkit-transition:top 300ms cubic-bezier(.7,0,.3,1),opacity 300ms cubic-bezier(.7,0,.3,1);transition:top 300ms cubic-bezier(.7,0,.3,1),opacity 300ms cubic-bezier(.7,0,.3,1)}.markdown-editor .reply-to p{font-size:.8rem;overflow:hidden;color:#000;background:0 0}.markdown-editor .reply-to span{font-weight:800}.markdown-editor #wmd-button-bar{position:relative;height:30px}.markdown-editor .input-row label{display:block;margin-bottom:5px;color:#a9a9a9;font-size:.8rem}.markdown-editor .wmd-button-row{list-style:none}.markdown-editor .wmd-button-row li:hover span{color:#000}.markdown-editor .wmd-button-row li span{background-image:none;color:#727272;-webkit-transition:color .2s ease-in;transition:color .2s ease-in}.markdown-editor .wmd-button-row li span:before{font-family:our-umbraco!important;content:attr(data-icon);font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.markdown-editor .wmd-spacer{float:left;position:relative;width:27px;display:block;opacity:0;height:20px}.markdown-editor #wmd-input{height:300px;width:100%;padding:.5rem;font-size:.8rem;color:#000;background:#fff;border:2px solid #f5f5f5;-webkit-transition:border-color .2s;transition:border-color .2s}.markdown-editor #wmd-preview{width:100%;min-height:300px;max-height:300px;overflow-y:scroll;padding:.5rem 20px;font-size:.8rem;color:#000;background:#ededed}.markdown-editor .markdown-close{position:absolute;right:1.5rem;top:2rem;font-size:28px;cursor:pointer;opacity:.6;-webkit-transition:opacity .3s;transition:opacity .3s}.markdown-editor .markdown-close:hover{opacity:1}.markdown-editor .draft{position:fixed;bottom:-40px;right:30px;background-color:#a3db78;color:#fff;padding:12px 20px;cursor:pointer;opacity:0;font-size:.9rem;font-weight:700;-webkit-transition:opacity .3s cubic-bezier(.7,0,.3,1),bottom .6s cubic-bezier(.7,0,.3,1),box-shadow .2s ease-in-out;transition:opacity .3s cubic-bezier(.7,0,.3,1),bottom .6s cubic-bezier(.7,0,.3,1),box-shadow .2s ease-in-out}.markdown-editor .draft.show{bottom:30px;opacity:1}.markdown-editor .draft.show:hover{background:#9bd86c}.markdown-editor #topic-title,.markdown-editor select{overflow:hidden;width:100%;color:#000;padding:.5rem;font-size:.8rem;background:#fff}.markdown-editor .markdown-control{font-family:Asap,sans-serif;font-size:.8rem;-webkit-appearance:none}.markdown-editor select{position:relative;border:none;border-radius:0}.markdown-editor select::after{position:absolute;display:block;top:0;right:0;content:"<";color:#000}.markdown-editor #topic-category option.frontend{background:#4ea7ff;color:#fff}.markdown-editor #topic-category option.core{background:#ff661b;color:#fff}.markdown-editor #topic-category option.azure{background:#1ed45c;color:#fff}.markdown-editor #topic-submit{border:none;background:#2EB369;color:#fff;font-size:.9rem;padding:10px;width:100%;max-width:140px;font-family:Asap,sans-serif;cursor:pointer}.markdown-editor #topic-submit:hover{background:#33c775}.markdown-editor #mobile-preview{border:none;background:0 0;-webkit-appearance:none;text-align:right;float:right;opacity:.4;cursor:pointer;-webkit-transition:opacity .3s;transition:opacity .3s}.markdown-editor #mobile-preview i{font-size:24px;display:inline-block;-webkit-transform:translate(-3px,5px);-ms-transform:translate(-3px,5px);transform:translate(-3px,5px)}.markdown-editor #mobile-preview span{font-size:14px}.markdown-editor #mobile-preview:hover{opacity:1}.markdown-editor.mobile-preview #mobile-preview{color:#a3db78;opacity:1}.wmd-prompt-background{background-color:#000}#insert-image-dialog{position:fixed;z-index:1001}#insert-image-dialog.show{clip:auto;opacity:1;top:50%;left:50%}.wmd-prompt-dialog{opacity:1;clip:auto;margin:0!important}.wmd-prompt-dialog input[type=text]{text-align:left}.markdown-spacer{position:relative;height:0;-webkit-transition:height .6s cubic-bezier(.7,0,.3,1);transition:height .6s cubic-bezier(.7,0,.3,1)}.markdown-spacer.write{height:500px}.category,.version{display:inline-block;margin:0}.category a,.category span.cat,.version a,.version span.cat{display:inline-block;font-weight:700;border-radius:2px;font-size:.7rem;padding:3px 5px;text-decoration:none;text-transform:capitalize;-webkit-transition:background .2s;transition:background .2s;background:#4ea7ff;color:#fff}.category a:hover,.category span.cat:hover,.version a:hover,.version span.cat:hover{background:#68b4ff}.category.default a,.category.default span.cat,.version.default a,.version.default span.cat{background:#4ea7ff;color:#fff}.category.default a:hover,.category.default span.cat:hover,.version.default a:hover,.version.default span.cat:hover{background:#68b4ff}.category.frontend a,.category.frontend span.cat,.version.frontend a,.version.frontend span.cat{background:#4ea7ff;color:#fff}.category.frontend a:hover,.category.frontend span.cat:hover,.version.frontend a:hover,.version.frontend span.cat:hover{background:#68b4ff}.category.core a,.category.core span.cat,.version.core a,.version.core span.cat{background:#ff661b;color:#fff}.category.core a:hover,.category.core span.cat:hover,.version.core a:hover,.version.core span.cat:hover{background:#ff7735}.category.azure a,.category.azure span.cat,.version.azure a,.version.azure span.cat{background:#1ed45c;color:#fff}.category.azure a:hover,.category.azure span.cat:hover,.version.azure a:hover,.version.azure span.cat:hover{background:#2be169}.version a,.version span.cat{background:#cbcbcb;color:#fefefe}.version a:hover,.version span.cat:hover{background:#d8d8d8}.version.default a,.version.default span.cat{background:0 0;border:1px solid #cbcbcb;color:#b2b2b2}.version.default a:hover,.version.default span.cat:hover{color:#989898;background:0 0}.roles span{border:2px solid #2f6bff;color:#2f6bff;font-size:.6rem;font-weight:700;padding:2px 6px;display:inline-block}.roles span:hover{cursor:default}.roles span+span{margin-left:5px}.roles span:first-child{margin-left:0}.roles span.standard{display:none}.roles span.hq{border-color:#fe6561;color:#fe6561;text-transform:uppercase}.roles span.admin{border-color:#43cfcf;color:#43cfcf;text-transform:capitalize}.roles span.mvp{border-color:#df89ff;color:#df89ff;text-transform:uppercase}.roles span.core{border-color:#e8b142;color:#e8b142;text-transform:capitalize}.roles span.c-trib,.roles span.corecontrib{border-color:#5dacff;color:#5dacff;text-transform:capitalize}.roles span.corecontrib{visibility:hidden;position:relative}.roles span.corecontrib:after{visibility:visible;position:absolute;top:-2px;left:-2px;display:block;content:"C-trib";border:inherit inherit inherit;padding:inherit}.comments{list-style-type:none;padding:0 20px;position:relative;margin:0 0 0 10px}.comments .comment{margin-bottom:75px;position:relative;border-radius:2px}.comments .comment .comment-inner{padding:15px;background:rgba(127,148,153,.08);border:1px solid rgba(127,148,153,.15);border-bottom:none;border-top:none;-webkit-transition:all .2s;transition:all .2s}.comments .comment.solution{background:rgba(163,219,120,.23)}.comments .comment.solution .photo img{padding:2px;border:1px solid #a3db78}.comments .comment.solution .meta{border:1px solid rgba(163,219,120,.3);border-bottom:none}.comments .comment.solution .comment-inner{border:1px solid rgba(163,219,120,.3);border-bottom:none;border-top:none}.comments .comment.solution .actions{border-top:none}.comments .comment.solution .body a{color:#000;word-wrap:break-word;text-decoration:underline}.comments .comment.solution .body a:hover{text-decoration:none}.comments .comment.solution .markdown-syntax code,.comments .comment.solution .markdown-syntax tt{margin:0 2px;padding:1px 5px;white-space:pre-wrap;border:1px solid rgba(163,219,120,.66);background-color:rgba(163,219,120,.44);border-radius:3px;font-size:.9rem}.comments .comment .photo{position:absolute;left:-22px;top:10px;z-index:10}.comments .comment .photo span{display:none}.comments .comment .photo img{overflow:hidden;max-width:32px;border-radius:50%;height:auto;-webkit-transition:box-shadow .2s;transition:box-shadow .2s}.comments .comment .highfive{position:absolute;top:100%;left:0;right:0;font-size:1rem;text-decoration:none;padding:10px 0;background:rgba(85,157,255,.14);border-right:1px solid rgba(85,157,255,.2);border-left:1px solid rgba(85,157,255,.2);border-bottom:1px solid rgba(85,157,255,.2);color:#5204d4;font-weight:700;text-align:center}.comments .comment .highfive a{display:block}.comments .comment .highfive .highfive-count,.comments .comment .highfive img{display:none}.comments .comment .highfive img{-webkit-transition:-webkit-transform .2s;transition:transform .2s;max-width:22px;height:auto}.comments .comment .highfive a{text-decoration:none;opacity:.7;-webkit-transition:all .2s;transition:all .2s}.comments .comment .highfive:hover a{opacity:1;color:#000}.comments .comment .body{white-space:normal}.comments .comment .body li,.comments .comment .body p{line-height:1.5;font-size:1rem}.comments .comment .body *+*{margin-top:15px}.comments .comment .body a{text-decoration:underline;word-wrap:break-word}.comments .comment .body a:hover{text-decoration:none}.comments .comment .meta{padding:.7rem 20px;font-size:.9rem;overflow:hidden;color:#7F9499;background:rgba(127,148,153,.08);border:1px solid rgba(127,148,153,.15);border-bottom:none;-webkit-transition:all .2s;transition:all .2s}.comments .comment .meta .profile,.comments .comment .meta .time{float:left}.comments .comment .meta .profile{width:auto}.comments .comment .meta .profile a{color:#445255;text-decoration:none;display:block}.comments .comment .meta .profile a:hover{text-decoration:underline}.comments .comment .actions a,.comments .comment .meta .gotosolution:hover,.comments .comment .meta .time,.package-create .buttons a:hover,.package-create .stepNavigation li a,.package-detail-sidebar .package-creator .package-creator-information h3 a,.pagination a,.replybutton.notloggedin a:hover{text-decoration:none}.comments .comment .meta .profile span{margin-right:.1rem}.comments .comment .meta .time{float:right}.comments .comment .meta+.body{padding-top:1rem}.comments .comment .meta .gotosolution{margin-left:5px;color:#000;float:right}.comments .comment .meta .hide-xs{display:none}.comments .comment.question .topic{font-size:1.1rem}.comments .comment .body-meta{margin-bottom:1rem;padding-bottom:1rem;overflow:hidden;border-bottom:1px solid transparent}.comments .comment .body-meta .category a,.comments .comment .body-meta .version a{font-size:.7rem}.comments .comment .body-meta .category{margin-bottom:.5rem}.comments .comment .body-meta .categories,.comments .comment .body-meta .topic{display:inline-block;vertical-align:middle}.comments .comment .actions,.comments .comment .actions a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.comments .comment .body-meta .topic{width:100%;margin-bottom:.2rem}.comments .comment .body-meta .categories{width:100%}.comments .comment .actions{display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:10px 20px;background:rgba(127,148,153,.08);border:1px solid rgba(127,148,153,.15);border-top:none;-webkit-transition:background .2s;transition:background .2s}.comments .comment .actions a{display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;cursor:pointer;color:rgba(0,0,0,.5);font-size:.9rem}.comments .comment .actions a:hover{color:#000}.comments .comment .actions a span{display:none}.comments .comment .actions a i{display:inline-block;font-size:1.4rem}.comments .alert{background:rgba(235,116,57,.1);padding:15px;border-top:3px solid rgba(235,116,57,.25);color:#db5716}.comments .level-2{margin-left:15px}.replybutton{text-align:center;width:100%;margin:0 auto}#registrationForm .replybutton input[type=submit],.quick-menu .login .replybutton input[type=submit],.quick-menu .new-profile .replybutton input[type=submit],.replybutton #registrationForm input[type=submit],.replybutton .button,.replybutton .quick-menu .login input[type=submit],.replybutton .quick-menu .new-profile input[type=submit],.replybutton .tagAdd{display:inline-block;margin:0 auto 50px;text-align:center}#registrationForm .replybutton input.reply[type=submit],.quick-menu .login .replybutton input.reply[type=submit],.quick-menu .new-profile .replybutton input.reply[type=submit],.replybutton #registrationForm input.reply[type=submit],.replybutton .button.reply,.replybutton .quick-menu .login input.reply[type=submit],.replybutton .quick-menu .new-profile input.reply[type=submit],.replybutton .reply.tagAdd{font-size:.85rem}.replybutton.notloggedin{background:rgba(235,116,57,.1);border:2px solid rgba(235,116,57,.2);padding:30px 0;margin:30px auto;width:calc(100% - 40px)}.pagination{margin-top:60px;margin-left:10px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.pagination a{padding:12px 16px;border:1px solid #b1b1b1;border-radius:3px;background:#fff;display:inline-block;margin-top:5px;margin-left:5px;font-size:.9rem;font-weight:400;color:#b1b1b1}.pagination a:first-of-type,.pagination a:last-of-type{margin-left:0}.pagination a:hover{border-color:#717171;color:#7e7e7e}.pagination a.active{background:#2EB369;color:#fff;font-weight:700;border-color:#2EB369}.pagination a.active:hover{cursor:default}.pagination span{margin:0 8px;font-size:1.1rem;letter-spacing:1px}.pagination .next:after,.pagination .prev:before{font-weight:400}.pagination .next:hover,.pagination .prev:hover{border-color:#7e7e7e;color:#7e7e7e}body.packages nav h3:hover{opacity:.8}body.packages nav h4{opacity:.7;margin:.5rem 0}body.packages li h3{opacity:.5}body.packages li.active a,body.packages li.active h3,body.packages li.open a,body.packages li.open h3{opacity:1;color:#000!important}body.packages li.active>ul{max-height:100%}.packages-content .search-big{margin-bottom:0;margin-top:20px}.packages-content h1{margin:1em 0 10px;font-size:2.1rem}.packages-content .package{margin-bottom:15px;padding:20px;-webkit-transition:all .1s linear;transition:all .1s linear;cursor:pointer;position:relative;overflow:hidden;border-radius:3px;border:1px solid #e9e9e9}.packages-content .package:hover .icon{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.packages-content .box{border:none;border-bottom:1px solid #f5f5f5;width:100%}.packages-content .box h3{font-size:1.1rem;margin-bottom:.5rem;font-weight:600}.packages-content .box h3 a{color:rgba(0,0,0,.8)}.packages-content .box h3 a:hover{color:#a3db78}.packages-content .box img{max-width:100%;height:auto;display:block;vertical-align:middle}.packages-content .box .col-xs-2{vertical-align:middle!important;padding:0!important}.packages-content .box .other{margin-top:30px}.packages-content .box .stats{left:calc(16.666666666666664% + 15px);font-family:Consolas,"Liberation Mono",Menlo,Monaco,Courier,monospace;font-size:.75rem}.package-create input,.package-create textarea,.search-big input{font-family:Asap,sans-serif}.packages-content .box .stats i{margin-left:3px;font-size:.9rem}.packages-content .box .stats span:first-child{margin-right:0}.packages-content .box p{font-size:.9rem;color:#000;opacity:1}.packages-content .box .package-badge{position:absolute;right:15px;bottom:-3px}.packages-content .box .downloads,.packages-content .box .karma{color:#000}.packages-content .box .downloads span,.packages-content .box .karma span{-webkit-transform:translate(0,2px);-ms-transform:translate(0,2px);transform:translate(0,2px);display:inline-block}.packages-content .box.liked .karma i{color:#fe6561}.packages-content .name{font-size:1rem;line-height:1.3;font-weight:700}.packages-content .description{font-size:.8rem;margin-top:3px;max-height:28px;overflow:hidden}.package-badge{font-size:.7rem;overflow:hidden;font-weight:700;color:#fff}.package-badge span{background:#484848;background:-webkit-linear-gradient(top,#545454 0,#2f2f2f 100%);background:linear-gradient(to bottom,#545454 0,#2f2f2f 100%);padding:5px 7px;margin:0;display:inline-block;float:left}.package-badge span.package-name{border-top-left-radius:3px;border-bottom-left-radius:3px}.package-badge span.package-number{background:#2EB369;background:-webkit-linear-gradient(top,#59d490 0,#2eb369 100%);background:linear-gradient(to bottom,#59d490 0,#2eb369 100%);border-top-right-radius:3px;border-bottom-right-radius:3px}.package-badge.blue .package-number{background:#2f6bff;background:-webkit-linear-gradient(top,#7ca1ff 0,#2f6bff 100%);background:linear-gradient(to bottom,#7ca1ff 0,#2f6bff 100%)}#registrationForm input.package-badge[type=submit] .package-number,.package-badge.green .package-number,.quick-menu .login input.package-badge[type=submit] .package-number,.quick-menu .new-profile input.package-badge[type=submit] .package-number{background:#2EB369;background:-webkit-linear-gradient(top,#59d490 0,#2eb369 100%);background:linear-gradient(to bottom,#59d490 0,#2eb369 100%)}.package-badge.red .package-number{background:#fe6561;background:-webkit-linear-gradient(top,#feafad 0,#fe6561 100%);background:linear-gradient(to bottom,#feafad 0,#fe6561 100%)}.package-badge.orange .package-number{background:#EB7439;background:-webkit-linear-gradient(top,#f2a57e 0,#eb7439 100%);background:linear-gradient(to bottom,#f2a57e 0,#eb7439 100%)}.package-badge.our .package-number{background:#a3db78;background:-webkit-linear-gradient(top,#ccebb4 0,#a3db78 100%);background:linear-gradient(to bottom,#ccebb4 0,#a3db78 100%);color:#000}.search-big{display:inline-block;position:relative;width:100%;margin-bottom:20px}.search-big input{-webkit-appearance:none;border-radius:0;border:1px solid #cfcfcf;padding:20px 6px;outline:0;display:block;width:100%;font-size:1.3rem;min-height:60px;z-index:20;position:relative}.search-big input+label{position:absolute;z-index:10;-webkit-transform:translate(0,-10px);-ms-transform:translate(0,-10px);transform:translate(0,-10px);-webkit-transition:-webkit-transform .4s cubic-bezier(.7,0,.3,1),opacity .3s cubic-bezier(.7,0,.3,1);transition:transform .4s cubic-bezier(.7,0,.3,1),opacity .3s cubic-bezier(.7,0,.3,1);opacity:0;color:#ccc;font-size:.8rem}.search-big input:valid+label{opacity:1;top:3px;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.search-big input:focus+label{color:#000;-webkit-transform:translate(0,-20px);-ms-transform:translate(0,-20px);transform:translate(0,-20px)}.search-big input:focus{border-color:#a3db78}.package-create{position:relative;top:15px;max-width:100%}.package-create h1,.package-create h2,.package-create h3,.package-create legend{color:rgba(0,0,0,.8);font-weight:700}.package-create h1{margin-top:0}.package-create h2{font-size:1.6rem;margin:0 0 10px}.package-create h3,.package-create legend{font-size:1.2rem;margin:0 0 10px}.package-create p{font-size:.95rem;line-height:1.5;color:#000}.package-create p+p{margin-top:20px}.package-create .stepNavigation{list-style:none;margin-bottom:1rem;padding-bottom:1rem;margin-top:1.5rem;border-bottom:1px solid rgba(0,0,0,.18)}.package-create .stepNavigation li{display:inline-block;margin-right:.5rem;color:#000;font-size:.75rem}.package-create .stepNavigation li.current{color:rgba(0,0,0,.8);font-weight:700}.package-create .stepNavigation li:last-child{margin-right:0}.package-create .stepNavigation li a:hover{color:#000}.package-create fieldset{padding:0 0 1.5rem;margin:1.5rem 0 0;border:none;border-bottom:1px solid #f5f5f5;max-width:100%}.package-create label{color:#000;width:10rem;padding:1.5rem .5rem .2rem 0;display:inline-block;font-size:1rem;font-weight:700}.package-create label.pickfile{font-size:.9rem;padding:0;color:#000}.package-create small{font-size:.85rem;color:#000;margin:5px 0 0;max-width:90%}.package-create input.error,.package-create input.warning,.package-create textarea.error,.package-create textarea.warning{border-color:#fe6561!important}.package-create input[type=text],.package-create textarea{font-size:.95rem;color:#000;border:1px solid #e8e8e8}.package-create input[type=text]:active,.package-create input[type=text]:focus,.package-create textarea:active,.package-create textarea:focus{outline:0;border-color:#a3db78}.package-create input[type=text]{padding:12px 10px;outline:0;width:30rem}.package-create input[type=checkbox]+label{font-size:.9rem;color:rgba(0,0,0,.8);margin-left:.5rem}.package-create input[type=checkbox]:checked+label{font-weight:700}.package-create input[type=checkbox]+label+small,.package-create select+small{top:-20px}.package-create textarea{padding:8px}.package-create ::-webkit-input-placeholder{color:red}.package-create #ContentPlaceHolderDefault_Main_Editor_5_ctl00_Collab+label{padding:0}.package-create .buttons{margin-top:2rem;text-align:right}#registrationForm .package-create .buttons input[type=submit],.package-create .buttons #registrationForm input[type=submit],.package-create .buttons .button,.package-create .buttons .quick-menu .login input[type=submit],.package-create .buttons .quick-menu .new-profile input[type=submit],.package-create .buttons .tagAdd,.quick-menu .login .package-create .buttons input[type=submit],.quick-menu .new-profile .package-create .buttons input[type=submit]{font-size:.9rem}.package-create .buttons a{font-size:.9rem;color:#000}.package-create .buttons a:hover{color:rgba(0,0,0,.8)}.package-create .pickversionWrapper{overflow:hidden}.package-create .pickversion{font-size:.95rem;color:#000;float:left}.package-create .pickversion input[type=checkbox]{margin-right:.5rem;margin-bottom:.5rem}.package-create .pickversion input[type=checkbox]:checked+*{font-weight:700}.package-create #pickNetVersion label,.package-create #pickTrustLevel label,.package-create #pickVersion label{padding-bottom:.5rem;padding-top:0}.package-create #pickVersion{margin-top:0;float:left;display:block}.package-create.complete fieldset{margin-top:2rem}.package-create.complete fieldset label{padding:1.5rem 0 0}.package-create.complete fieldset p+p{margin:.5rem 0 0}.dataTable{border:1px solid #ddd;width:100%;margin-bottom:1rem}.dataTable td,.dataTable th{padding:8px!important;font-size:.8rem}.dataTable th{color:#fff;background:#a3db78;font-size:14px}.dataTable tbody tr{-webkit-transition:background .3s ease-in;transition:background .3s ease-in}.dataTable tbody tr:hover{background:#ddd}.dataTable tbody tr.totals{font-weight:700;font-size:14px}.dataTable tbody tr.totals:hover td{background:#82B84F}.dataTable tbody tr.totals td{border-top:3px solid #a3db78}.dataTable .count,.dataTable .dataTable .center{text-align:center}.dataTable .dataTable .right,.dataTable .money{text-align:right}.eligibilityNotification{border:2px solid #a3db78;background:rgba(163,219,120,.18);padding:15px}.eligibilityNotification li,.eligibilityNotification p{font-size:.9rem;color:#000}.eligibilityNotification ul{list-style:none;margin:.8rem 0}.eligibilityNotification li{margin-left:.3rem;font-weight:700}.eligibilityNotification.notEligible{border-color:#EB7439;background:rgba(235,116,57,.18)}div.ac_results{background:#fff;padding:20px;border:1px solid #f5f5f5}div.ac_results li{padding-bottom:.5rem}.tagAdd{padding:12px 20px!important;float:right}.package-detail{padding-top:0;position:relative}.package-detail .vote{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:20px}.package-detail .vote i{font-size:1.1rem;color:rgba(0,0,0,.3);display:inline-block;margin-right:5px}.package-detail .vote i.liked,.package-detail .vote:hover i{color:#f64051}.package-detail .vote:hover{cursor:pointer}.package-detail .vote:hover i.liked{color:rgba(0,0,0,.3)}.package-detail .vote:hover span{color:#000}.package-detail .vote span{font-size:.9rem;color:rgba(0,0,0,.4)}.package-detail .markdown-syntax pre{margin:0 0 1rem}.package-detail .package-forum-activity{overflow:hidden}.package-detail .package-forum-activity .goto{text-align:right;font-size:.9rem;color:#000;float:right}.package-detail .package-forum-activity .goto:hover{text-decoration:none;color:rgba(0,0,0,.8)}.package-detail .forum-thread{padding:10px}.package-detail .forum-thread img{max-width:60px;height:auto}.package-detail .forum-thread .forum-thread-text{margin-top:.7rem}.package-detail .forum-thread .forum-thread-text h3{font-size:.9rem;color:rgba(0,0,0,.8)}.package-detail .forum-thread .forum-thread-text p{color:#000}.package-detail-sidebar{font-size:.9rem;line-height:1.5;color:#000;margin-top:2rem}#registrationForm .package-detail-sidebar input[type=submit],.package-detail-sidebar #registrationForm input[type=submit],.package-detail-sidebar .button,.package-detail-sidebar .quick-menu .login input[type=submit],.package-detail-sidebar .quick-menu .new-profile input[type=submit],.package-detail-sidebar .tagAdd,.quick-menu .login .package-detail-sidebar input[type=submit],.quick-menu .new-profile .package-detail-sidebar input[type=submit]{max-width:80%;padding:15px 20px;font-size:1rem;margin:.5rem 0 2.5rem}#registrationForm .package-detail-sidebar input[type=submit] i,.package-detail-sidebar #registrationForm input[type=submit] i,.package-detail-sidebar .button i,.package-detail-sidebar .quick-menu .login input[type=submit] i,.package-detail-sidebar .quick-menu .new-profile input[type=submit] i,.package-detail-sidebar .tagAdd i,.quick-menu .login .package-detail-sidebar input[type=submit] i,.quick-menu .new-profile .package-detail-sidebar input[type=submit] i{font-size:1.5rem;position:relative;display:inline-block;top:4px;left:5px}.package-detail-sidebar h2,.package-detail-sidebar h3,.package-detail-sidebar span,.package-detail-sidebar strong{color:rgba(0,0,0,.8)}.package-detail-sidebar h2{font-size:1.5rem;margin-bottom:1rem}.package-detail-sidebar h3{margin-bottom:.3rem;font-size:1.08rem;font-weight:700}.package-detail-sidebar ul{margin-bottom:.8rem}.package-detail-sidebar li{list-style:none;font-size:.9rem;padding:.15rem 0 0}.package-detail-sidebar li:first-child{padding:0}.package-detail-sidebar small{color:#000}.package-detail-sidebar span,.package-detail-sidebar strong{font-weight:700}.package-detail-sidebar span{padding-right:3px}.package-detail-sidebar .package-creator{position:relative}.package-detail-sidebar .package-creator h3{margin:0 0 1rem}.package-detail-sidebar .package-creator .row{margin-top:0;margin-bottom:0}.package-detail-sidebar .package-creator img{display:inline-block;border-radius:50%;max-width:80px;min-width:80px;height:auto;vertical-align:middle}.package-detail-sidebar .package-creator .package-creator-information h3{margin:0;font-size:1rem;color:rgba(0,0,0,.8)}.package-detail-sidebar .package-creator .package-creator-information h3 a:hover{color:#a3db78}.package-detail-sidebar .package-creator .package-creator-information small{font-size:.8rem;-webkit-transform:translate(0,-3px);-ms-transform:translate(0,-3px);transform:translate(0,-3px)}.package-detail-sidebar .package-creator .package-creator-information .text{margin:0 0 0 .5rem;display:inline-block;vertical-align:bottom}.package-detail-sidebar .package-creator .package-creator-information .text a{text-decoration:underline}.package-detail-content .package-detail-description a:hover,.package-detail-sidebar .package-creator .package-creator-information .text a:hover,.public-member .goto:hover,.public-member .member-details a:hover{text-decoration:none}.package-detail-sidebar .package-compatibility,.package-detail-sidebar .package-creator{border-bottom:1px solid #f5f5f5;margin-bottom:1rem;padding-bottom:1rem}.package-compatibility-versions .versions{margin-bottom:1rem}.package-compatibility-versions span{display:block;font-weight:400}.package-compatibility-versions strong{margin-right:5px}.package-detail-content h3{display:block;margin-bottom:.4rem;font-size:1.2rem}.package-detail-content .package-detail-description{margin-bottom:2rem}.package-detail-content .package-detail-description h1{font-size:2.1rem;line-height:1.5;color:rgba(0,0,0,.8);margin-bottom:1rem;margin-top:0;max-width:95%;position:relative;z-index:1;font-weight:700}.package-detail-content .package-detail-description .hero-image{max-width:100%;height:auto;margin-bottom:1.5rem}.package-detail-content .package-detail-description li,.package-detail-content .package-detail-description p{font-size:1rem;line-height:1.5;color:#000}.package-detail-content .package-detail-description li+*,.package-detail-content .package-detail-description p+*{margin-top:1rem}.package-detail-content .package-detail-description li+h3,.package-detail-content .package-detail-description p+h3{margin-top:1.7rem}.package-detail-content .package-detail-description li.hero,.package-detail-content .package-detail-description p.hero{font-size:1.25rem!important;line-height:1.4;color:rgba(0,0,0,.8);margin-bottom:1.5rem}.package-detail-content .package-detail-description ul{margin-left:40px}.package-detail-content .package-detail-description ul li{margin:0}.package-detail-content .package-detail-description h3{display:block;margin-bottom:.4rem;font-size:1.2rem}.package-detail-content .package-detail-screenshots{overflow:hidden}.package-detail-content .package-detail-screenshots a{margin-bottom:.5rem;display:block;position:relative;width:23%;max-height:100px;overflow:hidden;margin-right:2%;float:left;border:1px solid #f5f5f5}.package-detail-content .package-detail-screenshots img{max-width:100%;height:auto}.package-detail-content .tabs{margin:6rem 0 0;padding:0;list-style:none}.package-detail-content .tabs li{background:0 0;color:rgba(0,0,0,.8);display:inline-block;padding:10px 15px;cursor:pointer;font-size:1rem}.package-detail-content .tabs li.current{background:#ededed;color:rgba(0,0,0,.8)}.package-detail-content .tabs li:hover{opacity:.8}.package-detail-content .tab-content{display:none;background:#ededed;padding:30px;margin-bottom:6rem}.package-detail-content .tab-content h3{font-size:1.1rem;margin-bottom:1rem;color:rgba(0,0,0,.8)}.package-detail-content .tab-content p{font-size:1rem;color:#000}.package-detail-content .tab-content span{color:rgba(0,0,0,.4);font-size:.8rem;display:block;margin-top:.2rem}.package-detail-content .tab-content.current{display:inherit}.flex,.flex-center,.public-member .forum-thread .row,.public-member .member-details,.public-member .member-details .roles{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.package-misc .search-all-results{border:none}.package-misc .search-all-results li{border:none;padding:10px}.package-misc .search-all-results .type-context{padding-left:10px}.public-member{font-size:.9rem;line-height:1.5;color:#000;margin-top:2rem}.public-member .member-details{display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.public-member .member-details img{border-radius:50%;max-width:112px;min-width:112px;height:auto}.public-member .member-details h3{margin:0;font-size:1.2rem;line-height:1.3;color:rgba(0,0,0,.8);font-weight:700}.public-member .member-details small{line-height:1.3;color:#445255;font-size:1.15rem;font-weight:700;margin:0}.public-member .member-details .text{margin:0 0 0 1rem}.public-member .member-details .text small{font-size:1rem;font-weight:400;color:#5a6d71}.public-member .member-details .roles{display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.public-member .member-details .roles span{font-size:.85rem;margin:0 2% 2% 0}.public-member h3{margin:0 0 .5rem;font-weight:700;font-size:1.15rem}.public-member .member-bio{margin-top:1rem}.public-member .member-bio p{font-size:1rem;line-height:1.4;color:#4f5f63}.public-member .category{margin-top:.5rem}.public-member .category span.cat{font-size:.75rem}.public-member .forum-thread .row{display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.public-member .forum-thread-text h3,.public-member .goto{font-size:1rem}.flex,.flex-center{display:flex}.flex-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.quickmenu .notification,.quickmenu .notification__blue,.quickmenu .notification__green,.quickmenu .notification__red,.quickmenu .notification__yellow{opacity:0;left:25%}.notification,.notification__blue,.notification__green,.notification__red,.notification__yellow{position:fixed;z-index:999;left:50%;bottom:30px;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);opacity:1;-webkit-transition:all .3s cubic-bezier(0,0,.22,.88);transition:all .3s cubic-bezier(0,0,.22,.88);width:90%;margin:0 auto;max-width:1024px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:20px 10px;border-radius:4px;border:1px solid #85beff;background:#b8d9ff;color:#00499e}.notification__red{border:1px solid #fa040a;background:#feb3b5;color:#4a0103}.notification__red a,.notification__red a:visited{text-decoration:underline;color:#4a0103}.notification__red a:hover,.notification__red a:visited:hover{text-decoration:none}.notification__red .close-notification:hover{color:#af0307}.notification__yellow{border:1px solid #f7e5b4;background:#faedcb;color:#9c7610}.notification__yellow a,.notification__yellow a:visited{text-decoration:underline;color:#9c7610}.notification__yellow a:hover,.notification__yellow a:visited:hover{text-decoration:none}.notification__yellow .close-notification:hover{color:#eec557}.notification__blue{border:1px solid #6bafff;background:#b8d9ff;color:#00499e}.notification__blue a,.notification__blue a:visited{text-decoration:underline;color:#00499e}.notification__blue a:hover,.notification__blue a:visited:hover{text-decoration:none}.notification__blue .close-notification:hover{color:#001a38}.notification__green{border:1px solid #00e75f;background:#9bffc4;color:#008135}.notification__green a,.notification__green a:visited{text-decoration:underline;color:#008135}.notification a:hover,.notification__blue a:hover,.notification__green a:hover,.notification__green a:visited:hover,.notification__red a:hover,.notification__yellow a:hover{text-decoration:none}.notification__green .close-notification:hover{color:#001b0b}.notification h1,.notification h2,.notification h3,.notification__blue h1,.notification__blue h2,.notification__blue h3,.notification__green h1,.notification__green h2,.notification__green h3,.notification__red h1,.notification__red h2,.notification__red h3,.notification__yellow h1,.notification__yellow h2,.notification__yellow h3{margin-bottom:.5rem;font-weight:700}.notification h1,.notification__blue h1,.notification__green h1,.notification__red h1,.notification__yellow h1{font-size:1.3rem}.notification h2,.notification__blue h2,.notification__green h2,.notification__red h2,.notification__yellow h2{font-size:1.2rem}.notification h3,.notification__blue h3,.notification__green h3,.notification__red h3,.notification__yellow h3{font-size:1.1rem}.notification a,.notification p,.notification__blue a,.notification__blue p,.notification__green a,.notification__green p,.notification__red a,.notification__red p,.notification__yellow a,.notification__yellow p{font-size:1rem;line-height:1.5}.notification small,.notification__blue small,.notification__green small,.notification__red small,.notification__yellow small{margin:0;display:inline-block}.notification .message,.notification__blue .message,.notification__green .message,.notification__red .message,.notification__yellow .message{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;margin-bottom:1rem}.notification .close-notification,.notification__blue .close-notification,.notification__green .close-notification,.notification__red .close-notification,.notification__yellow .close-notification{left:15px;cursor:pointer;font-size:1rem;text-align:right;-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.notification .close-notification i,.notification__blue .close-notification i,.notification__green .close-notification i,.notification__red .close-notification i,.notification__yellow .close-notification i{position:relative;top:3px;font-size:1.2rem;margin-right:3px}.alertbar,.alertbar__blue,.alertbar__green,.alertbar__red,.alertbar__yellow{background:#f4ebba;text-align:center;border:none!important;padding:20px}.alertbar__red{border:1px solid #fa040a;background:#feb3b5;color:#4a0103}.alertbar__red a,.alertbar__red a:visited{text-decoration:underline;color:#4a0103}.alertbar__red a:hover,.alertbar__red a:visited:hover{text-decoration:none}.alertbar__red .close-notification:hover{color:#af0307}.alertbar__yellow{border:1px solid #f7e5b4;background:#faedcb;color:#9c7610}.alertbar__yellow a,.alertbar__yellow a:visited{text-decoration:underline;color:#9c7610}.alertbar__yellow a:hover,.alertbar__yellow a:visited:hover{text-decoration:none}.alertbar__yellow .close-notification:hover{color:#eec557}.alertbar__blue{border:1px solid #6bafff;background:#b8d9ff;color:#00499e}.alertbar__blue a,.alertbar__blue a:visited{text-decoration:underline;color:#00499e}.alertbar__blue a:hover,.alertbar__blue a:visited:hover{text-decoration:none}.alertbar__blue .close-notification:hover{color:#001a38}.alertbar__green{border:1px solid #00e75f;background:#9bffc4;color:#008135}.alertbar__green a,.alertbar__green a:visited{text-decoration:underline;color:#008135}.alertbar p a:hover,.alertbar__blue p a:hover,.alertbar__green a:hover,.alertbar__green a:visited:hover,.alertbar__green p a:hover,.alertbar__red p a:hover,.alertbar__yellow p a:hover,.events .event-info a:hover,.forum-thread,.leaderboard a,.person-activity{text-decoration:none}.alertbar__green .close-notification:hover{color:#001b0b}.alertbar h1,.alertbar h2,.alertbar h3,.alertbar__blue h1,.alertbar__blue h2,.alertbar__blue h3,.alertbar__green h1,.alertbar__green h2,.alertbar__green h3,.alertbar__red h1,.alertbar__red h2,.alertbar__red h3,.alertbar__yellow h1,.alertbar__yellow h2,.alertbar__yellow h3{margin-bottom:.8rem}.alertbar h1,.alertbar__blue h1,.alertbar__green h1,.alertbar__red h1,.alertbar__yellow h1{font-size:1.7rem}.alertbar h2,.alertbar__blue h2,.alertbar__green h2,.alertbar__red h2,.alertbar__yellow h2{font-size:1.3rem}.alertbar h3,.alertbar__blue h3,.alertbar__green h3,.alertbar__red h3,.alertbar__yellow h3{font-size:1rem}.alertbar p,.alertbar__blue p,.alertbar__green p,.alertbar__red p,.alertbar__yellow p{font-size:.95rem}.alertbar img,.alertbar__blue img,.alertbar__green img,.alertbar__red img,.alertbar__yellow img{max-width:100%;height:auto}.docs{padding:0;border-bottom:1px solid rgba(127,148,153,.11)}.docs .row{margin:0}.docs .advanced,.docs .beginners{padding:80px 20px;text-align:center}.docs img{margin-bottom:30px;display:inline-block}section.forum .flex,section.forum .flex-center,section.forum .forum-thread,section.forum .forum-thread .meta{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.docs h2{font-size:2rem;margin-bottom:1rem}.docs p{color:#4f5f63;line-height:1.5;font-size:1.1rem;margin-bottom:30px}#registrationForm .docs input[type=submit],.docs #registrationForm input[type=submit],.docs .button,.docs .quick-menu .login input[type=submit],.docs .quick-menu .new-profile input[type=submit],.docs .tagAdd,.quick-menu .login .docs input[type=submit],.quick-menu .new-profile .docs input[type=submit]{font-size:1rem}section.forum{background:rgba(127,148,153,.11);background-size:100%;background-position:center bottom;background-repeat:no-repeat;position:relative}section.forum h1{font-size:1.8rem;text-align:center;position:relative;z-index:30}section.forum h1+p{max-width:700px;margin:1rem auto 3rem;padding:0 10px;font-size:1rem;color:#5a6d71;text-align:center}.forum-thread img,.person-activity img,section.forum .forum-thread .avatar img{height:auto;width:100%;max-width:112px}section.forum .flex,section.forum .flex-center{display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}section.forum .forum-thread{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;display:flex}section.forum .forum-thread .avatar{-webkit-box-flex:0;-webkit-flex:0 0 23%;-ms-flex:0 0 23%;flex:0 0 23%;margin-right:2%}section.forum .forum-thread .meta{display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex:1 0 75%;-ms-flex:1 0 75%;flex:1 0 75%}section.forum .forum-thread .category{margin:.5rem 0 0}section.forum .forum-thread .category span{font-size:.75rem}section.forum .goto-forum{text-align:center;margin-top:60px}section.forum small{font-size:.9rem;color:#4f5f63;text-transform:uppercase;font-weight:700;letter-spacing:.5px;display:block;margin-bottom:.5rem}.forum-thread,.person-activity{background:#fff;padding:15px;margin-bottom:30px;border:1px solid #e9e9e9;-webkit-transition:box-shadow .2s;transition:box-shadow .2s;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.leaderboard a:hover,.people{background:rgba(127,148,153,.11)}.forum-thread .row,.person-activity .row{margin:0}.forum-thread img,.person-activity img{border-radius:50%}.forum-thread img.aura,.person-activity img.aura{border:2px solid transparent;border-radius:50%;padding:3px}.forum-thread img.aura.mvp,.person-activity img.aura.mvp{border-color:rgba(46,179,105,.4)}.forum-thread img.aura.admin,.person-activity img.aura.admin{border-color:rgba(246,23,0,.4)}.forum-thread img.aura.hq,.person-activity img.aura.hq{border-color:rgba(34,124,246,.4)}.forum-thread h3,.person-activity h3{margin-bottom:2px;font-weight:400;color:#000;line-height:1.3;font-size:1rem}.forum-thread p,.person-activity p{margin:0;text-align:left;font-size:.9rem;color:#7F9499}.leaderboard,.people{text-align:center}.forum-thread small,.person-activity small{font-size:.8rem}.forum-thread .col-xs-2,.person-activity .col-xs-2{padding:0 .1rem}.leaderboard,.people{position:relative;overflow:hidden}.leaderboard .user-profile,.people .user-profile{width:100%;max-width:68px;margin:0 auto;height:auto;border-radius:50%;position:relative;-webkit-transition:box-shadow .2s;transition:box-shadow .2s}.leaderboard h1,.leaderboard p,.people h1,.people p{text-align:center;position:relative;z-index:30}.leaderboard h1,.people h1{font-size:1.8rem}.leaderboard p,.people p{max-width:700px;margin:1rem auto 3rem;padding:0 10px;font-size:1rem;color:#5a6d71}.leaderboard div[data-attr=weeks] .profile,.leaderboard div[data-attr=weeks] strong,.leaderboard div[data-attr=alltime] .profile,.leaderboard div[data-attr=alltime] strong{padding-left:.5rem}#registrationForm .leaderboard input[type=submit],#registrationForm .people input[type=submit],.leaderboard #registrationForm input[type=submit],.leaderboard .button,.leaderboard .quick-menu .login input[type=submit],.leaderboard .quick-menu .new-profile input[type=submit],.leaderboard .tagAdd,.people #registrationForm input[type=submit],.people .button,.people .quick-menu .login input[type=submit],.people .quick-menu .new-profile input[type=submit],.people .tagAdd,.quick-menu .login .leaderboard input[type=submit],.quick-menu .login .people input[type=submit],.quick-menu .new-profile .leaderboard input[type=submit],.quick-menu .new-profile .people input[type=submit]{margin:3rem auto 0}.leaderboard div[data-attr=weeks] .meta,.leaderboard div[data-attr=alltime] .meta{margin-left:4%}.people .container,.people .page,.people .subpage{max-width:1400px;position:relative;z-index:30}.people div[class^=col-]{margin-bottom:15px}.leaderboard div[data-attr=weeks],.leaderboard div[data-attr=alltime]{position:relative;z-index:30}.leaderboard div[data-attr=weeks]{text-align:left}.leaderboard div[data-attr=alltime]{margin-bottom:3rem;text-align:left}.leaderboard a{padding:15px 0}.leaderboard strong{font-size:1rem;color:#E13E8F;text-transform:uppercase;font-weight:700;letter-spacing:.5px;display:block}.leaderboard .profile{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.leaderboard .profile:last-of-type{margin:0}.leaderboard .avatar{-webkit-box-flex:0;-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%}.leaderboard .meta{-webkit-box-flex:0;-webkit-flex:0 0 76%;-ms-flex:0 0 76%;flex:0 0 76%}.leaderboard .meta .name{padding-left:0;margin-bottom:.4rem;font-size:1rem}.leaderboard .meta small{font-size:.95rem;color:#667a7f}.leaderboard .meta small span{color:#4f5f63}.events{padding:0}.events .event-map{position:relative;overflow:hidden}.events .event-info{padding:20px;color:#fff;background:rgba(22,22,22,.87);text-align:center}.events .event-info img{max-width:66px;height:auto;margin:10px auto 20px;display:block}.events .event-info h1{font-size:2rem;margin-bottom:30px}.events .event-info p{line-height:1.5}.events .event-info a{margin-top:30px;display:inline-block;font-weight:700}.events #map{height:300px}#registrationForm .community-page .docs input.transparent[type=submit],#registrationForm .community-page .forum input.transparent[type=submit],#registrationForm .frontpage .docs input.transparent[type=submit],#registrationForm .frontpage .forum input.transparent[type=submit],.community-page .docs #registrationForm input.transparent[type=submit],.community-page .docs .button.transparent,.community-page .docs .quick-menu .login input.transparent[type=submit],.community-page .docs .quick-menu .new-profile input.transparent[type=submit],.community-page .docs .transparent.tagAdd,.community-page .forum #registrationForm input.transparent[type=submit],.community-page .forum .button.transparent,.community-page .forum .quick-menu .login input.transparent[type=submit],.community-page .forum .quick-menu .new-profile input.transparent[type=submit],.community-page .forum .transparent.tagAdd,.frontpage .docs #registrationForm input.transparent[type=submit],.frontpage .docs .button.transparent,.frontpage .docs .quick-menu .login input.transparent[type=submit],.frontpage .docs .quick-menu .new-profile input.transparent[type=submit],.frontpage .docs .transparent.tagAdd,.frontpage .forum #registrationForm input.transparent[type=submit],.frontpage .forum .button.transparent,.frontpage .forum .quick-menu .login input.transparent[type=submit],.frontpage .forum .quick-menu .new-profile input.transparent[type=submit],.frontpage .forum .transparent.tagAdd,.quick-menu .login .community-page .docs input.transparent[type=submit],.quick-menu .login .community-page .forum input.transparent[type=submit],.quick-menu .login .frontpage .docs input.transparent[type=submit],.quick-menu .login .frontpage .forum input.transparent[type=submit],.quick-menu .new-profile .community-page .docs input.transparent[type=submit],.quick-menu .new-profile .community-page .forum input.transparent[type=submit],.quick-menu .new-profile .frontpage .docs input.transparent[type=submit],.quick-menu .new-profile .frontpage .forum input.transparent[type=submit]{float:none;font-size:.9rem;padding:12px 14px;-webkit-transition:all .2s;transition:all .2s}#registrationForm .community-page .docs input.transparent[type=submit]:hover,#registrationForm .community-page .forum input.transparent[type=submit]:hover,#registrationForm .frontpage .docs input.transparent[type=submit]:hover,#registrationForm .frontpage .forum input.transparent[type=submit]:hover,.community-page .docs #registrationForm input.transparent[type=submit]:hover,.community-page .docs .button.transparent:hover,.community-page .docs .quick-menu .login input.transparent[type=submit]:hover,.community-page .docs .quick-menu .new-profile input.transparent[type=submit]:hover,.community-page .docs .transparent.tagAdd:hover,.community-page .forum #registrationForm input.transparent[type=submit]:hover,.community-page .forum .button.transparent:hover,.community-page .forum .quick-menu .login input.transparent[type=submit]:hover,.community-page .forum .quick-menu .new-profile input.transparent[type=submit]:hover,.community-page .forum .transparent.tagAdd:hover,.frontpage .docs #registrationForm input.transparent[type=submit]:hover,.frontpage .docs .button.transparent:hover,.frontpage .docs .quick-menu .login input.transparent[type=submit]:hover,.frontpage .docs .quick-menu .new-profile input.transparent[type=submit]:hover,.frontpage .docs .transparent.tagAdd:hover,.frontpage .forum #registrationForm input.transparent[type=submit]:hover,.frontpage .forum .button.transparent:hover,.frontpage .forum .quick-menu .login input.transparent[type=submit]:hover,.frontpage .forum .quick-menu .new-profile input.transparent[type=submit]:hover,.frontpage .forum .transparent.tagAdd:hover,.quick-menu .login .community-page .docs input.transparent[type=submit]:hover,.quick-menu .login .community-page .forum input.transparent[type=submit]:hover,.quick-menu .login .frontpage .docs input.transparent[type=submit]:hover,.quick-menu .login .frontpage .forum input.transparent[type=submit]:hover,.quick-menu .new-profile .community-page .docs input.transparent[type=submit]:hover,.quick-menu .new-profile .community-page .forum input.transparent[type=submit]:hover,.quick-menu .new-profile .frontpage .docs input.transparent[type=submit]:hover,.quick-menu .new-profile .frontpage .forum input.transparent[type=submit]:hover{background:#2EB369;color:#fff;opacity:1;border-color:#2EB369}#registrationForm .community-page .docs input.transparent.ink[type=submit],#registrationForm .community-page .forum input.transparent.ink[type=submit],#registrationForm .frontpage .docs input.transparent.ink[type=submit],#registrationForm .frontpage .forum input.transparent.ink[type=submit],.community-page .docs #registrationForm input.transparent.ink[type=submit],.community-page .docs .button.transparent.ink,.community-page .docs .quick-menu .login input.transparent.ink[type=submit],.community-page .docs .quick-menu .new-profile input.transparent.ink[type=submit],.community-page .docs .transparent.ink.tagAdd,.community-page .forum #registrationForm input.transparent.ink[type=submit],.community-page .forum .button.transparent.ink,.community-page .forum .quick-menu .login input.transparent.ink[type=submit],.community-page .forum .quick-menu .new-profile input.transparent.ink[type=submit],.community-page .forum .transparent.ink.tagAdd,.frontpage .docs #registrationForm input.transparent.ink[type=submit],.frontpage .docs .button.transparent.ink,.frontpage .docs .quick-menu .login input.transparent.ink[type=submit],.frontpage .docs .quick-menu .new-profile input.transparent.ink[type=submit],.frontpage .docs .transparent.ink.tagAdd,.frontpage .forum #registrationForm input.transparent.ink[type=submit],.frontpage .forum .button.transparent.ink,.frontpage .forum .quick-menu .login input.transparent.ink[type=submit],.frontpage .forum .quick-menu .new-profile input.transparent.ink[type=submit],.frontpage .forum .transparent.ink.tagAdd,.quick-menu .login .community-page .docs input.transparent.ink[type=submit],.quick-menu .login .community-page .forum input.transparent.ink[type=submit],.quick-menu .login .frontpage .docs input.transparent.ink[type=submit],.quick-menu .login .frontpage .forum input.transparent.ink[type=submit],.quick-menu .new-profile .community-page .docs input.transparent.ink[type=submit],.quick-menu .new-profile .community-page .forum input.transparent.ink[type=submit],.quick-menu .new-profile .frontpage .docs input.transparent.ink[type=submit],.quick-menu .new-profile .frontpage .forum input.transparent.ink[type=submit]{background:rgba(255,255,255,.3)}.map header{background:0 0!important}.map .container,.map .page,.map .subpage{position:relative;z-index:200}.map+div{margin-top:15px}.map nav a,.map nav a:active,.map nav a:visited{text-decoration:none;color:rgba(255,255,255,.6);-webkit-transition:color .2s;transition:color .2s}.map nav a:active:hover,.map nav a:hover,.map nav a:visited:hover{color:#fff}.map .event-map{position:relative;padding-top:0!important;min-height:200px}.map #map{height:200px}.map .col-md-4{margin-bottom:40px}.map .people{border-bottom:1px solid #f5f5f5;padding:30px 0}.map .people .teaser{max-width:640px;margin:0 auto}.map .people .teaser h1{margin-bottom:1rem}.map .people .teaser p+p{margin-top:30px}.map .people .teaser strong{font-size:1.2rem}.map .people-activity{background:#f5f5f5;padding:30px 0}.map .people-activity strong{margin-bottom:.3rem;display:block;font-size:1.6rem}.map .people-activity img{max-height:66px;width:auto}.map .people-activity .person-activity-text{margin-top:8px}.documentation{padding:0}.documentation>.container,.documentation>.page,.documentation>.subpage{position:relative}.documentation #body a{color:#6dbb32}.documentation #body a:hover{text-decoration:underline}.documentation #body a.active h3{color:#88d050!important}.documentation .search-big{margin-bottom:0;margin-top:20px}.docs-overview{text-align:center}.docs-overview h1{font-size:3rem;font-weight:100;color:rgba(0,0,0,.8)}.docs-overview .docs-section{display:inline-block;max-width:400px;text-align:center;color:#000;-webkit-transition:all .1s cubic-bezier(.7,0,.3,1);transition:all .1s cubic-bezier(.7,0,.3,1)}.dot,.dot .line{display:block}.docs-overview .docs-section img{text-align:center;opacity:.8;-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95);-webkit-transition:all .1s linear;transition:all .1s linear}.docs-overview .docs-section h2,.docs-overview .docs-section p{-webkit-transition:all .1s linear;transition:all .1s linear}.docs-overview .docs-section h2{font-weight:100;color:rgba(0,0,0,.8);margin-bottom:1rem}.docs-overview .docs-section p{text-align:center;color:#000}.docs-overview .docs-section:hover{cursor:pointer}.docs-overview .docs-section:hover h2,.docs-overview .docs-section:hover p{color:#000}.docs-overview .docs-section:hover img{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.docs-overview .contributing{text-align:left;margin-top:2rem}.docs-overview .contributing h3{color:rgba(0,0,0,.8);font-size:1rem;margin-bottom:.5rem}.docs-overview .contributing p{color:#000;font-size:.9rem;margin-top:0}.docs-overview h3{font-weight:100;margin-top:80px}#markdown-docs a{color:#6dbb32;text-decoration:none}#markdown-docs a:hover{color:#3e6b1c}#markdown-docs h1 a,#markdown-docs h2 a,#markdown-docs h3 a,#markdown-docs h4 a,#markdown-docs h5 a,#markdown-docs h6 a{color:#000;text-decoration:underline}#markdown-docs h1 a:hover,#markdown-docs h2 a:hover,#markdown-docs h3 a:hover,#markdown-docs h4 a:hover,#markdown-docs h5 a:hover,#markdown-docs h6 a:hover{color:#000;text-decoration:none}.dot{position:relative;margin-top:13px;background-color:#daf0c9;border:3px solid #daf0c9}.dot .line,.point{position:absolute}.dot .line.h-line{border-top:solid 3px #daf0c9}.dot .line.v-line{border-left:solid 3px #daf0c9}.dot.big{height:60px;width:60px;border-radius:40px;margin:20px auto 100px;font-size:2rem;line-height:3.5rem;text-indent:.7rem;color:#569327}.dot.big .h-line{left:50px;top:25px;width:70px;height:1px}.dot.big .v-line{left:25px;top:57px;width:1px;height:100px}.dot.big .v-line.top{top:-80px;height:80px}.dot.small{height:20px;width:20px;border-radius:30px;margin:0 auto 115px}.dot.small.last{margin-top:60px;margin-bottom:5px}.dot.small .h-line{left:17px;top:7px;width:70px;height:1px;border-width:1px}.dot.small .v-line{top:17px;left:5px;width:1px;height:120px}.dot.small .v-line.top{height:100px;top:-90px}.point{margin-left:191px;margin-top:21px;z-index:100}.point a{color:#000!important}.point h4{font-size:2rem;margin-top:13px}.explain small,.point small{margin-bottom:10px;color:#000;font-size:.9rem;display:block;line-height:1.3;padding-right:5px}.explain .col-xs-12{min-height:153px}.explain .col-xs-12 h4{margin-top:12px;font-size:2em;margin-bottom:.3rem;color:rgba(0,0,0,.8)}.explain .col-xs-12 h4 a{text-decoration:none}.explain .col-xs-12 h4 a:hover{color:#a3db78}.explain .col-xs-6{min-height:133px}.explain .col-xs-6 h5{font-size:1.1rem;margin-bottom:.2rem;font-weight:600}.explain .col-xs-6 h5 a{color:rgba(0,0,0,.8);text-decoration:none}.explain .col-xs-6 h5 a:hover{color:#a3db78}.explain .col-xs-6>a{display:inline-block;min-height:150px;padding:5px;color:#fff}.explain .col-xs-6>a:hover{cursor:pointer}.umbracoVersion{display:inline-block;font-weight:700;border-radius:2px;text-decoration:none;text-transform:capitalize;-webkit-transition:background .2s;transition:background .2s;padding:4px 6px;font-size:.85rem;background:#4ea7ff;color:#fff;margin-top:0}.download-umbraco,body.download header .navigation,body.download header.sticky .navigation{background:#a3db78}.download-umbraco{text-align:center;color:#fff;padding:0 0 100px;position:relative;z-index:90;min-height:530px;height:calc(100vh - 262px)}.download-umbraco .container,.download-umbraco .page,.download-umbraco .subpage{padding:20px 20px 0;position:relative;z-index:200}.download-umbraco h1{font-size:2rem;margin-bottom:2rem}.download-umbraco p{margin:0 auto 1.5rem;font-size:.97rem;line-height:1.5;color:#000}#registrationForm .download-umbraco p+input[type=submit],.download-umbraco #registrationForm p+input[type=submit],.download-umbraco .quick-menu .login p+input[type=submit],.download-umbraco .quick-menu .new-profile p+input[type=submit],.download-umbraco p+.button,.download-umbraco p+.tagAdd,.quick-menu .login .download-umbraco p+input[type=submit],.quick-menu .new-profile .download-umbraco p+input[type=submit]{margin-top:1.5rem}.download-umbraco p.small{font-size:.97rem}.download-umbraco p a{text-decoration:none;border-bottom:2px solid rgba(0,0,0,.48)}.download-umbraco p a:hover{border-color:#fff}#registrationForm .download-umbraco input[type=submit],.download-umbraco #registrationForm input[type=submit],.download-umbraco .button,.download-umbraco .quick-menu .login input[type=submit],.download-umbraco .quick-menu .new-profile input[type=submit],.download-umbraco .tagAdd,.quick-menu .login .download-umbraco input[type=submit],.quick-menu .new-profile .download-umbraco input[type=submit]{margin-bottom:1rem;position:relative;padding-left:60px;cursor:pointer;overflow:hidden;-webkit-transition:all .2s ease;transition:all .2s ease}#registrationForm .download-umbraco input[type=submit] i,.download-umbraco #registrationForm input[type=submit] i,.download-umbraco .button i,.download-umbraco .quick-menu .login input[type=submit] i,.download-umbraco .quick-menu .new-profile input[type=submit] i,.download-umbraco .tagAdd i,.quick-menu .login .download-umbraco input[type=submit] i,.quick-menu .new-profile .download-umbraco input[type=submit] i{font-size:1.5rem;position:absolute;top:50%;left:0;opacity:.5;-webkit-transform:translate(20px,-53%);-ms-transform:translate(20px,-53%);transform:translate(20px,-53%);-webkit-transition:opacity .2s;transition:opacity .2s}.download-umbraco .pm-nuget:before,.download-umbraco .pre{display:block;font-family:Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;font-size:.8rem}#registrationForm .download-umbraco input[type=submit]:hover,#registrationForm .download-umbraco input[type=submit]:hover i,.download-umbraco #registrationForm input[type=submit]:hover,.download-umbraco #registrationForm input[type=submit]:hover i,.download-umbraco .button:hover,.download-umbraco .button:hover i,.download-umbraco .quick-menu .login input[type=submit]:hover,.download-umbraco .quick-menu .login input[type=submit]:hover i,.download-umbraco .quick-menu .new-profile input[type=submit]:hover,.download-umbraco .quick-menu .new-profile input[type=submit]:hover i,.download-umbraco .tagAdd:hover,.download-umbraco .tagAdd:hover i,.quick-menu .login .download-umbraco input[type=submit]:hover,.quick-menu .login .download-umbraco input[type=submit]:hover i,.quick-menu .new-profile .download-umbraco input[type=submit]:hover,.quick-menu .new-profile .download-umbraco input[type=submit]:hover i{opacity:1}#registrationForm .download-umbraco input[type=submit] .ink,.download-umbraco #registrationForm input[type=submit] .ink,.download-umbraco .button .ink,.download-umbraco .quick-menu .login input[type=submit] .ink,.download-umbraco .quick-menu .new-profile input[type=submit] .ink,.download-umbraco .tagAdd .ink,.quick-menu .login .download-umbraco input[type=submit] .ink,.quick-menu .new-profile .download-umbraco input[type=submit] .ink{background:rgba(163,219,120,.3)}#registrationForm .download-umbraco input[type=submit]:not(:active),.download-umbraco #registrationForm input[type=submit]:not(:active),.download-umbraco .button:not(:active),.download-umbraco .quick-menu .login input[type=submit]:not(:active),.download-umbraco .quick-menu .new-profile input[type=submit]:not(:active),.download-umbraco .tagAdd:not(:active),.quick-menu .login .download-umbraco input[type=submit]:not(:active),.quick-menu .new-profile .download-umbraco input[type=submit]:not(:active){-webkit-transition:box-shadow .2s;transition:box-shadow .2s}#registrationForm .download-umbraco input[type=submit]:active,.download-umbraco #registrationForm input[type=submit]:active,.download-umbraco .button:active,.download-umbraco .quick-menu .login input[type=submit]:active,.download-umbraco .quick-menu .new-profile input[type=submit]:active,.download-umbraco .tagAdd:active,.quick-menu .login .download-umbraco input[type=submit]:active,.quick-menu .new-profile .download-umbraco input[type=submit]:active{box-shadow:none}.download-umbraco .pre{overflow:auto;background-color:#333;color:#fff;line-height:1.4em;background-clip:padding-box;padding:8px 25px 8px 50px;border-radius:5px;width:auto;min-width:300px;text-align:center;border:none;margin:0 auto}.download-umbraco .pre:hover{background:#404040;cursor:pointer}.download-umbraco .pm-nuget{position:relative;display:block;margin:0 auto;height:100%;width:300px}.download-umbraco .pm-nuget:before{content:"PM>";position:absolute;top:50%;left:0;-webkit-transform:translate(25px,-46%);-ms-transform:translate(25px,-46%);transform:translate(25px,-46%);opacity:.9}.download-umbraco .archive{position:absolute;bottom:5%;left:50%;transform:translate(-50%,0);color:#000;z-index:200}.download-umbraco .archive,.historical-releases .version span{-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0)}.download-umbraco .archive a:hover{text-decoration:none;opacity:1}.historical-releases .content{min-height:40vh;margin-top:100px;padding-left:30px}.historical-releases .title-level{margin-bottom:15px;font-weight:700;font-size:1.3rem}.historical-releases ul li{list-style:none}.historical-releases ul a{color:#000;font-size:1rem;margin-top:10px;margin-bottom:5px}.historical-releases ul a:hover{color:#000}.historical-releases .versions{border-left:1px solid #e6e6e6}.historical-releases .version{width:100%;position:relative;padding:15px 20px 20px;margin-bottom:30px;max-width:640px}.historical-releases .version ul{padding-left:60px;overflow:hidden}.historical-releases .version li{list-style:none;display:block;float:left}.historical-releases .version span{font-size:1.7rem;font-weight:700;background:#fff;color:#222;border:1px solid rgba(34,34,34,.3);border-radius:50%;height:60px;width:60px;line-height:60px;display:block;text-align:center;position:absolute;left:0;top:0;transform:translate(-50%,0);-webkit-transition:background .2s;transition:background .2s}.historical-releases .downloadable{width:25%}.historical-releases .downloadable a{font-size:1rem;text-decoration:none;padding:10px 12px;background-color:#2EB369;color:#fff!important;font-weight:700;border-radius:3px;display:block;margin-right:20px;margin-bottom:20px;margin-top:0;min-width:60px;text-align:center;-webkit-transition:all .2s ease;transition:all .2s ease}.historical-releases .downloadable a:hover{background:#33c775;color:#fff!important;box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24)}.mac-notice{text-align:center;background:rgba(0,0,0,.13);padding:15px 0;font-size:1.1rem;position:relative;z-index:999;display:none}.mac-notice:before{content:"";display:inline-block;height:24px;width:24px;margin-right:8px;background:url(../images/osx.png) left -3px no-repeat;background-size:24px 24px;vertical-align:middle}.mac-notice a:hover{text-decoration:none}.steps{text-align:left;margin:60px auto 0}.steps h2{font-size:1.9rem;margin-bottom:50px;font-weight:600;text-align:center}.steps .guide{width:100%;margin:0 auto;text-align:center}.steps img{display:block;margin:0 auto;width:60%;height:auto}.steps .step{font-size:1.5rem;margin-bottom:80px;position:relative;display:inline-block;width:30%}.steps .step span{display:block;text-align:center;border:2px dashed rgba(0,0,0,.23);color:rgba(0,0,0,.23);border-radius:50%;height:50px;width:50px;margin:0 auto 20px;font-size:1.7rem;font-weight:700;line-height:45px}.steps .step.step-one{-webkit-animation-delay:.1s;animation-delay:.1s}.steps .step.step-two{-webkit-animation-delay:.4s;animation-delay:.4s}.steps .step.step-three{-webkit-animation-delay:.7s;animation-delay:.7s}.archive i{font-size:1.3rem;padding-top:2px}body.mac .mac-notice{display:block}.download .dot.progress{text-indent:.3rem;text-align:center;line-height:2.8rem}.download .dot.progress .counter{font-size:1.1rem}.download.latest .dot{margin-top:2rem}.explain .changes small{line-height:.5rem}.chart{position:absolute;top:-4px;left:-8px;z-index:1}.chart .percentage{display:inline-block;position:absolute;top:9px;left:16px;font-size:1.1rem;color:#569327}.chart canvas{top:1px;position:absolute;left:5px}.inprogress .chart .percentage,.plannedreleases .chart .percentage{position:initial}.get-release i{font-size:2.5rem;line-height:5rem}.get-release{line-height:1.5;padding:2.5rem 0;margin:2.5rem 0;border-bottom:1px solid #e8e8e8;border-top:1px solid #e8e8e8}.get-release h3{font-size:1.1rem;margin-bottom:.3rem;color:rgba(0,0,0,.8)}.get-release h3 a{text-decoration:none}.get-release h3 a:hover{color:#a3db78}.get-release p{color:rgba(0,0,0,.8);font-size:.95rem;line-height:1.3;margin-bottom:.5rem}.get-release small{font-size:.7rem;color:#000}.release{min-height:160px}.release.zip i{color:rgba(0,0,0,.8)}.release.bin i{color:rgba(0,0,0,.4);font-size:1.6rem}.release.bin h4{font-size:.9rem;margin-bottom:.3rem;color:rgba(0,0,0,.8)}.release.bin h4 a{text-decoration:none}.release.bin h4 a:hover{color:#a3db78}.release.bin.col-sm-5{padding-top:18px}.release.col-sm-1{text-align:center}.latest .dot.big{margin-bottom:30px}.latest .explain h4{font-size:2.5rem}.latest .explain p{font-size:1.1rem;color:#000}.release .markdown-syntax h1,.release .markdown-syntax h2,.release .markdown-syntax h3,.release .markdown-syntax strong{color:rgba(0,0,0,.8)}.latest .explain .col-xs-12{min-height:0}.release .markdown-syntax a,.release .markdown-syntax li,.release .markdown-syntax p,.release .markdown-syntax ul{color:rgba(0,0,0,.8);font-size:.95rem}.release .markdown-syntax a{text-decoration:none}.release .markdown-syntax a:hover{text-decoration:underline}.release .markdown-syntax p+p{margin-bottom:15px!important}.release .markdown-syntax h1{font-size:2rem}.release .markdown-syntax h2{font-size:1.3rem}.release .markdown-syntax h3{font-size:1.1rem}.release .markdown-syntax ul li{margin-bottom:.5rem;line-height:1.5}.releaseTable .col-xs-3:first-child .progress .top,.releaseTable .col-xs-3:nth-last-child(2) .small:last-child .v-line{display:none}.forum-overview .forum,.forum-overview .forum .topic-row,.forum-overview .forum-content .posts{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.inprogress .dot.big.progress{text-indent:0;border:none}.inprogress .dot.big.progress .v-line{top:60px;left:28px}.inprogress .dot.big.progress .v-line.top{top:-80px}.inprogress .dot.big.progress .h-line{top:28px}.inprogress .chart{top:0;left:0;width:100%;height:100%;text-align:center;line-height:3rem}.inprogress .chart canvas{top:0;left:0}.plannedreleases .dot.big{text-indent:0;line-height:3rem}.plannedreleases .chart{top:0;left:0;width:100%;height:100%;text-align:center}.wikipage-page .markdown-syntax a{color:#6dbb32;text-decoration:none}.wikipage-page .markdown-syntax a:hover{color:#3e6b1c}.wikipage-page .markdown-syntax h1 a,.wikipage-page .markdown-syntax h2 a,.wikipage-page .markdown-syntax h3 a,.wikipage-page .markdown-syntax h4 a,.wikipage-page .markdown-syntax h5 a,.wikipage-page .markdown-syntax h6 a{color:#000;text-decoration:underline}.wikipage-page .markdown-syntax h1 a:hover,.wikipage-page .markdown-syntax h2 a:hover,.wikipage-page .markdown-syntax h3 a:hover,.wikipage-page .markdown-syntax h4 a:hover,.wikipage-page .markdown-syntax h5 a:hover,.wikipage-page .markdown-syntax h6 a:hover{color:#000;text-decoration:none}.forum-overview .forum{display:flex;-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;background:0 0;padding:0}.forum-overview .forum-content,.forum-overview .forum-head,.forum-overview .forum-settings{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.forum-overview .forum-settings{margin:30px 0 0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.forum-overview .forum-settings .search-big{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.forum-overview .forum-settings .or{-webkit-box-flex:0;-webkit-flex:0 0 5%;-ms-flex:0 0 5%;flex:0 0 5%;color:#445255;font-size:1.1rem;text-align:center}.forum-overview .forum-settings .sorting{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.forum-overview .forum-settings input,.forum-overview .forum-settings select{font-size:.95rem;color:#7F9499}.forum-overview .forum-settings input:focus,.forum-overview .forum-settings select:focus{color:#445255}.forum-overview .forum-head{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;padding:20px 15px;border-bottom:1px solid #f5f5f5;font-size:.8rem;text-transform:uppercase;font-weight:700;letter-spacing:.5px}.forum-overview .forum-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.forum-overview .forum-content .posts{display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.forum-overview .forum-content .posts small{color:#445255;font-size:1rem;margin-bottom:.2rem}.forum-overview .forum-content .posts span{font-size:.8rem;color:#7F9499}.forum-overview .forum .topic-row{padding:25px 15px;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid rgba(127,148,153,.11)}.forum-overview .forum .topic-row .topic{font-size:.95rem;line-height:1.3}.forum-overview .forum .topic-row .topic a{text-decoration:none;display:block}.forum-overview .forum .topic-row .topic a:hover h3{text-decoration:underline}.forum-overview .forum .topic-row .topic span{display:block;font-size:.75rem;color:#7F9499;margin-top:8px}.forum-overview .forum .topic-row .topic span strong{font-weight:400;color:#445255}.forum-overview .forum .topic-row .category{line-height:1.3}.forum-overview .forum .topic-row.solved{background:rgba(163,219,120,.23);border-bottom:2px solid rgba(163,219,120,.66)}.forum-overview .forum .topic{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;margin-right:5%}.forum-overview .forum .category{-webkit-box-flex:0;-webkit-flex:0 0 30%;-ms-flex:0 0 30%;flex:0 0 30%;margin-right:5%}.forum-overview .forum .posts{-webkit-box-flex:0;-webkit-flex:0 0 10%;-ms-flex:0 0 10%;flex:0 0 10%;text-align:center}.forum-overview .sorting{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;margin-left:auto}.forum-overview .sorting select{border:1px solid #cfcfcf;border-radius:0;padding:20px 20px 20px 10px;background-position:95% center}.forum-overview .sorting select:focus,.forum-overview .sorting select:hover{color:#000;background-position:95% center}.forum-overview .pagination{margin:60px 0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.forum-overview .pagination a{margin-top:0}#registrationForm .forum-page input.create-new-thread[type=submit],#registrationForm .forum-page input.delete-thread[type=submit],#registrationForm .forum-page input.follow[type=submit],#registrationForm .forum-page input.go-to-solution[type=submit],#registrationForm .forum-page input.login[type=submit],.forum-page #registrationForm input.create-new-thread[type=submit],.forum-page #registrationForm input.delete-thread[type=submit],.forum-page #registrationForm input.follow[type=submit],.forum-page #registrationForm input.go-to-solution[type=submit],.forum-page #registrationForm input.login[type=submit],.forum-page .button.create-new-thread,.forum-page .button.delete-thread,.forum-page .button.follow,.forum-page .button.go-to-solution,.forum-page .button.login,.forum-page .create-new-thread.tagAdd,.forum-page .delete-thread.tagAdd,.forum-page .follow.tagAdd,.forum-page .go-to-solution.tagAdd,.forum-page .login.tagAdd,.forum-page .quick-menu .login input.create-new-thread[type=submit],.forum-page .quick-menu .login input.delete-thread[type=submit],.forum-page .quick-menu .login input.follow[type=submit],.forum-page .quick-menu .login input.go-to-solution[type=submit],.forum-page .quick-menu .login input.login[type=submit],.forum-page .quick-menu .new-profile input.create-new-thread[type=submit],.forum-page .quick-menu .new-profile input.delete-thread[type=submit],.forum-page .quick-menu .new-profile input.follow[type=submit],.forum-page .quick-menu .new-profile input.go-to-solution[type=submit],.forum-page .quick-menu .new-profile input.login[type=submit],.quick-menu .login .forum-page input.create-new-thread[type=submit],.quick-menu .login .forum-page input.delete-thread[type=submit],.quick-menu .login .forum-page input.follow[type=submit],.quick-menu .login .forum-page input.go-to-solution[type=submit],.quick-menu .login .forum-page input.login[type=submit],.quick-menu .new-profile .forum-page input.create-new-thread[type=submit],.quick-menu .new-profile .forum-page input.delete-thread[type=submit],.quick-menu .new-profile .forum-page input.follow[type=submit],.quick-menu .new-profile .forum-page input.go-to-solution[type=submit],.quick-menu .new-profile .forum-page input.login[type=submit]{padding:6px 18px 10px 14px;font-size:.8rem;margin-top:5px;margin-left:5px;min-width:115px;width:auto;-webkit-transition:all .2s;transition:all .2s}#registrationForm .forum-page input.create-new-thread[type=submit] i,#registrationForm .forum-page input.delete-thread[type=submit] i,#registrationForm .forum-page input.follow[type=submit] i,#registrationForm .forum-page input.go-to-solution[type=submit] i,#registrationForm .forum-page input.login[type=submit] i,.forum-page #registrationForm input.create-new-thread[type=submit] i,.forum-page #registrationForm input.delete-thread[type=submit] i,.forum-page #registrationForm input.follow[type=submit] i,.forum-page #registrationForm input.go-to-solution[type=submit] i,.forum-page #registrationForm input.login[type=submit] i,.forum-page .button.create-new-thread i,.forum-page .button.delete-thread i,.forum-page .button.follow i,.forum-page .button.go-to-solution i,.forum-page .button.login i,.forum-page .create-new-thread.tagAdd i,.forum-page .delete-thread.tagAdd i,.forum-page .follow.tagAdd i,.forum-page .go-to-solution.tagAdd i,.forum-page .login.tagAdd i,.forum-page .quick-menu .login input.create-new-thread[type=submit] i,.forum-page .quick-menu .login input.delete-thread[type=submit] i,.forum-page .quick-menu .login input.follow[type=submit] i,.forum-page .quick-menu .login input.go-to-solution[type=submit] i,.forum-page .quick-menu .login input.login[type=submit] i,.forum-page .quick-menu .new-profile input.create-new-thread[type=submit] i,.forum-page .quick-menu .new-profile input.delete-thread[type=submit] i,.forum-page .quick-menu .new-profile input.follow[type=submit] i,.forum-page .quick-menu .new-profile input.go-to-solution[type=submit] i,.forum-page .quick-menu .new-profile input.login[type=submit] i,.quick-menu .login .forum-page input.create-new-thread[type=submit] i,.quick-menu .login .forum-page input.delete-thread[type=submit] i,.quick-menu .login .forum-page input.follow[type=submit] i,.quick-menu .login .forum-page input.go-to-solution[type=submit] i,.quick-menu .login .forum-page input.login[type=submit] i,.quick-menu .new-profile .forum-page input.create-new-thread[type=submit] i,.quick-menu .new-profile .forum-page input.delete-thread[type=submit] i,.quick-menu .new-profile .forum-page input.follow[type=submit] i,.quick-menu .new-profile .forum-page input.go-to-solution[type=submit] i,.quick-menu .new-profile .forum-page input.login[type=submit] i{margin-right:3px;font-size:18px;-webkit-transform:translate(0,3px);-ms-transform:translate(0,3px);transform:translate(0,3px);display:inline-block;-webkit-transition:opacity .2s;transition:opacity .2s}#registrationForm .forum-page input.create-new-thread[type=submit]:hover,#registrationForm .forum-page input.delete-thread[type=submit]:hover,#registrationForm .forum-page input.follow[type=submit]:hover,#registrationForm .forum-page input.go-to-solution[type=submit]:hover,#registrationForm .forum-page input.login[type=submit]:hover,.forum-page #registrationForm input.create-new-thread[type=submit]:hover,.forum-page #registrationForm input.delete-thread[type=submit]:hover,.forum-page #registrationForm input.follow[type=submit]:hover,.forum-page #registrationForm input.go-to-solution[type=submit]:hover,.forum-page #registrationForm input.login[type=submit]:hover,.forum-page .button.create-new-thread:hover,.forum-page .button.delete-thread:hover,.forum-page .button.follow:hover,.forum-page .button.go-to-solution:hover,.forum-page .button.login:hover,.forum-page .create-new-thread.tagAdd:hover,.forum-page .delete-thread.tagAdd:hover,.forum-page .follow.tagAdd:hover,.forum-page .go-to-solution.tagAdd:hover,.forum-page .login.tagAdd:hover,.forum-page .quick-menu .login input.create-new-thread[type=submit]:hover,.forum-page .quick-menu .login input.delete-thread[type=submit]:hover,.forum-page .quick-menu .login input.follow[type=submit]:hover,.forum-page .quick-menu .login input.go-to-solution[type=submit]:hover,.forum-page .quick-menu .login input.login[type=submit]:hover,.forum-page .quick-menu .new-profile input.create-new-thread[type=submit]:hover,.forum-page .quick-menu .new-profile input.delete-thread[type=submit]:hover,.forum-page .quick-menu .new-profile input.follow[type=submit]:hover,.forum-page .quick-menu .new-profile input.go-to-solution[type=submit]:hover,.forum-page .quick-menu .new-profile input.login[type=submit]:hover,.quick-menu .login .forum-page input.create-new-thread[type=submit]:hover,.quick-menu .login .forum-page input.delete-thread[type=submit]:hover,.quick-menu .login .forum-page input.follow[type=submit]:hover,.quick-menu .login .forum-page input.go-to-solution[type=submit]:hover,.quick-menu .login .forum-page input.login[type=submit]:hover,.quick-menu .new-profile .forum-page input.create-new-thread[type=submit]:hover,.quick-menu .new-profile .forum-page input.delete-thread[type=submit]:hover,.quick-menu .new-profile .forum-page input.follow[type=submit]:hover,.quick-menu .new-profile .forum-page input.go-to-solution[type=submit]:hover,.quick-menu .new-profile .forum-page input.login[type=submit]:hover{opacity:1}#registrationForm .forum-page input.transparent[type=submit],.forum-page #registrationForm input.transparent[type=submit],.forum-page .button.transparent,.forum-page .quick-menu .login input.transparent[type=submit],.forum-page .quick-menu .new-profile input.transparent[type=submit],.forum-page .transparent.tagAdd,.quick-menu .login .forum-page input.transparent[type=submit],.quick-menu .new-profile .forum-page input.transparent[type=submit]{border:1px solid rgba(0,0,0,.5);background:0 0;color:rgba(0,0,0,.5);padding:5px 17px 9px 13px}#registrationForm .forum-page input.transparent[type=submit]:hover,.forum-page #registrationForm input.transparent[type=submit]:hover,.forum-page .button.transparent:hover,.forum-page .quick-menu .login input.transparent[type=submit]:hover,.forum-page .quick-menu .new-profile input.transparent[type=submit]:hover,.forum-page .transparent.tagAdd:hover,.quick-menu .login .forum-page input.transparent[type=submit]:hover,.quick-menu .new-profile .forum-page input.transparent[type=submit]:hover{background:0 0;color:#000;border-color:#000}#registrationForm .forum-page input.transparent[type=submit] .ink,.forum-page #registrationForm input.transparent[type=submit] .ink,.forum-page .button.transparent .ink,.forum-page .quick-menu .login input.transparent[type=submit] .ink,.forum-page .quick-menu .new-profile input.transparent[type=submit] .ink,.forum-page .transparent.tagAdd .ink,.quick-menu .login .forum-page input.transparent[type=submit] .ink,.quick-menu .new-profile .forum-page input.transparent[type=submit] .ink{background:rgba(46,179,105,.23)}#registrationForm .forum-page input.delete-thread[type=submit],.forum-page #registrationForm input.delete-thread[type=submit],.forum-page .button.delete-thread,.forum-page .delete-thread.tagAdd,.forum-page .quick-menu .login input.delete-thread[type=submit],.forum-page .quick-menu .new-profile input.delete-thread[type=submit],.quick-menu .login .forum-page input.delete-thread[type=submit],.quick-menu .new-profile .forum-page input.delete-thread[type=submit]{opacity:1;border-color:transparent}#registrationForm .forum-page input.delete-thread[type=submit] i,.forum-page #registrationForm input.delete-thread[type=submit] i,.forum-page .button.delete-thread i,.forum-page .delete-thread.tagAdd i,.forum-page .quick-menu .login input.delete-thread[type=submit] i,.forum-page .quick-menu .new-profile input.delete-thread[type=submit] i,.quick-menu .login .forum-page input.delete-thread[type=submit] i,.quick-menu .new-profile .forum-page input.delete-thread[type=submit] i{color:#fff}#registrationForm .forum-page input.delete-thread[type=submit]:hover i,.forum-page #registrationForm input.delete-thread[type=submit]:hover i,.forum-page .button.delete-thread:hover i,.forum-page .delete-thread.tagAdd:hover i,.forum-page .quick-menu .login input.delete-thread[type=submit]:hover i,.forum-page .quick-menu .new-profile input.delete-thread[type=submit]:hover i,.quick-menu .login .forum-page input.delete-thread[type=submit]:hover i,.quick-menu .new-profile .forum-page input.delete-thread[type=submit]:hover i{opacity:.5}#registrationForm .forum-page input.delete-thread[type=submit] .ink,.forum-page #registrationForm input.delete-thread[type=submit] .ink,.forum-page .button.delete-thread .ink,.forum-page .delete-thread.tagAdd .ink,.forum-page .quick-menu .login input.delete-thread[type=submit] .ink,.forum-page .quick-menu .new-profile input.delete-thread[type=submit] .ink,.quick-menu .login .forum-page input.delete-thread[type=submit] .ink,.quick-menu .new-profile .forum-page input.delete-thread[type=submit] .ink{background:rgba(255,255,255,.3)}#registrationForm .forum-page input.following[type=submit],.forum-page #registrationForm input.following[type=submit],.forum-page .button.following,.forum-page .following.tagAdd,.forum-page .quick-menu .login input.following[type=submit],.forum-page .quick-menu .new-profile input.following[type=submit],.quick-menu .login .forum-page input.following[type=submit],.quick-menu .new-profile .forum-page input.following[type=submit]{background:#2EB369;color:#fff;opacity:1;border-color:transparent}#registrationForm .forum-page input.following[type=submit]:hover,.forum-page #registrationForm input.following[type=submit]:hover,.forum-page .button.following:hover,.forum-page .following.tagAdd:hover,.forum-page .quick-menu .login input.following[type=submit]:hover,.forum-page .quick-menu .new-profile input.following[type=submit]:hover,.quick-menu .login .forum-page input.following[type=submit]:hover,.quick-menu .new-profile .forum-page input.following[type=submit]:hover{background:#33c775}#registrationForm .forum-page input.following[type=submit]:hover i,.forum-page #registrationForm input.following[type=submit]:hover i,.forum-page .button.following:hover i,.forum-page .following.tagAdd:hover i,.forum-page .quick-menu .login input.following[type=submit]:hover i,.forum-page .quick-menu .new-profile input.following[type=submit]:hover i,.quick-menu .login .forum-page input.following[type=submit]:hover i,.quick-menu .new-profile .forum-page input.following[type=submit]:hover i{opacity:.5}#registrationForm .forum-page input.create-new-thread[type=submit],#registrationForm .forum-page input.login[type=submit],.forum-page #registrationForm input.create-new-thread[type=submit],.forum-page #registrationForm input.login[type=submit],.forum-page .button.create-new-thread,.forum-page .button.login,.forum-page .create-new-thread.tagAdd,.forum-page .login.tagAdd,.forum-page .quick-menu .login input.create-new-thread[type=submit],.forum-page .quick-menu .login input.login[type=submit],.forum-page .quick-menu .new-profile input.create-new-thread[type=submit],.forum-page .quick-menu .new-profile input.login[type=submit],.quick-menu .login .forum-page input.create-new-thread[type=submit],.quick-menu .login .forum-page input.login[type=submit],.quick-menu .new-profile .forum-page input.create-new-thread[type=submit],.quick-menu .new-profile .forum-page input.login[type=submit]{padding:9px 18px 10px 14px;opacity:1;border-color:transparent;font-size:1rem;font-weight:700;color:#fff}#registrationForm .forum-page input.create-new-thread[type=submit] i,#registrationForm .forum-page input.login[type=submit] i,.forum-page #registrationForm input.create-new-thread[type=submit] i,.forum-page #registrationForm input.login[type=submit] i,.forum-page .button.create-new-thread i,.forum-page .button.login i,.forum-page .create-new-thread.tagAdd i,.forum-page .login.tagAdd i,.forum-page .quick-menu .login input.create-new-thread[type=submit] i,.forum-page .quick-menu .login input.login[type=submit] i,.forum-page .quick-menu .new-profile input.create-new-thread[type=submit] i,.forum-page .quick-menu .new-profile input.login[type=submit] i,.quick-menu .login .forum-page input.create-new-thread[type=submit] i,.quick-menu .login .forum-page input.login[type=submit] i,.quick-menu .new-profile .forum-page input.create-new-thread[type=submit] i,.quick-menu .new-profile .forum-page input.login[type=submit] i{color:#fff;-webkit-transform:translate(0,3px);-ms-transform:translate(0,3px);transform:translate(0,3px)}#registrationForm .forum-page input.create-new-thread[type=submit]:hover,#registrationForm .forum-page input.login[type=submit]:hover,.forum-page #registrationForm input.create-new-thread[type=submit]:hover,.forum-page #registrationForm input.login[type=submit]:hover,.forum-page .button.create-new-thread:hover,.forum-page .button.login:hover,.forum-page .create-new-thread.tagAdd:hover,.forum-page .login.tagAdd:hover,.forum-page .quick-menu .login input.create-new-thread[type=submit]:hover,.forum-page .quick-menu .login input.login[type=submit]:hover,.forum-page .quick-menu .new-profile input.create-new-thread[type=submit]:hover,.forum-page .quick-menu .new-profile input.login[type=submit]:hover,.quick-menu .login .forum-page input.create-new-thread[type=submit]:hover,.quick-menu .login .forum-page input.login[type=submit]:hover,.quick-menu .new-profile .forum-page input.create-new-thread[type=submit]:hover,.quick-menu .new-profile .forum-page input.login[type=submit]:hover{background:#45cf82}#registrationForm .forum-page input.create-new-thread.disabled[type=submit],#registrationForm .forum-page input.login.disabled[type=submit],.forum-page #registrationForm input.create-new-thread.disabled[type=submit],.forum-page #registrationForm input.login.disabled[type=submit],.forum-page .button.create-new-thread.disabled,.forum-page .button.login.disabled,.forum-page .create-new-thread.disabled.tagAdd,.forum-page .login.disabled.tagAdd,.forum-page .quick-menu .login input.create-new-thread.disabled[type=submit],.forum-page .quick-menu .login input.login.disabled[type=submit],.forum-page .quick-menu .new-profile input.create-new-thread.disabled[type=submit],.forum-page .quick-menu .new-profile input.login.disabled[type=submit],.quick-menu .login .forum-page input.create-new-thread.disabled[type=submit],.quick-menu .login .forum-page input.login.disabled[type=submit],.quick-menu .new-profile .forum-page input.create-new-thread.disabled[type=submit],.quick-menu .new-profile .forum-page input.login.disabled[type=submit]{background:0 0;border:1px solid #7f7f7f;color:#7f7f7f}#registrationForm .forum-page input.create-new-thread.disabled[type=submit] i,#registrationForm .forum-page input.login.disabled[type=submit] i,.forum-page #registrationForm input.create-new-thread.disabled[type=submit] i,.forum-page #registrationForm input.login.disabled[type=submit] i,.forum-page .button.create-new-thread.disabled i,.forum-page .button.login.disabled i,.forum-page .create-new-thread.disabled.tagAdd i,.forum-page .login.disabled.tagAdd i,.forum-page .quick-menu .login input.create-new-thread.disabled[type=submit] i,.forum-page .quick-menu .login input.login.disabled[type=submit] i,.forum-page .quick-menu .new-profile input.create-new-thread.disabled[type=submit] i,.forum-page .quick-menu .new-profile input.login.disabled[type=submit] i,.quick-menu .login .forum-page input.create-new-thread.disabled[type=submit] i,.quick-menu .login .forum-page input.login.disabled[type=submit] i,.quick-menu .new-profile .forum-page input.create-new-thread.disabled[type=submit] i,.quick-menu .new-profile .forum-page input.login.disabled[type=submit] i{color:#7f7f7f}#registrationForm .forum-page input.create-new-thread.disabled[type=submit]:hover,#registrationForm .forum-page input.login.disabled[type=submit]:hover,.forum-page #registrationForm input.create-new-thread.disabled[type=submit]:hover,.forum-page #registrationForm input.login.disabled[type=submit]:hover,.forum-page .button.create-new-thread.disabled:hover,.forum-page .button.login.disabled:hover,.forum-page .create-new-thread.disabled.tagAdd:hover,.forum-page .login.disabled.tagAdd:hover,.forum-page .quick-menu .login input.create-new-thread.disabled[type=submit]:hover,.forum-page .quick-menu .login input.login.disabled[type=submit]:hover,.forum-page .quick-menu .new-profile input.create-new-thread.disabled[type=submit]:hover,.forum-page .quick-menu .new-profile input.login.disabled[type=submit]:hover,.quick-menu .login .forum-page input.create-new-thread.disabled[type=submit]:hover,.quick-menu .login .forum-page input.login.disabled[type=submit]:hover,.quick-menu .new-profile .forum-page input.create-new-thread.disabled[type=submit]:hover,.quick-menu .new-profile .forum-page input.login.disabled[type=submit]:hover{color:#000;border-color:#000}#registrationForm .forum-page input.create-new-thread.disabled[type=submit]:hover i,#registrationForm .forum-page input.login.disabled[type=submit]:hover i,.forum-page #registrationForm input.create-new-thread.disabled[type=submit]:hover i,.forum-page #registrationForm input.login.disabled[type=submit]:hover i,.forum-page .button.create-new-thread.disabled:hover i,.forum-page .button.login.disabled:hover i,.forum-page .create-new-thread.disabled.tagAdd:hover i,.forum-page .login.disabled.tagAdd:hover i,.forum-page .quick-menu .login input.create-new-thread.disabled[type=submit]:hover i,.forum-page .quick-menu .login input.login.disabled[type=submit]:hover i,.forum-page .quick-menu .new-profile input.create-new-thread.disabled[type=submit]:hover i,.forum-page .quick-menu .new-profile input.login.disabled[type=submit]:hover i,.quick-menu .login .forum-page input.create-new-thread.disabled[type=submit]:hover i,.quick-menu .login .forum-page input.login.disabled[type=submit]:hover i,.quick-menu .new-profile .forum-page input.create-new-thread.disabled[type=submit]:hover i,.quick-menu .new-profile .forum-page input.login.disabled[type=submit]:hover i{color:#000;opacity:1}.forum-overview{background:#fff;max-width:1160px;padding:20px 0 0;margin:0 auto}.forum-overview .scrolly-loading{margin:2rem auto;text-align:center;display:block;position:relative;left:50%}.forum-overview .scrolly-loading .span{background-color:rgba(80,77,62,.5);-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)}.forum-overview #breadcrumb{display:inline-block;padding:0;margin-bottom:15px}.forum-overview #breadcrumb li{display:none}.forum-overview #breadcrumb li:last-child{display:block;opacity:.5;font-style:italic}.forum-overview #breadcrumb li a{font-size:.9rem}.forum-overview .sorting{width:100%;text-align:center}.forum-overview .sorting select{font-family:Asap,sans-serif;position:relative;overflow:hidden;-webkit-appearance:none;-moz-appearance:none;background:url(/assets/images/selectdown_unfocus.svg) 95% center no-repeat #fff;background-size:11px 13px;color:#4d4d4d;width:100%;-webkit-transition:border .3s;transition:border .3s}.forum-overview .sorting select:focus,.forum-overview .sorting select:hover{border-color:#a3db78;outline:0;cursor:pointer;background:url(/assets/images/selectdown_our.svg) 95% center no-repeat #fff;background-size:11px 13px}.forum-overview .sorting select option{margin:0;display:block}.forum-archive-header{color:#898989;font-size:.9rem;margin:0 0 20px;padding:0 10px;text-align:center}.forum-archive-header .container,.forum-archive-header .page,.forum-archive-header .subpage{padding:0}.forum-archive-header .container .row,.forum-archive-header .page .row,.forum-archive-header .subpage .row{margin:0}.forum-archive-header #breadcrumb span:last-child{color:#383838}.forum-archive-header #breadcrumb span:last-child:after{display:none}.forum-archive-header #breadcrumb span:after{content:"";display:inline-block;margin:0 5px;background:url(/assets/images/breadcrumb.png) bottom center no-repeat;background-size:100%;height:16px;width:16px;-webkit-transform:translateY(3px);-ms-transform:translateY(3px);transform:translateY(3px)}.projectGroups{margin-top:50px}.projectGroups .projectGroup{min-height:150px}.projectGroups .projectGroup h3{color:rgba(0,0,0,.8);font-size:1.3rem}.projectGroups .projectGroup p{color:#000;line-height:1.5;font-size:.97rem}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media (min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}table.visible-xs.visible-sm{display:table}tr.visible-xs.visible-sm{display:table-row!important}td.visible-xs.visible-sm,th.visible-xs.visible-sm{display:table-cell!important}.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-md.visible-sm{display:block!important}table.visible-md.visible-sm{display:table}tr.visible-md.visible-sm{display:table-row!important}td.visible-md.visible-sm,th.visible-md.visible-sm{display:table-cell!important}.visible-lg.visible-sm{display:block!important}table.visible-lg.visible-sm{display:table}tr.visible-lg.visible-sm{display:table-row!important}td.visible-lg.visible-sm,th.visible-lg.visible-sm{display:table-cell!important}.hidden-lg.hidden-sm,.hidden-md.hidden-sm,.hidden-sm,.hidden-xs.hidden-sm,td.hidden-lg.hidden-sm,td.hidden-md.hidden-sm,td.hidden-sm,td.hidden-xs.hidden-sm,th.hidden-lg.hidden-sm,th.hidden-md.hidden-sm,th.hidden-sm,th.hidden-xs.hidden-sm,tr.hidden-lg.hidden-sm,tr.hidden-md.hidden-sm,tr.hidden-sm,tr.hidden-xs.hidden-sm{display:none!important}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,header .search input[type=submit]{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}section{padding:80px 0}#registrationForm p{margin-left:.5rem}body{padding-top:120px}header{top:-120px}header .navigation{padding:30px 0;position:fixed}header .logo{background-size:40px auto;text-indent:46px}header .logo:hover{color:rgba(255,255,255,.66);background-size:36px auto;background-position:4px center}header nav{visibility:visible;display:block}header .search{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}header .search input[type=search]{float:left;width:100%}header .search .search-text p{display:block;font-size:1rem;text-align:center;max-width:80%;margin:1rem auto 0}header.sticky .logo{background-size:30px auto;text-indent:40px}.notificationCount{right:-4px;top:3px}#breadcrumb{display:inline-block;width:auto}.quick-menu{width:450px;min-height:100%;-webkit-transform:translateX(450px);-ms-transform:translateX(450px);transform:translateX(450px)}.quick-menu .close,.quick-menu .settings{top:3px}body.quickmenu .navigation,body.quickmenu .wrapper{margin-left:-100px;margin-right:100px;overflow:hidden;max-height:100vh}body.quickmenu .navigation:after,body.quickmenu .wrapper:after{visibility:visible;opacity:1}.search-all-form{margin-top:100px}.search-all-results .type-icon{width:5%;font-size:2rem;color:#000}.search-all-results .type-context{width:95%}.plain .search-all{padding:0 15px}.wrapper{margin-bottom:0}.wrapper:before,footer{height:142px}.has-sidebar .sidebar-area .sidebar-content,.projects-page .sidebar-area .sidebar-content{float:right}.has-sidebar .main-area .main-content,.projects-page .main-area .main-content{padding-left:40px;padding-right:40px}#registrationForm .profile .profile-settings input[type=submit],.profile .profile-settings #registrationForm input[type=submit],.profile .profile-settings .button,.profile .profile-settings .quick-menu .login input[type=submit],.profile .profile-settings .quick-menu .new-profile input[type=submit],.profile .profile-settings .tagAdd,.quick-menu .login .profile .profile-settings input[type=submit],.quick-menu .new-profile .profile .profile-settings input[type=submit]{padding:12px 20px}.profile .profile-settings-forms div.profile-input input,.profile .profile-settings-forms div.profile-input textarea{width:300px}.profile .profile-settings-forms div.profile-input textarea{width:298px}.box .row [class*=col-]{float:none;display:table-cell;vertical-align:top}.box .row{margin:0;display:table}.box .stats{text-align:right;right:0;bottom:0}.box .other .edit{top:0;right:0}.box .other{margin-top:0!important}.profile-settings-following li{margin-bottom:1rem;padding-bottom:0;font-size:.9rem;border-bottom:none}.profile-settings-following li a{font-size:1rem;margin-bottom:0}.profile-settings-following li span{display:inline-block!important}#registrationForm .profile-settings-following li input.unfollow[type=submit],.profile-settings-following li #registrationForm input.unfollow[type=submit],.profile-settings-following li .quick-menu .login input.unfollow[type=submit],.profile-settings-following li .quick-menu .new-profile input.unfollow[type=submit],.profile-settings-following li .unfollow.button,.profile-settings-following li .unfollow.tagAdd,.quick-menu .login .profile-settings-following li input.unfollow[type=submit],.quick-menu .new-profile .profile-settings-following li input.unfollow[type=submit]{display:inline-block;font-size:.75rem;padding:0}.profile-settings #contris #forums a.remove-forum,.profile-settings #contris ul a.remove-contri{max-width:14px;overflow:hidden}.markdown-syntax pre{margin:20px -30px}.markdown-editor .show .wmd-button{top:10px;opacity:.9}.markdown-editor .markdown-close{top:1.5rem}.category a,.category span.cat,.version a,.version span.cat{padding:4px 6px;font-size:.85rem}.roles span:first-child{margin-left:.3rem}.comments{padding:0 20px 0 30px;margin:0 0 0 30px}.comments .comment .comment-inner{padding:20px 30px 30px}.comments .comment .highfive,.comments .comment .photo span{font-size:.7rem;background:#fff;padding:3px;text-align:center;color:#8e8e8e;display:block}.comments .comment .photo span{text-decoration:none;position:absolute;left:50%;-webkit-transform:translate(-50%,4px);-ms-transform:translate(-50%,4px);transform:translate(-50%,4px)}.comments .comment .photo{left:-52px}.comments .comment .photo img{max-width:44px}.comments .comment .highfive{right:auto;top:auto;-webkit-transform:translate(-52px,6px);-ms-transform:translate(-52px,6px);transform:translate(-52px,6px);border:none;max-width:44px;min-width:44px;line-height:1.3}.comments .comment .highfive a,.comments .comment .highfive img{margin:0}.comments .comment .highfive .highfive-count{display:inline-block;font-size:.85rem;font-weight:700;padding-top:3px}.comments .comment .highfive .highfive-count+a{margin-top:10px}.comments .comment .highfive img{display:block;margin:0 auto .2rem}.comments .comment .meta .hide-xs,.comments .comment .meta .profile a,.comments .comment:hover .actions a span,.forum-overview #breadcrumb li{display:inline-block}.comments .comment .meta .gotosolution{float:none}.comments .comment.question .topic{font-size:1.5rem}.comments .comment .body-meta .category a,.comments .comment .body-meta .version a{font-size:.9rem}.comments .comment .body-meta .topic{margin-bottom:0;width:74%}.comments .comment .body-meta .categories{width:25%;text-align:right;float:right}.comments .comment .actions a{overflow:hidden;margin-right:.5rem}.comments .comment .actions a i{font-size:1.1rem;margin-right:.5rem}.comments .comment .actions{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;padding:10px 0}.comments .level-2{margin-left:30px}#registrationForm .replybutton input.reply[type=submit],.quick-menu .login .replybutton input.reply[type=submit],.quick-menu .new-profile .replybutton input.reply[type=submit],.replybutton #registrationForm input.reply[type=submit],.replybutton .button.reply,.replybutton .quick-menu .login input.reply[type=submit],.replybutton .quick-menu .new-profile input.reply[type=submit],.replybutton .reply.tagAdd{font-size:1.2rem}.replybutton.notloggedin{padding:30px 0;margin:60px auto 30px;width:100%}.pagination{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.pagination a{padding:6px 12px}.packages-content .box .package-badge{position:absolute;right:0;bottom:25px}.package-create .stepNavigation li{font-size:.9rem;margin-right:1rem}.package-create label{width:15rem}.tagAdd{position:absolute;float:none}.package-detail-sidebar{margin-top:0}.public-member .forum-thread-text h3{font-size:1.1rem}.notification,.notification__blue,.notification__green,.notification__red,.notification__yellow{padding:20px;width:100%;top:100px;bottom:auto}.notification p,.notification__blue p,.notification__green p,.notification__red p,.notification__yellow p{font-size:.95rem}.notification .message,.notification__blue .message,.notification__green .message,.notification__red .message,.notification__yellow .message{-webkit-box-flex:1;-webkit-flex:1 0 89%;-ms-flex:1 0 89%;flex:1 0 89%;margin-right:1%;margin-bottom:0}.notification .close-notification,.notification__blue .close-notification,.notification__green .close-notification,.notification__red .close-notification,.notification__yellow .close-notification{-webkit-box-flex:0;-webkit-flex:0 0 10%;-ms-flex:0 0 10%;flex:0 0 10%}.docs .advanced,.docs .beginners{padding:80px 60px}.docs .col-md-6:last-child{border-left:1px solid rgba(127,148,153,.11)}#registrationForm .docs input[type=submit],.docs #registrationForm input[type=submit],.docs .button,.docs .quick-menu .login input[type=submit],.docs .quick-menu .new-profile input[type=submit],.docs .tagAdd,.quick-menu .login .docs input[type=submit],.quick-menu .new-profile .docs input[type=submit]{font-size:1.2rem}section.forum h1{font-size:2.4rem}section.forum h1+p{padding:0;font-size:1.2rem}section.forum .forum-thread{-webkit-box-flex:0;-webkit-flex:0 0 49%;-ms-flex:0 0 49%;flex:0 0 49%}section.forum .forum-thread .avatar{-webkit-box-flex:0;-webkit-flex:0 0 15%;-ms-flex:0 0 15%;flex:0 0 15%}section.forum .forum-thread .meta{-webkit-box-flex:1;-webkit-flex:1 0 83%;-ms-flex:1 0 83%;flex:1 0 83%}#registrationForm section.forum input[type=submit],.quick-menu .login section.forum input[type=submit],.quick-menu .new-profile section.forum input[type=submit],section.forum #registrationForm input[type=submit],section.forum .button,section.forum .quick-menu .login input[type=submit],section.forum .quick-menu .new-profile input[type=submit],section.forum .tagAdd{font-size:1.2rem}.forum-thread img,.person-activity img{width:58px}.forum-thread h3,.person-activity h3{font-size:1.1rem}.forum-thread .col-xs-2,.person-activity .col-xs-2{padding:0 .3rem}.leaderboard h1,.people h1{font-size:2.4rem}#registrationForm .leaderboard input[type=submit],#registrationForm .people input[type=submit],.leaderboard #registrationForm input[type=submit],.leaderboard .button,.leaderboard .meta .name,.leaderboard .quick-menu .login input[type=submit],.leaderboard .quick-menu .new-profile input[type=submit],.leaderboard .tagAdd,.map .people-activity strong,.people #registrationForm input[type=submit],.people .button,.people .quick-menu .login input[type=submit],.people .quick-menu .new-profile input[type=submit],.people .tagAdd,.quick-menu .login .leaderboard input[type=submit],.quick-menu .login .people input[type=submit],.quick-menu .new-profile .leaderboard input[type=submit],.quick-menu .new-profile .people input[type=submit]{font-size:1.2rem}.leaderboard p,.people p{padding:0;font-size:1.2rem}.leaderboard div[data-attr=weeks],.leaderboard div[data-attr=alltime]{margin:2rem 0}.leaderboard div[data-attr=alltime]{margin-bottom:0;text-align:right}.leaderboard div[data-attr=alltime] .profile,.leaderboard div[data-attr=alltime] strong{padding-left:0;padding-right:.5rem}.leaderboard div[data-attr=alltime] .profile{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.leaderboard div[data-attr=alltime] .profile .meta{margin-left:0;margin-right:4%}.leaderboard .avatar{-webkit-box-flex:0;-webkit-flex:0 0 10%;-ms-flex:0 0 10%;flex:0 0 10%}.leaderboard .meta{-webkit-box-flex:0;-webkit-flex:0 0 86%;-ms-flex:0 0 86%;flex:0 0 86%}.events .event-info{position:absolute;right:0;top:50%;height:100%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:400px;padding:30px}.events #map,.map #map{height:500px}.events .event-info img{margin:10px auto 40px}.map .event-map{min-height:500px}.map .col-md-4{margin-bottom:0}#markdown-docs pre,.wikipage-page .markdown-syntax pre{margin:20px 0}.download-umbraco{height:calc(100vh - 262px);background:0 0}.download-umbraco:after{content:"";position:absolute;top:0;left:0;height:100%;width:100%;background:#a3db78;z-index:100}.download-umbraco .container,.download-umbraco .page,.download-umbraco .subpage{-webkit-transform:translate(-50%,-65%);-ms-transform:translate(-50%,-65%);transform:translate(-50%,-65%);position:absolute;top:50%;left:50%;padding:20px 0 0}.download-umbraco{padding:0 0 100px}.download-umbraco h1{font-size:3rem}.download-umbraco p{font-size:1.3rem}.steps{min-width:960px}.forum-overview .forum{padding:0 15px}.forum-overview .forum-settings .search-big{-webkit-box-flex:0;-webkit-flex:0 0 70%;-ms-flex:0 0 70%;flex:0 0 70%}.forum-overview .forum-settings .sorting{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%}.forum-overview .forum .topic-row .topic{font-size:1.15rem;line-height:1.3}.forum-overview .forum .topic-row .topic span{font-size:.9rem}.forum-overview .forum .topic-row{padding:35px 15px}.forum-overview .forum .topic{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;margin-right:10%}.forum-overview .forum .category{-webkit-box-flex:0;-webkit-flex:0 0 28%;-ms-flex:0 0 28%;flex:0 0 28%;margin-right:2%}#registrationForm .forum-page input.create-new-thread[type=submit],#registrationForm .forum-page input.delete-thread[type=submit],#registrationForm .forum-page input.follow[type=submit],#registrationForm .forum-page input.go-to-solution[type=submit],#registrationForm .forum-page input.login[type=submit],.forum-page #registrationForm input.create-new-thread[type=submit],.forum-page #registrationForm input.delete-thread[type=submit],.forum-page #registrationForm input.follow[type=submit],.forum-page #registrationForm input.go-to-solution[type=submit],.forum-page #registrationForm input.login[type=submit],.forum-page .button.create-new-thread,.forum-page .button.delete-thread,.forum-page .button.follow,.forum-page .button.go-to-solution,.forum-page .button.login,.forum-page .create-new-thread.tagAdd,.forum-page .delete-thread.tagAdd,.forum-page .follow.tagAdd,.forum-page .go-to-solution.tagAdd,.forum-page .login.tagAdd,.forum-page .quick-menu .login input.create-new-thread[type=submit],.forum-page .quick-menu .login input.delete-thread[type=submit],.forum-page .quick-menu .login input.follow[type=submit],.forum-page .quick-menu .login input.go-to-solution[type=submit],.forum-page .quick-menu .login input.login[type=submit],.forum-page .quick-menu .new-profile input.create-new-thread[type=submit],.forum-page .quick-menu .new-profile input.delete-thread[type=submit],.forum-page .quick-menu .new-profile input.follow[type=submit],.forum-page .quick-menu .new-profile input.go-to-solution[type=submit],.forum-page .quick-menu .new-profile input.login[type=submit],.quick-menu .login .forum-page input.create-new-thread[type=submit],.quick-menu .login .forum-page input.delete-thread[type=submit],.quick-menu .login .forum-page input.follow[type=submit],.quick-menu .login .forum-page input.go-to-solution[type=submit],.quick-menu .login .forum-page input.login[type=submit],.quick-menu .new-profile .forum-page input.create-new-thread[type=submit],.quick-menu .new-profile .forum-page input.delete-thread[type=submit],.quick-menu .new-profile .forum-page input.follow[type=submit],.quick-menu .new-profile .forum-page input.go-to-solution[type=submit],.quick-menu .new-profile .forum-page input.login[type=submit]{float:right}.forum-overview #breadcrumb{height:48px;line-height:48px;margin-bottom:0}.forum-overview #breadcrumb li:last-child{display:inline-block;opacity:1}.forum-archive-header{padding:10px 15px;text-align:left}}@media (min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}table.visible-xs.visible-md{display:table}tr.visible-xs.visible-md{display:table-row!important}td.visible-xs.visible-md,th.visible-xs.visible-md{display:table-cell!important}.visible-sm.visible-md{display:block!important}table.visible-sm.visible-md{display:table}tr.visible-sm.visible-md{display:table-row!important}td.visible-sm.visible-md,th.visible-sm.visible-md{display:table-cell!important}.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-lg.visible-md{display:block!important}table.visible-lg.visible-md{display:table}tr.visible-lg.visible-md{display:table-row!important}td.visible-lg.visible-md,th.visible-lg.visible-md{display:table-cell!important}.hidden-lg.hidden-md,.hidden-md,.hidden-sm.hidden-md,.hidden-xs.hidden-md,td.hidden-lg.hidden-md,td.hidden-md,td.hidden-sm.hidden-md,td.hidden-xs.hidden-md,th.hidden-lg.hidden-md,th.hidden-md,th.hidden-sm.hidden-md,th.hidden-xs.hidden-md,tr.hidden-lg.hidden-md,tr.hidden-md,tr.hidden-sm.hidden-md,tr.hidden-xs.hidden-md{display:none!important}}@media (min-width:993px){.sidebar-content nav{padding-top:50px}.sidebar-content nav.fixed{position:fixed;top:20px}}@media (min-width:1142px){.package-create small{margin:0;max-width:80%;opacity:.6}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}.visible-xs.visible-lg{display:block!important}table.visible-xs.visible-lg{display:table}tr.visible-xs.visible-lg{display:table-row!important}td.visible-xs.visible-lg,th.visible-xs.visible-lg{display:table-cell!important}.visible-sm.visible-lg{display:block!important}table.visible-sm.visible-lg{display:table}tr.visible-sm.visible-lg{display:table-row!important}td.visible-sm.visible-lg,th.visible-sm.visible-lg{display:table-cell!important}.visible-md.visible-lg{display:block!important}table.visible-md.visible-lg{display:table}tr.visible-md.visible-lg{display:table-row!important}td.visible-md.visible-lg,th.visible-md.visible-lg{display:table-cell!important}.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.hidden-lg,.hidden-md.hidden-lg,.hidden-sm.hidden-lg,.hidden-xs.hidden-lg,td.hidden-lg,td.hidden-md.hidden-lg,td.hidden-sm.hidden-lg,td.hidden-xs.hidden-lg,th.hidden-lg,th.hidden-md.hidden-lg,th.hidden-sm.hidden-lg,th.hidden-xs.hidden-lg,tr.hidden-lg,tr.hidden-md.hidden-lg,tr.hidden-sm.hidden-lg,tr.hidden-xs.hidden-lg{display:none!important}}@media (min-width:1600px){.has-sidebar .sidebar-area,.projects-page .sidebar-area{width:35%}.has-sidebar .main-area,.projects-page .main-area{width:65%}}@media (min-width:2100px){.has-sidebar .sidebar-area,.projects-page .sidebar-area{width:40%}.has-sidebar .main-area,.projects-page .main-area{width:60%}}@media (max-width:992px){.has-sidebar .main-area,.has-sidebar .page-content,.has-sidebar .sidebar-area,.projects-page .main-area,.projects-page .page-content,.projects-page .sidebar-area{width:100%;display:block}.has-sidebar .main-area .main-content,.has-sidebar .sidebar-area .sidebar-content,.projects-page .main-area .main-content,.projects-page .sidebar-area .sidebar-content{max-width:none}header{position:fixed;top:0;left:0;width:100%}.search-all .search-all-form,.search-all .search-all-results{-webkit-transition:width .2s cubic-bezier(.7,0,.3,1),max-width .2s cubic-bezier(.7,0,.3,1);transition:width .2s cubic-bezier(.7,0,.3,1),max-width .2s cubic-bezier(.7,0,.3,1)}.search-all.open .search-all-form,.search-all.open .search-all-results{width:100%}.sidebar-content nav ul{padding-left:0;text-align:center;margin-left:0}.sidebar-content nav .level-1{border-left:none;background-color:#bee6a0;padding-top:10px;padding-bottom:10px}.sidebar-content nav .level-2{border-left:none;background-color:#ccebb4}.sidebar-content nav .level-3{border-left:none;background-color:#e8f6dd}#registrationForm .profile .profile-settings-forms input[type=submit],#registrationForm .profile-settings-packages input[type=submit],.profile .profile-settings-forms #registrationForm input[type=submit],.profile .profile-settings-forms .button,.profile .profile-settings-forms .quick-menu .login input[type=submit],.profile .profile-settings-forms .quick-menu .new-profile input[type=submit],.profile .profile-settings-forms .tagAdd,.profile-settings-packages #registrationForm input[type=submit],.profile-settings-packages .button,.profile-settings-packages .quick-menu .login input[type=submit],.profile-settings-packages .quick-menu .new-profile input[type=submit],.profile-settings-packages .tagAdd,.quick-menu .login .profile .profile-settings-forms input[type=submit],.quick-menu .login .profile-settings-packages input[type=submit],.quick-menu .new-profile .profile .profile-settings-forms input[type=submit],.quick-menu .new-profile .profile-settings-packages input[type=submit]{width:100%}.markdown-editor.mobile-preview #input-container{display:none}.markdown-editor.mobile-preview #preview-container{display:block}.markdown-editor #preview-container,.markdown-editor .wmd-spacer{display:none}.markdown-editor.mobile-preview #wmd-preview{margin-bottom:4px}.roles{display:block;margin-top:.3rem}.comments .roles{display:inline-block;margin-left:5px}.comments .roles span{text-indent:-9999px;padding:0;margin:0;border-radius:50%;height:10px;width:10px}.package-create fieldset input{max-width:360px}.docs .col-md-6,.docs .container,.docs .page,.docs .row,.docs .subpage{padding:0}.docs .col-md-6 p,.docs .container p,.docs .page p,.docs .row p,.docs .subpage p{padding:0 40px}.docs .advanced{padding:40px 0 80px;border-top:1px solid rgba(127,148,153,.11)}.forum-overview .forum-settings .or{display:none}.forum-overview .forum .posts{-webkit-transform:translate(-6px,0);-ms-transform:translate(-6px,0);transform:translate(-6px,0)}}@media screen and (max-width:992px){.sidebar-content nav,.sidebar-content nav.fixed{position:relative}}@media (max-width:991px){header nav li,header nav ul{width:100%;text-align:center}.menu-toggle{display:block;position:absolute;right:20px;top:25px;z-index:999;-webkit-transition:top .3s;transition:top .3s}.toggle,.toggle span{position:relative;z-index:999}.toggle{display:inline-block;width:30px;height:30px}.toggle.cross{-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-delay:.1s;transition-delay:.1s}.toggle.cross span:after,.toggle.cross span:before{-webkit-transition-property:margin,-webkit-transform;transition-property:margin,transform;-webkit-transition-duration:.1s;transition-duration:.1s;-webkit-transition-delay:.1s,0;transition-delay:.1s,0}.toggle.cross.open span{background-color:transparent;-webkit-transition-delay:.1s;transition-delay:.1s}.toggle.cross.open span:before{margin-top:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition-delay:0,.1s;transition-delay:0,.1s;background-color:#fff}.toggle.cross.open span:after{margin-top:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition-delay:0,.1s;transition-delay:0,.1s;background-color:#fff}.toggle span{margin:0 auto;top:12px;width:25px;height:2px;background-color:#fff;display:block}.toggle span:after,.toggle span:before{position:absolute;content:'';width:25px;height:2px;background-color:#fff;display:block}header nav,header nav ul{background:rgba(163,219,120,.98);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.toggle span:before{margin-top:-7px}.toggle span:after{margin-top:7px}header .navigation .container,header .navigation .page,header .navigation .subpage{padding:0}header nav{position:fixed!important;top:0;left:0;width:100%;height:100%;-webkit-transform:translate(0,-100%);-ms-transform:translate(0,-100%);transform:translate(0,-100%);-webkit-transition:-webkit-transform .3s;transition:transform .3s;visibility:hidden;opacity:0;line-height:1;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}header nav.open,header nav.open .user,header nav.open li,header nav.open ul{visibility:visible}header nav.open{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);opacity:1}header nav .user,header nav ul{visibility:hidden}header nav ul{height:75%;padding-top:40px;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}header nav li{float:none;font-size:1.3rem;padding:.2rem 0;margin:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}header nav li:first-child{padding-top:0}header nav li:last-child{padding-bottom:0}header nav a,header nav a:active,header nav a:visited{text-decoration:none;color:#fff;-webkit-transition:color .2s;transition:color .2s}header nav a:active:hover,header nav a:hover,header nav a:visited:hover{color:#fff}header nav .user img{height:75px;width:75px}header nav .notificationCount{-webkit-transform:translate(-14px,6px);-ms-transform:translate(-14px,6px);transform:translate(-14px,6px)}}@media (max-width:768px){.dot .line.h-line,.markdown-editor #wmd-button-bar{display:none}.markdown-editor{top:100%;padding:20px 0 0}.markdown-editor.write{top:0}.markdown-editor #wmd-input{height:152px}.markdown-editor #wmd-preview{max-height:150px;min-height:150px;margin-bottom:0}.markdown-editor .markdown-control{padding:5px!important}.markdown-editor select{margin-top:20px}.markdown-editor #mobile-preview{margin-bottom:10px}}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-sm.visible-xs{display:block!important}table.visible-sm.visible-xs{display:table}tr.visible-sm.visible-xs{display:table-row!important}td.visible-sm.visible-xs,th.visible-sm.visible-xs{display:table-cell!important}.visible-md.visible-xs{display:block!important}table.visible-md.visible-xs{display:table}tr.visible-md.visible-xs{display:table-row!important}td.visible-md.visible-xs,th.visible-md.visible-xs{display:table-cell!important}.visible-lg.visible-xs{display:block!important}table.visible-lg.visible-xs{display:table}tr.visible-lg.visible-xs{display:table-row!important}td.visible-lg.visible-xs,th.visible-lg.visible-xs{display:table-cell!important}.hidden-lg.hidden-xs,.hidden-md.hidden-xs,.hidden-sm.hidden-xs,.hidden-xs,td.hidden-lg.hidden-xs,td.hidden-md.hidden-xs,td.hidden-sm.hidden-xs,td.hidden-xs,th.hidden-lg.hidden-xs,th.hidden-md.hidden-xs,th.hidden-sm.hidden-xs,th.hidden-xs,tr.hidden-lg.hidden-xs,tr.hidden-md.hidden-xs,tr.hidden-sm.hidden-xs,tr.hidden-xs{display:none!important}}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}.hidden-print,td.hidden-print,th.hidden-print,tr.hidden-print{display:none!important}}@-webkit-keyframes animGenie{0%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}25%{opacity:1;-webkit-transform:scale(1.2);transform:scale(1.2)}50%{opacity:1;-webkit-transform:scale(.8);transform:scale(.8)}75%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes animGenie{0%{opacity:1;-webkit-transform:scale(0);transform:scale(0)}25%{opacity:1;-webkit-transform:scale(1.2);transform:scale(1.2)}50%{opacity:1;-webkit-transform:scale(.8);transform:scale(.8)}75%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes fadeOut{0%,100%{opacity:0}50%{opacity:1}}@keyframes fadeOut{0%,100%{opacity:0}50%{opacity:1}}@-webkit-keyframes newIn{0%{background-color:rgba(163,219,120,.1);box-shadow:0 3px 6px rgba(0,0,0,.08),0 3px 6px rgba(0,0,0,.14)}100%{background-color:#fff;box-shadow:none}}@keyframes newIn{0%{background-color:rgba(163,219,120,.1);box-shadow:0 3px 6px rgba(0,0,0,.08),0 3px 6px rgba(0,0,0,.14)}100%{background-color:#fff;box-shadow:none}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes searchLoading{0%,100%{opacity:1}50%{opacity:0}}@keyframes searchLoading{0%,100%{opacity:1}50%{opacity:0}}@-webkit-keyframes typing{0%{background-color:#fff;box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,.4)}25%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,.2),24px 0 0 0 rgba(255,255,255,.4)}75%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 #fff}}@keyframes typing{0%{background-color:#fff;box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 rgba(255,255,255,.4)}25%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,.2),24px 0 0 0 rgba(255,255,255,.4)}75%{background-color:rgba(255,255,255,.4);box-shadow:12px 0 0 0 rgba(255,255,255,.4),24px 0 0 0 #fff}}@-webkit-keyframes ripple{100%{opacity:0;-webkit-transform:scale(2);transform:scale(2)}}@keyframes ripple{100%{opacity:0;-webkit-transform:scale(2);transform:scale(2)}} \ No newline at end of file diff --git a/OurUmbraco.Site/Views/MacroPartials/Forum/LatestActivity.cshtml b/OurUmbraco.Site/Views/MacroPartials/Forum/LatestActivity.cshtml index 858d44ab..085d2922 100644 --- a/OurUmbraco.Site/Views/MacroPartials/Forum/LatestActivity.cshtml +++ b/OurUmbraco.Site/Views/MacroPartials/Forum/LatestActivity.cshtml @@ -6,11 +6,8 @@ var ts = new uForum.Services.TopicService(ApplicationContext.DatabaseContext); } -
- @Column(ts.GetLatestTopics(3, 1)) -
-
- @Column(ts.GetLatestTopics(3, 2)) +
+ @Column(ts.GetLatestTopics(6, 1))
@helper Column(IEnumerable topics) @@ -21,13 +18,17 @@ var mem = Members.GetById(topic.LatestReplyAuthor) ?? Members.GetById(topic.MemberId); -
-
@Html.Raw(our.Utils.GetMemberAvatar(mem, 79))
-
-
-

@topic.Title

-

- @if (topic.Replies != 0 && !string.IsNullOrEmpty(topic.LastReplyAuthorName)) + +

+ @Html.Raw(our.Utils.GetMemberAvatar(mem, 79)) +
+ +
+
+

@topic.Title

+

+ @{ + if (topic.Replies != 0 && !string.IsNullOrEmpty(topic.LastReplyAuthorName)) { last edited by @topic.LastReplyAuthorName } @@ -35,13 +36,13 @@ { created by @topic.AuthorName } - @topic.Updated.ConvertToRelativeTime() -

-
- -
@cat.Name
+ } @topic.Updated.ConvertToRelativeTime() +

+
+ @cat.Name +
} diff --git a/OurUmbraco.Site/usercontrols/Deli/Package/Editor.ascx b/OurUmbraco.Site/usercontrols/Deli/Package/Editor.ascx index 0f669e78..3e4d816c 100644 --- a/OurUmbraco.Site/usercontrols/Deli/Package/Editor.ascx +++ b/OurUmbraco.Site/usercontrols/Deli/Package/Editor.ascx @@ -1,15 +1,15 @@ -<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Editor.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Editor" %> - -
- -
    - -
  • -
    -
-
- - - -
- +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Editor.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Editor" %> + +
+ +
    + +
  • +
    +
+
+ + + +
+ diff --git a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Complete.ascx b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Complete.ascx index 04709747..c8866660 100644 --- a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Complete.ascx +++ b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Complete.ascx @@ -1,20 +1,20 @@ -<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Complete.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Complete" %> - - -
- -
-
- -
- Make "" public -

By checking the following box your project will become public as long as you have met all of the terms & conditions of listing. If there are any problems displayed above please recitify and try again.

-

- -

-
- -
-   - +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Complete.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Complete" %> + + +
+ +
+
+ +
+ Make "" public +

By checking the following box your project will become public as long as you have met all of the terms & conditions of listing. If there are any problems displayed above please recitify and try again.

+

+ +

+
+ +
+   +
\ No newline at end of file diff --git a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Details.ascx b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Details.ascx index fd70137f..6277d07f 100644 --- a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Details.ascx +++ b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Details.ascx @@ -1,175 +1,175 @@ -<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Details.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Details" %> -<%@ Import Namespace="umbraco.cms.businesslogic.member" %> - -<% - Member m = Member.GetCurrentMember(); - var reputation = string.Empty; - if (m.getProperty("reputationTotal") != null && m.getProperty("reputationTotal").Value != null) - reputation = m.getProperty("reputationTotal").Value.ToString(); - - int reputationTotal; - var enoughReputation = int.TryParse(reputation, out reputationTotal) && reputationTotal > 30; - - if (enoughReputation == false) - { - holder.Visible = false; - notallowed.Visible = true; - } -%> - -

Sorry, your account is too new to create projects! If you're human, make sure to get in touch with us to get this restriction lifted.

-
- - -
-
- Project Information -

- Title - -

-

- Development Status - - ex: "Beta", "Experimental" etc -

- -

- Free or Commercial - - - - - Are you intending to sell this or give it away free? -

-
-

- Current Version - -

-

- Project is stable - - Can this safely be installed in a production enviroment?
-

-
-
- Project Category -

- - This will help users find your package -

- -
-
- Project Description -

Be clear and to the point about what your project does. Provide simple examples of how to use your project. DO NOT ask for Karma Votes. If you mention Karma in your description we will instantly mark your project as SPAM.

-

- -

Project Description

- -

-
-
- Project Tags -

- -

-
- -
- License Information -

- License Name - -

-

- License Url - -

-
-
- Resources -

- Project Url - - If you have a project website somewhere else, (like codeplex.com) link to it here. -

-

- Demonstration Url - - url to where a demonstration or demostration video / description can be found -

-

- Source Code Url - - url to where the source code is stored, (ie: codeplex.com, github.com etc) -

-

- Bug tracking Url - - url where users can go to get support and log bugs. (ie: codeplex.com discussion, github.com bug tracking etc) -

-
-
- Analytics and tracking -

To best understand how your Project is performing, we suggest that you sign up to Google Analytics and track your project. All you need to do is enter your tracking code. We will pass you custom tracking events such as views, downloads etc

-

- Google Analytics Code - -

-
-
- Collaboration -

Are you looking for help making this package great? Why not open it up for collaboration?

-

- -

-
- - -
- The legal part -

- - Read the Terms for Commercial projects here -

-
-
- -
- -
-
- - - - +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Details.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Details" %> +<%@ Import Namespace="umbraco.cms.businesslogic.member" %> + +<% + Member m = Member.GetCurrentMember(); + var reputation = string.Empty; + if (m.getProperty("reputationTotal") != null && m.getProperty("reputationTotal").Value != null) + reputation = m.getProperty("reputationTotal").Value.ToString(); + + int reputationTotal; + var enoughReputation = int.TryParse(reputation, out reputationTotal) && reputationTotal > 30; + + if (enoughReputation == false) + { + holder.Visible = false; + notallowed.Visible = true; + } +%> + +

Sorry, your account is too new to create projects! If you're human, make sure to get in touch with us to get this restriction lifted.

+
+ + +
+
+ Project Information +

+ Title + +

+

+ Development Status + + ex: "Beta", "Experimental" etc +

+ +

+ Free or Commercial + + + + + Are you intending to sell this or give it away free? +

+
+

+ Current Version + +

+

+ Project is stable + + Can this safely be installed in a production enviroment?
+

+
+
+ Project Category +

+ + This will help users find your package +

+ +
+
+ Project Description +

Be clear and to the point about what your project does. Provide simple examples of how to use your project. DO NOT ask for Karma Votes. If you mention Karma in your description we will instantly mark your project as SPAM.

+

+ +

Project Description

+ +

+
+
+ Project Tags +

+ +

+
+ +
+ License Information +

+ License Name + +

+

+ License Url + +

+
+
+ Resources +

+ Project Url + + If you have a project website somewhere else, (like codeplex.com) link to it here. +

+

+ Demonstration Url + + url to where a demonstration or demostration video / description can be found +

+

+ Source Code Url + + url to where the source code is stored, (ie: codeplex.com, github.com etc) +

+

+ Bug tracking Url + + url where users can go to get support and log bugs. (ie: codeplex.com discussion, github.com bug tracking etc) +

+
+
+ Analytics and tracking +

To best understand how your Project is performing, we suggest that you sign up to Google Analytics and track your project. All you need to do is enter your tracking code. We will pass you custom tracking events such as views, downloads etc

+

+ Google Analytics Code + +

+
+
+ Collaboration +

Are you looking for help making this package great? Why not open it up for collaboration?

+

+ +

+
+ + +
+ The legal part +

+ + Read the Terms for Commercial projects here +

+
+
+ +
+ +
+
+ + + +
\ No newline at end of file diff --git a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Files.ascx b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Files.ascx index 17ce8cef..c4b20dc8 100644 --- a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Files.ascx +++ b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Files.ascx @@ -1,240 +1,240 @@ -<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Files.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Files" %> -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Current project files -

- - - - - - - - - - - - - - - - - - -
FileTypeCompatible Version.NET VersionTrust LevelUploadedDefault ReleaseArchiveDelete
-

-
- - -
- - -
- Upload file - -
- -
- -

- - -

-
- (10 MB max) -
- -
- -
- - -
-

- - -

- - - -

- -
-

- - - -

-
- -
-
-

- - -
-

- -

- - -
-

- -

- -

- -
-
-  - -
-
-
- - - - -
-
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Files.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Files" %> +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Current project files +

+ + + + + + + + + + + + + + + + + + +
FileTypeCompatible Version.NET VersionTrust LevelUploadedDefault ReleaseArchiveDelete
+

+
+ + +
+ + +
+ Upload file + +
+ +
+ +

+ + +

+
+ (10 MB max) +
+ +
+ +
+ + +
+

+ + +

+ + + +

+ +
+

+ + + +

+
+ +
+
+

+ + +
+

+ +

+ + +
+

+ +

+ +

+ +
+
+  + +
+
+
+ + + + +
+
\ No newline at end of file diff --git a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Licenses.ascx b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Licenses.ascx index e6a31037..8586d4a9 100644 --- a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Licenses.ascx +++ b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Licenses.ascx @@ -1,137 +1,137 @@ -<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Licenses.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Licenses" %> - -
- - -
- Edit License Type -

- - - -

- -

- - -

- -
- -
-
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
License TypePrice 
- - - - -   - - -
- -
- NOTE: Only licenses types that have not been purchased by users can be deleted. If a license has been purchased you may disable it. - -
- Create License Type -

- - - - - - - - -

- -

- - -

- -

- -

- -
-

Your Vendor Key

- - Generate your project key. This will generate a unique key for your project. This step can only be done once so click wisely. - - - Download your Vendor Key for your project. This License Key file is used in your code when you implement Deli Licensing in your project. - -

Your Packages Unique Deli Id

-

-
-
-   - -
-
-
-
- - +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Licenses.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Licenses" %> + +
+ + +
+ Edit License Type +

+ + + +

+ +

+ + +

+ +
+ +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
License TypePrice 
+ + + + +   + + +
+ +
+ NOTE: Only licenses types that have not been purchased by users can be deleted. If a license has been purchased you may disable it. + +
+ Create License Type +

+ + + + + + + + +

+ +

+ + +

+ +

+ +

+ +
+

Your Vendor Key

+ + Generate your project key. This will generate a unique key for your project. This step can only be done once so click wisely. + + + Download your Vendor Key for your project. This License Key file is used in your code when you implement Deli Licensing in your project. + +

Your Packages Unique Deli Id

+

+
+
+   + +
+
+
+
+ +
\ No newline at end of file diff --git a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Screenshots.ascx b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Screenshots.ascx index 0370e3af..79858ea0 100644 --- a/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Screenshots.ascx +++ b/OurUmbraco.Site/usercontrols/Deli/Package/Steps/Screenshots.ascx @@ -1,149 +1,149 @@ -<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Screenshots.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Screenshots" %> - - - - -
- - - - - - - - - - - - - - - - - - - - - - -
-Current Screenshots -

- - - - - - - - - - - - - -
ImageUploadedDefaultDelete
-

-
- - -
- - -
- Upload file - -
- -
- -

- - -

-
- (10 MB max) -
- -
- -
- - -
-

- -

- -

- -
-
-
- - -
-   - -
-
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Screenshots.ascx.cs" Inherits="uProject.usercontrols.Deli.Package.Steps.Screenshots" %> + + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+Current Screenshots +

+ + + + + + + + + + + + + +
ImageUploadedDefaultDelete
+

+
+ + +
+ + +
+ Upload file + +
+ +
+ +

+ + +

+
+ (10 MB max) +
+ +
+ +
+ + +
+

+ +

+ +

+ +
+
+
+ + +
+   + +
+
\ No newline at end of file diff --git a/OurUmbraco.Site/usercontrols/Deli/Profile/MyProjects.ascx b/OurUmbraco.Site/usercontrols/Deli/Profile/MyProjects.ascx index f51879af..20040238 100644 --- a/OurUmbraco.Site/usercontrols/Deli/Profile/MyProjects.ascx +++ b/OurUmbraco.Site/usercontrols/Deli/Profile/MyProjects.ascx @@ -1,142 +1,142 @@ -<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MyProjects.ascx.cs" Inherits="uProject.usercontrols.Deli.Profile.MyProjects" %> -<%@ Import Namespace="Marketplace.Interfaces" %> -<%@ Import Namespace="umbraco.cms.businesslogic.member" %> -<% - Member m = Member.GetCurrentMember(); - var reputation = string.Empty; - if (m.getProperty("reputationTotal") != null && m.getProperty("reputationTotal").Value != null) - reputation = m.getProperty("reputationTotal").Value.ToString(); - - int reputationTotal; - var enoughReputation = int.TryParse(reputation, out reputationTotal) && reputationTotal > 30; - - if (enoughReputation == false) - { - holder.Visible = false; - notallowed.Visible = true; - } -%> - -

Sorry, your account is too new to create projects! If you're human, make sure to get in touch with us to get this restriction lifted.

-
- -<%@ Import Namespace="uProject" %> -
- My Packages -
- Add package - - - -
- -
- -
- &pad=true&width=65&height=65 " alt=""> -
- -
-
-

"><%# Eval("Name") %>

-

- <%# Eval("Description").ToString().StripHtmlAndLimit(45) %> ... -
- ">Edit - ">Forums - ">Team -

-
-
- -
-
- -
- version - <%# Eval("CurrentVersion") %> -
- - - - <%# Eval("Downloads") %> - - - - <%# Eval("Karma") %> - - -
-
- -
- -
- - - - - - - -
-
- - - Package Contributions - - - - -
- -
- -
- &pad=true&width=65&height=65 " alt=""> -
- -
-
-

"><%# Eval("Name") %>

-

- <%# Eval("Description").ToString().StripHtmlAndLimit(45) %> - -
- ">Edit - ">Forums -

-
-
- -
-
- -
- version - <%# Eval("CurrentVersion") %> -
- - - - <%# Eval("Downloads") %> - - - - <%# Eval("Karma") %> - - -
-
- -
- -
- -
- -
-
-
- +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MyProjects.ascx.cs" Inherits="uProject.usercontrols.Deli.Profile.MyProjects" %> +<%@ Import Namespace="Marketplace.Interfaces" %> +<%@ Import Namespace="umbraco.cms.businesslogic.member" %> +<% + Member m = Member.GetCurrentMember(); + var reputation = string.Empty; + if (m.getProperty("reputationTotal") != null && m.getProperty("reputationTotal").Value != null) + reputation = m.getProperty("reputationTotal").Value.ToString(); + + int reputationTotal; + var enoughReputation = int.TryParse(reputation, out reputationTotal) && reputationTotal > 30; + + if (enoughReputation == false) + { + holder.Visible = false; + notallowed.Visible = true; + } +%> + +

Sorry, your account is too new to create projects! If you're human, make sure to get in touch with us to get this restriction lifted.

+
+ +<%@ Import Namespace="uProject" %> +
+ My Packages +
+ Add package + + + +
+ +
+ +
+ &pad=true&width=65&height=65 " alt=""> +
+ +
+
+

"><%# Eval("Name") %>

+

+ <%# Eval("Description").ToString().StripHtmlAndLimit(45) %> ... +
+ ">Edit + ">Forums + ">Team +

+
+
+ +
+
+ +
+ version + <%# Eval("CurrentVersion") %> +
+ + + + <%# Eval("Downloads") %> + + + + <%# Eval("Karma") %> + + +
+
+ +
+ +
+ + + + + + + +
+
+ + + Package Contributions + + + + +
+ +
+ +
+ &pad=true&width=65&height=65 " alt=""> +
+ +
+
+

"><%# Eval("Name") %>

+

+ <%# Eval("Description").ToString().StripHtmlAndLimit(45) %> + +
+ ">Edit + ">Forums +

+
+
+ +
+
+ +
+ version + <%# Eval("CurrentVersion") %> +
+ + + + <%# Eval("Downloads") %> + + + + <%# Eval("Karma") %> + + +
+
+ +
+ +
+ +
+ +
+
+
+
\ No newline at end of file diff --git a/OurUmbraco.Site/usercontrols/Deli/ProjectView.ascx b/OurUmbraco.Site/usercontrols/Deli/ProjectView.ascx index e03d0038..e0ef621c 100644 --- a/OurUmbraco.Site/usercontrols/Deli/ProjectView.ascx +++ b/OurUmbraco.Site/usercontrols/Deli/ProjectView.ascx @@ -1,429 +1,429 @@ -<%@ Control Language="C#" AutoEventWireup="True" CodeBehind="ProjectView.ascx.cs" - Inherits="Marketplace.usercontrols.Deli.ProjectView" %> -<%@ Import Namespace="Marketplace.Interfaces" %> -
- -
-
- Edit - - started this project on - - it's current version is - - . -
-
- -
- <% if (!String.IsNullOrEmpty(Project.GACode)) - { - %> - ', 'Download Button', '<%= Project.Name %>');"> - Download - <% - } - else - { - %> - - - - <% - } - %> -
-
-

- Package Info

-

- Project Owner/Creator

- -
- - Avatar - -

<%= Project.Vendor.Member.Name %>

- - posts - - - karma - -
- -
-

- Purchase a License

-
    - - -
  • - - - -
  • -
    -
    -
-
-
-
-

- Project Compatibility

-

- - -
-
-
- - - View Details -
- - Report Compatibility - -

-
-
-

- Project Information

-
-
Project owner:
-
- - <%= Project.Vendor.Member.Name %> - -
- - -
Contributors:
-
- - - "> - <%# Eval("Text") %>  - - -
- -
-
Created:
-
- <%= Project.CreateDate.ToString("D") %> -
- <% if (Project.Stable) - { %> -
Is Stable:
-
- Project is stable -
- <%} %> -
Current version
-
- <%= Project.CurrentVersion %> -
- <% if (!string.IsNullOrEmpty(Project.LicenseName)) - { %> -
License
-
- - <%= Project.LicenseName %> -
- <% } %> - - -
Tags
-
- - - "> - <%# Eval("Text") %>  - - -
-
-
Downloads:
-
- -
-
-
- -
-

- Edit Project Tags

-

- -

-
-
-
- -
- -
-

- Contribute

- Group

- This package is open for collaboration. -
- Contact the owner

-
-
-
-
-

-

-
- -
- - - - - -
-
-
    -
-
- - -
-

- Package Files

-
- -
- - -
-

- Hot fix / Upgrade Files

-
- -
- - -
-

- Source Code

-
- -
- - -
-

- Documentation

-
- -
-
-

- Resources

-
    - -
-
- - -
-

- Archived Files

-
- -
-
- -
-
-
+<%@ Control Language="C#" AutoEventWireup="True" CodeBehind="ProjectView.ascx.cs" + Inherits="Marketplace.usercontrols.Deli.ProjectView" %> +<%@ Import Namespace="Marketplace.Interfaces" %> +
+ +
+
+ Edit + + started this project on + + it's current version is + + . +
+
+ +
+ <% if (!String.IsNullOrEmpty(Project.GACode)) + { + %> + ', 'Download Button', '<%= Project.Name %>');"> + Download + <% + } + else + { + %> + + + + <% + } + %> +
+
+

+ Package Info

+

+ Project Owner/Creator

+ +
+ + Avatar + +

<%= Project.Vendor.Member.Name %>

+ + posts + + + karma + +
+ +
+

+ Purchase a License

+
    + + +
  • + + + +
  • +
    +
    +
+
+
+
+

+ Project Compatibility

+

+ + +
+
+
+ + + View Details +
+ + Report Compatibility + +

+
+
+

+ Project Information

+
+
Project owner:
+
+ + <%= Project.Vendor.Member.Name %> + +
+ + +
Contributors:
+
+ + + "> + <%# Eval("Text") %>  + + +
+ +
+
Created:
+
+ <%= Project.CreateDate.ToString("D") %> +
+ <% if (Project.Stable) + { %> +
Is Stable:
+
+ Project is stable +
+ <%} %> +
Current version
+
+ <%= Project.CurrentVersion %> +
+ <% if (!string.IsNullOrEmpty(Project.LicenseName)) + { %> +
License
+
+ + <%= Project.LicenseName %> +
+ <% } %> + + +
Tags
+
+ + + "> + <%# Eval("Text") %>  + + +
+
+
Downloads:
+
+ +
+
+
+ +
+

+ Edit Project Tags

+

+ +

+
+
+
+ +
+ +
+

+ Contribute

+ Group

+ This package is open for collaboration. +
+ Contact the owner

+
+
+
+
+

+

+
+ +
+ + + + + +
+
+
    +
+
+ + +
+

+ Package Files

+
+ +
+ + +
+

+ Hot fix / Upgrade Files

+
+ +
+ + +
+

+ Source Code

+
+ +
+ + +
+

+ Documentation

+
+ +
+
+

+ Resources

+
    + +
+
+ + +
+

+ Archived Files

+
+ +
+
+ +
+
+