Making WordPress.org

Changeset 11756


Ignore:
Timestamp:
04/05/2022 10:54:43 PM (2 years ago)
Author:
coffee2code
Message:

Photo Directory: Hide .entry-footer for pages when user is not logged in since it'll always be empty and adds excessive padding.

CSS's :empty() would have been more concise, more accurately reflective of intent, and would accommodate future inclusion of content, but it isn't supported by anything at the moment (at least when tag contains any and only whitespace).

As an alternative, the parent theme template-parts/content-page.php could have been copied locally and the footer omitted when empty.

Props aezazshekh, coffee2code.
Fixes #6243.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/css
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/css/components/_site.scss

    r11755 r11756  
    205205            color: $color__text-main;
    206206            font-weight: 400;
     207        }
     208    }
     209
     210    &:not(.logged-in).page {
     211        .entry-footer {
     212            display: none;
    207213        }
    208214    }
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/css/style-rtl.css

    r11755 r11756  
    1 [class*=col-]{margin:inherit}.row{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:768px){.row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}}.row.gutters>.row{margin-right:-2%}@media (max-width:768px){.row.gutters>.row{margin-right:0}}.row.gutters>.row>[class*=col-]{margin-right:2%}@media (max-width:768px){.row.gutters>.row>[class*=col-]{margin-right:0}}.row.around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.row.between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-moz-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.row.auto .col{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.col-1{width:8.3333333333%}.offset-1{margin-right:8.3333333333%}.col-2{width:16.6666666667%}.offset-2{margin-right:16.6666666667%}.col-3{width:25%}.offset-3{margin-right:25%}.col-4{width:33.3333333333%}.offset-4{margin-right:33.3333333333%}.col-5{width:41.6666666667%}.offset-5{margin-right:41.6666666667%}.col-6{width:50%}.offset-6{margin-right:50%}.col-7{width:58.3333333333%}.offset-7{margin-right:58.3333333333%}.col-8{width:66.6666666667%}.offset-8{margin-right:66.6666666667%}.col-9{width:75%}.offset-9{margin-right:75%}.col-10{width:83.3333333333%}.offset-10{margin-right:83.3333333333%}.col-11{width:91.6666666667%}.offset-11{margin-right:91.6666666667%}.col-12{width:100%}.offset-12{margin-right:100%}.gutters>.col-1{width:6.33333%}.gutters>.col-1:nth-child(n+13){margin-top:2%}.gutters>.offset-1{margin-right:10.33333%!important}.gutters>.col-2{width:14.66667%}.gutters>.col-2:nth-child(n+7){margin-top:2%}.gutters>.offset-2{margin-right:18.66667%!important}.gutters>.col-3{width:23%}.gutters>.col-3:nth-child(n+5){margin-top:2%}.gutters>.offset-3{margin-right:27%!important}.gutters>.col-4{width:31.33333%}.gutters>.col-4:nth-child(n+4){margin-top:2%}.gutters>.offset-4{margin-right:35.33333%!important}.gutters>.col-5{width:39.66667%}.gutters>.offset-5{margin-right:43.66667%!important}.gutters>.col-6{width:48%}.gutters>.col-6:nth-child(n+3){margin-top:2%}.gutters>.offset-6{margin-right:52%!important}.gutters>.col-7{width:56.33333%}.gutters>.offset-7{margin-right:60.33333%!important}.gutters>.col-8{width:64.66667%}.gutters>.offset-8{margin-right:68.66667%!important}.gutters>.col-9{width:73%}.gutters>.offset-9{margin-right:77%!important}.gutters>.col-10{width:81.33333%}.gutters>.offset-10{margin-right:85.33333%!important}.gutters>.col-11{width:89.66667%}.gutters>.offset-11{margin-right:93.66667%!important}.gutters>.col-12{width:98%}.gutters>.offset-12{margin-right:102%!important}@media (max-width:768px){[class*=" offset-"],[class^=offset-]{margin-right:0}}.first{-webkit-box-ordinal-group:0;-webkit-order:-1;-moz-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}@media (max-width:768px){.row [class*=col-]{margin-right:0;width:100%}.row.gutters [class*=col-]{margin-bottom:16px}.first-sm{-webkit-box-ordinal-group:0;-webkit-order:-1;-moz-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last-sm{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}}.gutters .column.push-left,.push-left{margin-left:auto}.gutters .column.push-right,.push-right{margin-right:auto}.gutters .column.push-center,.push-center{margin-right:auto;margin-left:auto}.gutters .column.push-middle,.push-middle{margin-top:auto;margin-bottom:auto}.push-bottom{margin-top:auto}@media (max-width:768px){.gutters .column.push-left-sm,.push-left-sm{margin-right:0}.gutters .column.push-center-sm,.push-center-sm{margin-right:auto;margin-left:auto}.push-top-sm{margin-top:0}}.align-middle{-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.align-right{-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.align-center{-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:768px){.align-left-sm{-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.float-right{float:left}.float-left{float:right}@media (max-width:768px){.float-left,.float-right{float:none}}.fixed{position:fixed;top:0;right:0;z-index:100;width:100%}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}optgroup{font-weight:700}table{border-spacing:0}td,th{padding:0}p{margin:1rem 0}cite,dfn,em,i{font-style:italic}blockquote{margin:0 1.5rem}address{margin:0 0 1.5rem}pre{background:#eee;font-family:Courier\ 10 Pitch,Courier,monospace;line-height:1.6;margin-bottom:1.6rem;max-width:100%;overflow:auto;padding:1.6rem}code,kbd,pre,tt,var{font-size:15px;font-size:.9375rem}code,kbd,tt,var{font-family:Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#fff9c0;text-decoration:none}big{font-size:125%}html{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*,:after,:before{-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}body{background:#fff}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-right:2px solid #767676;color:#767676;margin:1rem 0;padding-right:.8rem}blockquote cite{font-size:12.8px;font-size:.8rem}figure{margin:0}hr{background-color:#eee;border:0;height:2px;margin:5rem auto}img{height:auto;max-width:100%}h1,h2,h3,h4,h5,h6{font-family:Open Sans,sans-serif;clear:both;line-height:1.5;margin:2rem 0 1rem}.h1,h1{font-size:39.062px;font-size:2.44140625rem}.h1,.h2,h1,h2{font-weight:300}.h2,h2{font-size:31.25px;font-size:1.953125rem}.h3,h3{font-size:25px;font-size:1.5625rem;font-weight:400}.h4,h4{font-size:20px;font-size:1.25rem;color:#32373c;font-weight:600;padding:0}.h5,h5{font-size:16px;font-size:1rem;letter-spacing:.16px;letter-spacing:.01rem}.h5,.h6,h5,h6{font-weight:600;text-transform:uppercase}.h6,h6{font-size:12.8px;font-size:.8rem;letter-spacing:.8px}a{color:#0073aa;text-decoration:none}a:active,a:focus,a:hover{text-decoration:underline}a:focus{outline:thin dotted}a:active,a:hover{outline:0}li>a,p a{text-decoration:underline}li>a:hover,p a:hover{color:#d54e21}ol,ul{margin:0 1.5em 1.5em 0;padding:0}ul{list-style:square}ol{list-style:decimal}ol.unmarked-list,ul.unmarked-list{list-style:none;padding-right:0}li>ol,li>ul{margin-bottom:0}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table{border:1px solid #eee;border-collapse:collapse;font-size:12.8px;font-size:.8rem;margin:0 0 1rem;padding:0;width:100%}table thead{background:#32373c;color:#fff}table td,table th{border:1px solid #eee;font-weight:400;margin:0;padding:.4rem;text-align:right;vertical-align:top}table tbody tr:nth-child(2n){background:#f7f7f7}html{font-size:100%}body,button,input,select,textarea{color:#32373c;font-family:Open Sans,sans-serif;font-size:100%;line-height:1.5}@media screen and (min-width:737px){html{font-size:1.125rem}}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.screen-reader-text:focus{background-color:#f1f1f1;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.site-content[tabindex="-1"]:focus{outline:0}.no-js .hide-if-no-js{display:none}.alignleft{display:inline;float:right;margin-left:1.5em}.alignright{display:inline;float:left;margin-right:1.5em}.aligncenter{clear:both;display:block;margin-right:auto;margin-left:auto}@media screen and (max-width:480px){.alignleft,.alignright{display:block;float:none;margin-right:auto;margin-left:auto}}.button,.button-primary,.button-secondary,.plugin-upload-form .button-primary{border:1px solid;-webkit-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block;font-size:12.8px;font-size:.8rem;height:25px;height:1.5625rem;line-height:1;margin:0;padding:0 .8rem;text-decoration:none;white-space:nowrap;-webkit-appearance:none}button::-moz-focus-inner,input[type=button]::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0;padding:0}.button-group.button-xl .button,.button.button-xl{font-size:16px;font-size:1rem;height:39.062px;height:2.44140625rem;line-height:1;padding:0 1.5rem}.button-group.button-large .button,.button.button-large{height:31.25px;height:1.953125rem;line-height:1;padding:0 1rem}.button-group.button-small .button,.button.button-small{font-size:10.24px;font-size:.64rem;height:20px;height:1.25rem;line-height:1;padding:0 .5rem}a.button,a.button-primary,a.button-secondary{line-height:25px;line-height:1.5625rem}.button-group.button-large a.button,a.button.button-large{line-height:31.25px;line-height:1.953125rem}.button-group.button-xl a.button,a.button.button-xl{line-height:39.062px;line-height:2.44140625rem}.button-group.button-small a.button,a.button.button-small{line-height:20px;line-height:1.25rem}.button:active,.button:focus{outline:none}.button.hidden{display:none}input[type=reset],input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover{background:none;border:none;-webkit-box-shadow:none;box-shadow:none;padding:0 2px 1px;width:auto}.button,.button-secondary,.button:visited{background:#f7f7f7;border-color:#ccc;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;color:#555;vertical-align:top}p .button{vertical-align:baseline}.button-secondary:focus,.button-secondary:hover,.button.focus,.button.hover,.button:focus,.button:hover{background:#fafafa;border-color:#999;color:#23282d}.button-link:focus,.button-secondary:focus,.button.focus,.button:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.button-secondary:active,.button.active,.button.active:hover,.button:active{background:#eee;border-color:#999;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);-webkit-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.button.active:focus{border-color:#5b9dd9;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8)}.button-disabled,.button-secondary.disabled,.button-secondary:disabled,.button-secondary[disabled],.button.disabled,.button:disabled,.button[disabled]{background:#f7f7f7!important;border-color:#ddd!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#a0a5aa!important;cursor:default;text-shadow:0 1px 0 #fff!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.button-link,input[type=submit].button-link{background:none;border:0;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;cursor:pointer;margin:0;outline:none;padding:0}.button-link:focus{outline:1px solid #5b9dd9}.button-primary,.download-button,.plugin-upload-form .button-primary{text-decoration:none;text-shadow:0 -1px 1px #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799}.button-primary,.button-primary:visited,.download-button,.download-button:visited,.plugin-upload-form .button-primary,.plugin-upload-form .button-primary:visited{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff}.button-primary.focus,.button-primary.hover,.button-primary:focus,.button-primary:hover,.download-button.focus,.download-button.hover,.download-button:focus,.download-button:hover,.plugin-upload-form .button-primary.focus,.plugin-upload-form .button-primary.hover,.plugin-upload-form .button-primary:focus,.plugin-upload-form .button-primary:hover{background:#008ec2;border-color:#006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff}.button-primary.focus,.button-primary:focus,.download-button.focus,.download-button:focus,.plugin-upload-form .button-primary.focus,.plugin-upload-form .button-primary:focus{-webkit-box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}.button-primary.active,.button-primary.active:focus,.button-primary.active:hover,.button-primary:active,.download-button.active,.download-button.active:focus,.download-button.active:hover,.download-button:active,.plugin-upload-form .button-primary.active,.plugin-upload-form .button-primary.active:focus,.plugin-upload-form .button-primary.active:hover,.plugin-upload-form .button-primary:active{background:#0073aa;border-color:#006799;-webkit-box-shadow:inset 0 2px 0 #006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}.button-primary.disabled,.button-primary:disabled,.button-primary[disabled],.download-button.disabled,.download-button:disabled,.download-button[disabled],.plugin-upload-form .button-primary.disabled,.plugin-upload-form .button-primary:disabled,.plugin-upload-form .button-primary[disabled]{background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#66c6e4!important;cursor:default;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important}.button-primary.button.button-hero,.download-button.button.button-hero,.plugin-upload-form .button-primary.button.button-hero{-webkit-box-shadow:0 2px 0 #006799;box-shadow:0 2px 0 #006799}.button-primary.button.button-hero.active,.button-primary.button.button-hero.active:focus,.button-primary.button.button-hero.active:hover,.button-primary.button.button-hero:active,.download-button.button.button-hero.active,.download-button.button.button-hero.active:focus,.download-button.button.button-hero.active:hover,.download-button.button.button-hero:active,.plugin-upload-form .button-primary.button.button-hero.active,.plugin-upload-form .button-primary.button.button-hero.active:focus,.plugin-upload-form .button-primary.button.button-hero.active:hover,.plugin-upload-form .button-primary.button.button-hero:active{-webkit-box-shadow:inset 0 3px 0 #006799;box-shadow:inset 0 3px 0 #006799}.button-primary-disabled{background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#66c6e4!important;cursor:default;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important}.button-group{display:inline-block;font-size:0;position:relative;vertical-align:middle;white-space:nowrap}.button-group>.button{-webkit-border-radius:0;border-radius:0;display:inline-block;margin-left:-1px;z-index:10}.button-group>.button-primary{z-index:100}.button-group>.button:hover{z-index:20}.button-group>.button:first-child{-webkit-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.button-group>.button:last-child{-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.button-group>.button:focus{position:relative;z-index:1}@media screen and (max-width:737px){.button,.button.button-large,.button.button-small,.plugin-upload-form .button-primary{font-size:14px;height:auto;line-height:normal;margin-bottom:4px;padding:6px 14px;vertical-align:middle}}.clear:after,.clear:before,.comment-content:after,.comment-content:before,.entry-content:after,.entry-content:before,.home-below:after,.home-below:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before{content:"";display:table;table-layout:fixed}.clear:after,.comment-content:after,.entry-content:after,.home-below:after,.site-content:after,.site-footer:after,.site-header:after{clear:both}p.subheading{color:#82878c;font-weight:300;margin:-.4rem auto 2rem;text-align:center}p.intro,p.subheading{font-size:20px;font-size:1.25rem}p.aside{font-size:12.8px;font-size:.8rem}p.note{font-size:10.24px;font-size:.64rem;letter-spacing:.16px;letter-spacing:.01rem;max-width:291.038px;max-width:18.1898940355rem}input,textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=radio],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{background-color:#fff;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);color:#32373c;outline:none;-webkit-transition:border-color .05s ease-in-out;transition:border-color .05s ease-in-out}input[type=checkbox]:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}input[type=email],input[type=url]{direction:rtl}input[type=number]{height:28px;line-height:inherit}input[type=checkbox],input[type=radio]{background:#fff;border:1px solid #b4b9be;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);clear:none;color:#555;cursor:pointer;display:inline-block;height:16px;line-height:0;margin:-4px 0 0 4px;min-width:16px;outline:0;padding:0!important;text-align:center;-webkit-transition:border-color .05s ease-in-out;transition:border-color .05s ease-in-out;vertical-align:middle;width:16px;-webkit-appearance:none}input[type=checkbox]:checked:before,input[type=radio]:checked:before{display:inline-block;float:right;font:normal 21px/1 dashicons;vertical-align:middle;width:16px;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox].disabled,input[type=checkbox].disabled:checked:before,input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=radio].disabled,input[type=radio].disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before{opacity:.7}input[type=checkbox]:checked:before{color:#1e8cbe;content:"\f147";margin:-3px -4px 0 0}input[type=radio]{-webkit-border-radius:50%;border-radius:50%;line-height:10px;margin-left:4px}input[type=radio]:checked+label:before{color:#82878c}input[type=radio]:checked:before{background-color:#1e8cbe;-webkit-border-radius:50px;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:16px;margin:4px;text-indent:-9999px;width:6px}input[type=reset]:active,input[type=reset]:hover{color:#00a0d2}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}button,input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}input,select,textarea{-webkit-border-radius:0;border-radius:0;font-size:14px;padding:3px 5px}textarea{line-height:1.4;overflow:auto;padding:2px 6px;resize:vertical}textarea.code{line-height:1.4;padding:4px 6px 1px}label{cursor:pointer;vertical-align:middle}input,select{margin:1px;padding:3px 5px}input.code{padding-top:6px}input.readonly,input[readonly],textarea.readonly,textarea[readonly]{background-color:#eee}.wp-core-ui :-moz-placeholder,:-moz-placeholder{color:#a9a9a9}input.disabled,input:disabled,select.disabled,select:disabled,textarea.disabled,textarea:disabled{background:hsla(0,0%,100%,.5);border-color:hsla(0,0%,87.1%,.75);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.04);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);color:rgba(51,51,51,.5)}input[type=file].disabled,input[type=file]:disabled,input[type=range].disabled,input[type=range]:disabled{background:none;-webkit-box-shadow:none;box-shadow:none}input.large-text,textarea.large-text{width:99%}input.regular-text{width:25em}input.small-text{padding:1px 6px;width:50px}input[type=number].small-text{width:65px}input.tiny-text{width:35px}input[type=number].tiny-text{width:45px}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;padding:6px 10px}input[type=number]{height:40px}input.code{padding-bottom:5px;padding-top:10px}input[type=checkbox]{-webkit-appearance:none;padding:10px}input[type=checkbox]:checked:before{font:normal 30px/1 dashicons;margin:-3px -5px}input[type=checkbox],input[type=radio]{height:25px;width:25px}input[type=radio]:checked:before{vertical-align:middle;width:9px;height:9px;margin:7px;line-height:16px}input,textarea{font-size:16px}input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:55px;display:inline;padding:3px 6px;margin:0 3px}input.regular-text{width:100%}label{font-size:14px}fieldset label{display:block}}a.button:active,a.button:focus,a.button:hover{text-decoration:none}.notice{background:#fff;border-right:4px solid #fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:1em 0;padding:1px 12px}.notice p{font-size:12.8px;font-size:.8rem;margin:.5em 0;padding:2px}.notice.notice-alt{-webkit-box-shadow:none;box-shadow:none}.notice.notice-large{padding:10px 20px}.notice.notice-success{border-right-color:#46b450}.notice.notice-success.notice-alt{background-color:#ecf7ed}.notice.notice-warning{border-right-color:#ffb900}.notice.notice-warning.notice-alt{background-color:#fff8e5}.notice.notice-error{border-right-color:#dc3232}.notice.notice-error.notice-alt{background-color:#fbeaea}.notice.notice-info{border-right-color:#00a0d2}.notice.notice-info.notice-alt{background-color:#e5f5fa}.error-404 .page-content,.error-404 .page-title{text-align:center}.error-404 .page-content .logo-swing{height:160px;height:10rem;margin:6rem auto;position:relative;text-align:center;width:160px;width:10rem}.error-404 .page-content .logo-swing .wp-logo{right:0;max-width:none;position:absolute;top:0;width:160px;width:10rem}@-webkit-keyframes hinge{10%{width:180px;height:180px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}15%{width:185px;height:185px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}20%{width:180px;height:180px;-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}40%{-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{-webkit-transform:rotate(-40deg);transform:rotate(-40deg);-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(-60deg);transform:rotate(-60deg);-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{10%{width:180px;height:180px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}15%{width:185px;height:185px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}20%{width:180px;height:180px;-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}40%{-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{-webkit-transform:rotate(-40deg);transform:rotate(-40deg);-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(-60deg);transform:rotate(-60deg);-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}.comments-area{margin-top:5em}.comments-area>:last-child{margin-bottom:0}.comments-area .comment-list+.comment-respond{border-top:1px solid #eaeaea}.comments-area .comment-list+.comment-respond,.comments-area .comment-navigation+.comment-respond{padding-top:1.6em}.comments-area .comments-title{margin-bottom:1.3333em}.comments-area .comment-list{list-style:none;margin:0}.comments-area .comment-list .pingback,.comments-area .comment-list .trackback,.comments-area .comment-list article{border-top:1px solid #eaeaea;padding:1.6em 0}.comments-area .comment-list article:not(:only-child){padding-bottom:0}.comments-area .comment-list article+.comment-respond{padding-bottom:1.6em}.comments-area .comment-list .children{list-style:none;margin:0}.comments-area .comment-list .children>li{padding-right:.8em}.comments-area .comment-list .alt{background:none}.comments-area .comment-author{color:#999;margin-bottom:.4em}.comments-area .comment-author .avatar{float:right;height:24px;margin-left:.8em;width:24px}.comments-area .comment-metadata,.comments-area .pingback .edit-link{color:#999;line-height:1.5}.comments-area .comment-metadata a,.comments-area .pingback .edit-link a{color:#777}.comments-area .comment-metadata{font-size:12.8px;font-size:.8rem;margin-bottom:1.6em}.comments-area .comment-metadata .edit-link,.comments-area .pingback .edit-link{margin-right:1em}.comments-area .pingback .edit-link:before{top:5px}.comments-area .comment-content ol,.comments-area .comment-content ul{margin:0 1.3333em 1.6em 0}.comments-area .comment-content>:last-child,.comments-area .comment-content li>ol,.comments-area .comment-content li>ul{margin-bottom:0}.comments-area .comment-content .reply{font-size:12px}.comments-area .comment-content .reply a{border:1px solid #eaeaea;color:#707070;display:inline-block;font-weight:700;line-height:1;margin-top:2em;padding:.4167em .8333em;text-transform:uppercase}.comments-area .comment-content .reply a:focus,.comments-area .comment-content .reply a:hover{border-color:#333;color:#333;outline:0}.comments-area .comment-reply-title a{font-weight:inherit}.comments-area .comment-form label{font-size:12.8px;font-size:.8rem;font-weight:700;display:block;letter-spacing:.04em;line-height:1.5}.comments-area .comment-form input[type=email],.comments-area .comment-form input[type=text],.comments-area .comment-form input[type=url],.comments-area .comment-form textarea{width:100%}.comments-area .comment-awaiting-moderation,.comments-area .comment-notes,.comments-area .form-allowed-tags,.comments-area .logged-in-as{font-size:16px;font-size:1rem;line-height:1.5;margin-bottom:2em}.comments-area .no-comments{border-top:1px solid #eaeaea;color:#999;font-weight:700;padding-top:1.6em}.comments-area .comment-navigation+.no-comments{border-top:0}.comments-area .form-allowed-tags code{font-family:Inconsolata,monospace}.comments-area .form-submit{margin-bottom:0}.comments-area .required{color:#c0392b}.entry-content{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}.entry-content>p:first-child{margin-top:0}.entry-content [class*=col-]~h1,.entry-content [class*=col-]~h2,.entry-content [class*=col-]~h3,.entry-content [class*=col-]~h4,.entry-content [class*=col-]~h5,.entry-content [class*=col-]~h6{clear:none}.entry-header{position:relative}.entry-header .sticky-post{font-style:italic;position:absolute;top:-12.8px;top:-.8rem}.entry-header .sticky-post,.entry-meta{color:#999;font-size:12.8px;font-size:.8rem}.entry-meta{margin-bottom:1rem}.entry-meta a{color:#777}.entry-meta>span{margin-left:1rem}.entry-meta>span :last-of-type{margin:0}.entry-meta .byline,.entry-meta .updated:not(.published),.sticky .entry-meta .posted-on{display:none}.group-blog .entry-meta .byline,.single .entry-meta .byline{display:inline}.entry-summary{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}body:not(.single):not(.search) .site-main .post{margin-bottom:3.0517578125rem;max-width:40em}.gallery{margin-bottom:1.5rem}.gallery .gallery-item{display:inline-block;margin:0;text-align:center;vertical-align:top;width:100%}.gallery.gallery-columns-2 .gallery-item{max-width:50%}.gallery.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery.gallery-columns-4 .gallery-item{max-width:25%}.gallery.gallery-columns-5 .gallery-item{max-width:20%}.gallery.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery .gallery-caption{display:block}.main-navigation{background:#0073aa;clear:both;right:0;position:absolute;top:60px;width:100%}.main-navigation ul{display:none;list-style:none;margin:0;padding-right:0}.main-navigation ul ul{-webkit-box-shadow:0 3px 3px rgba(0,0,0,.2);box-shadow:0 3px 3px rgba(0,0,0,.2);float:right;right:-999em;position:absolute;top:1.5em;z-index:99999}.main-navigation ul ul ul{right:-999em;top:0}.main-navigation ul ul li.focus>ul,.main-navigation ul ul li:hover>ul{right:100%}.main-navigation ul ul a{width:200px}.main-navigation ul li.focus>ul,.main-navigation ul li:hover>ul{right:auto}.main-navigation li{border-top:1px solid hsla(0,0%,100%,.2);padding:1rem}.main-navigation a{color:hsla(0,0%,100%,.8);display:block;font-size:12.8px;font-size:.8rem;text-decoration:none}.main-navigation a.active,.main-navigation a:hover{color:#fff}@media screen and (min-width:737px){.main-navigation a.active{border-bottom:1px solid}}.main-navigation.toggled{z-index:1}.main-navigation.toggled ul{display:block}.menu-toggle{background:transparent;border:none;color:#fff;font-size:25px;font-size:1.5625rem;height:56px;height:3.5rem;overflow:hidden;position:absolute;left:16px;left:1rem;top:-58px;width:56px;width:3.5rem;-webkit-appearance:none}.toggled .menu-toggle:before{content:"\f343"}@media screen and (min-width:737px){.menu-toggle{display:none}.main-navigation{float:left;position:static;width:auto}.main-navigation.toggled{padding:1px 0}.main-navigation ul{display:inline-block;font-size:0}.main-navigation ul li{border:0;display:inline-block;font-size:1rem;margin-left:1rem;padding:0}.main-navigation ul li:last-of-type{margin-left:0}}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}body.page .gutters .col-12{width:100%}body.page .entry-header{background:#0073aa;padding:1rem 0}body.page .entry-header .entry-title{color:#fff;font-size:25px;font-size:1.5625rem;font-weight:300;line-height:1;margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){body.page .entry-header .entry-title{padding:0 10px}}body.page .entry-header.home{padding:1.5625rem 1.143rem;text-align:center}@media screen and (min-width:737px){body.page .site-header+.site-main .entry-title{padding:initial}}body.page .entry-content,body.page .entry-footer{margin:0 auto;max-width:960px;padding:3.0517578125rem 1.5625rem}.post-navigation{margin:5em auto;padding:0}.post-navigation a{border-bottom:1px solid #eaeaea;color:#444;display:block;font-weight:600;padding:11px 0 12px;text-transform:none;width:100%}.post-navigation a:hover{color:#21759b}.post-navigation .nav-links{border-top:1px solid #eaeaea;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}.post-navigation .meta-nav{color:#777;display:block;font-size:13px;line-height:2;text-transform:uppercase}.post-navigation .nav-next{text-align:left}.pagination .nav-links{text-align:center}.pagination .nav-links .page-numbers{background-color:#f9f9f9;cursor:hand;display:inline-block;min-width:2em;padding:8px;text-align:center}.pagination .nav-links .page-numbers.dots,.pagination .nav-links .page-numbers.next,.pagination .nav-links .page-numbers.prev{background:none;font-size:.9em;width:auto}.pagination .nav-links .page-numbers.dots{cursor:inherit}@media screen and (max-width:737px){.pagination .nav-links .page-numbers.next,.pagination .nav-links .page-numbers.prev{font-size:0;min-width:0;padding:0}.pagination .nav-links .page-numbers.next:after,.pagination .nav-links .page-numbers.prev:before{background-color:#f9f9f9;display:inline-block;font-size:1rem;line-height:1.5;min-width:2em;padding:8px}.pagination .nav-links .page-numbers.prev:before{content:"\2039"}.pagination .nav-links .page-numbers.next:after{content:"\203A"}}.pagination .nav-links span.page-numbers{background-color:#f7f7f7;font-weight:700}.search-form .search-field{line-height:normal;margin:0;padding:4px 5px;vertical-align:text-bottom}body.search .gutters .col-12{width:100%}body.search .site-main{margin:0 auto;max-width:960px;padding:0 1.5625rem 3.0517578125rem}.site-content{margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){.site-content{padding:0 10px 3.0517578125rem}}@media screen and (max-width:737px){.site-content .site-main{float:none;margin:0;width:auto}}.home .site-content,.page .site-content,.site-content.page{margin:auto;max-width:none;padding:0}.site-content .page-title{font-size:20px;font-size:1.25rem;font-weight:400}.site-content .no-results{margin:0 auto 3.0517578125rem;max-width:40em;padding:0 2rem}.site-description{color:hsla(0,0%,100%,.8);font-size:20px;font-size:1.25rem;font-weight:300;margin:-.4rem auto 2rem;text-align:center}.site-header{background:#0073aa;padding:1rem 0;position:relative}.site-header .site-branding{margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){.site-header .site-branding{padding:0 10px}}.site-header.home{padding:1.5625rem 1.143rem;text-align:center}.site-title{display:inline-block;font-size:25px;font-size:1.5625rem;font-weight:300;line-height:1;margin:0 0 0 2rem;max-width:none}.site-header.home .site-title{display:inherit;font-size:61.035px;font-size:3.8146972656rem;margin:2rem 0 1rem}.widget-area{font-size:12.8px;font-size:.8rem}@media screen and (min-width:480px) and (max-width:768px){.widget-area{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.widget-area .widget{width:48%}}#wporg-footer{background-color:#f7f7f7;border-top:1px solid #dfdfdf;padding:22px 14px 65px}#wporg-footer,#wporg-footer .wrapper{clear:both;margin:0 auto;overflow:auto}#wporg-footer .wrapper{max-width:930px}#wporg-footer ul{float:right;margin-bottom:20px;margin-right:24px;overflow:auto;padding-right:0;width:135px}@media screen and (min-width:960px){#wporg-footer ul:first-child{margin-right:0}}#wporg-footer ul li{color:#bbb;font-size:14px;list-style-type:none;margin-bottom:1px}#wporg-footer ul li a{text-decoration:none;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}#wporg-footer ul li a:hover{color:#0073aa;text-decoration:underline}#wporg-footer .social-media-links .dashicons{margin-left:4px}#wporg-footer .cip{clear:both;color:#ccc;float:none;font-size:12.8px;font-size:.8rem;letter-spacing:.3em;margin:35px auto 0;text-align:center;text-transform:uppercase}#wporg-footer .cip.cip-image{background:url(//s.w.org/style/images/codeispoetry.png?1=) 50% no-repeat;-webkit-background-size:190px 15px;background-size:190px 15px;height:15px;text-indent:-9999px;width:190px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:1.5dppx),only screen and (min-resolution:144dpi){#wporg-footer .cip.cip-image{background-image:url(//s.w.org/style/images/codeispoetry-2x.png?1=)}}@media screen and (min-width:561px) and (max-width:959px){#wporg-footer .wrapper{max-width:600px}#wporg-footer ul{margin-right:2%;width:32%}#wporg-footer ul:nth-child(3n+1){margin-right:0}#wporg-footer ul:nth-child(4n){clear:both}}@media screen and (max-width:560px){#wporg-footer .wrapper{max-width:360px}#wporg-footer ul{margin-right:4%;width:48%}#wporg-footer ul:nth-child(odd){margin-right:0;clear:both}}#wporg-header{background:#23282d;height:140px;position:relative;text-align:center;width:100%}#wporg-header .wrapper{margin:0 auto;max-width:960px}#wporg-header h1{display:inline-block;margin:auto;width:303px}#wporg-header h1 a{background:url(//s.w.org/style/images/wporg-logo.svg?3=) 100% no-repeat;-webkit-background-size:290px 46px;background-size:290px 46px;display:block;height:88px;text-indent:-9999px}#wporg-header h2.rosetta{clear:none;color:#dfdfdf;font-family:Georgia,Times New Roman,serif;font-size:30px;margin:0 60px 0 0}#wporg-header h2.rosetta a{border-bottom:none;color:#dfdfdf;display:block;height:52px;line-height:22px;padding:0}#wporg-header h2.rosetta a:hover{text-decoration:none}#wporg-header #wporg-header-menu{background:#23282d;right:-75%;list-style:none;margin:0;max-width:75%;min-width:200px;position:absolute;text-align:right;top:100%;-webkit-transition:right .3s;transition:right .3s;z-index:100000}#wporg-header #wporg-header-menu.toggled{right:0}#wporg-header ul li{list-style-type:none;position:relative}#wporg-header ul li a{color:#eee;display:block;font-family:Open Sans,Helvetica,Arial,Liberation Sans,sans-serif;font-size:13px;font-weight:600;height:34px;line-height:34px;margin:0 4px;padding:10px 30px;text-decoration:none}#wporg-header ul li a.subcurrent{font-weight:700}@media (max-width:768px){#wporg-header ul li a{height:auto}}#wporg-header ul li.current-menu-item a,#wporg-header ul li.current_page_parent a,#wporg-header ul li a.current,#wporg-header ul li a:hover{color:#00a0d2}#wporg-header ul li#download,#wporg-header ul li.download{float:left;height:34px;margin-left:14px;overflow:hidden;padding:0 0 34px}@media screen and (max-width:767px){#wporg-header ul li#download,#wporg-header ul li.download{display:block;float:none;margin:10px 20px 20px;padding-bottom:0;height:auto}#wporg-header ul li#download a,#wporg-header ul li.download a{padding:4px 10px;text-align:center}}#wporg-header ul li#download a,#wporg-header ul li.download a{margin:0;padding:0 16px}#wporg-header ul li#download a:hover,#wporg-header ul li.download a:hover{color:#eee}#wporg-header ul li#download.current,#wporg-header ul li#download.current-menu-item,#wporg-header ul li#download .uparrow,#wporg-header ul li.download.current,#wporg-header ul li.download.current-menu-item,#wporg-header ul li.download .uparrow{display:none}#wporg-header ul li .nav-submenu{clip:rect(1px,1px,1px,1px);height:1px;right:-2px;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;z-index:99999}#wporg-header ul li .nav-submenu li a{display:inline-block;height:24px;line-height:24px;margin:0;white-space:nowrap}@media screen and (min-width:768px){#wporg-header #head-search{float:left;margin-left:14px;padding-top:30px}}#wporg-header #head-search form{border-bottom:1px solid #3f3f3f;display:inline-block;margin-right:60px;width:288px}#wporg-header #head-search form input.text{background:#191e23;border:0;-webkit-border-radius:0;border-radius:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;color:#b4b9be;float:right;font-family:Open Sans,sans-serif;font-size:12px;height:24px;margin:0;outline:none;padding:3px;vertical-align:top;width:256px}#wporg-header #head-search form input.text::-moz-placeholder{color:#eee}@media screen and (max-width:480px){#wporg-header #head-search form input.text{width:216px}}#wporg-header #head-search form .button{background:#191e23 url(//s.w.org/wp-includes/images/admin-bar-sprite.png?d=20120831) no-repeat 2px 5px;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;float:right;height:30px;margin:0;padding:0;text-shadow:none!important;width:26px}@media screen and (max-width:480px){#wporg-header #head-search form{width:248px}}@media screen and (min-width:480px){#wporg-header #head-search form{margin-right:0}}@media screen and (min-width:768px){#wporg-header{height:120px;text-align:inherit}#wporg-header h1{float:right;padding-right:10px}#wporg-header h2.rosetta{float:right;margin-right:0;padding:36px 27px 0}#wporg-header #headline h2{text-rendering:optimizeLegibility}#wporg-header #wporg-header-menu{float:right;height:46px;list-style:none;margin:-15px 0 0;max-width:inherit;min-width:0;padding:0;position:static;width:100%}#wporg-header ul li{float:right;position:relative}#wporg-header ul li a{height:46px;padding:0 6px}#wporg-header ul li a.current~.uparrow{border-bottom:9px solid #f7f7f7;border-right:9px solid transparent;border-left:9px solid transparent;height:0;margin:-8px auto 0;width:0}#wporg-header ul li.current-menu-item:after,#wporg-header ul li.current_page_parent:after{border-bottom:9px solid #f7f7f7;border-right:9px solid transparent;border-left:9px solid transparent;content:"";height:0;right:50%;margin:-8px -9px 0 0;position:absolute;width:0}#wporg-header ul li .nav-submenu:hover~.uparrow,#wporg-header ul li:hover .nav-submenu~.uparrow{border-bottom:9px solid #32373c;border-right:9px solid transparent;border-left:9px solid transparent;height:0;margin:-10px auto 0;width:0}#wporg-header ul li .nav-submenu{background:#32373c;border:1px solid #32373c;border-top:0;margin-top:-1px;min-width:0}#wporg-header ul li .nav-submenu li{float:none}#wporg-header ul li .nav-submenu li a{height:34px;line-height:34px}#wporg-header .nav-menu .focus>ul,#wporg-header .nav-menu ul li:hover>ul,#wporg-header ul.nav-menu .focus>ul,#wporg-header ul.nav-menu li:hover>ul{clip:inherit;height:inherit;overflow:inherit;width:inherit}#wporg-header ul li.current-menu-item:after,#wporg-header ul li.current_page_parent:after,#wporg-header ul li a.current~.uparrow{border-bottom-color:#0073aa}}.page-download #wporg-header #download,.page-parent-download #wporg-header #download{display:none}#mobile-menu-button{background:none;border:none;-webkit-box-shadow:none;box-shadow:none;display:block;float:right;font-family:dashicons;font-size:16px;font-style:normal;font-weight:400;right:10px;line-height:1;padding:1px;position:absolute;text-align:center;text-decoration:inherit;text-shadow:none;top:75px;-webkit-transition:color .1s ease-in;transition:color .1s ease-in;vertical-align:top;-webkit-font-smoothing:antialiased}#mobile-menu-button:before{border:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#888;content:"\f228";display:inline-block;float:right;font:normal 50px/1 Dashicons;margin:0;outline:none;padding:3px;text-decoration:none;vertical-align:middle;-webkit-font-smoothing:antialiased}@media screen and (min-width:768px){#mobile-menu-button{display:none}}#download-mobile{background:#f7f7f7;border-bottom:1px solid #ddd}#download-mobile .wrapper{padding:20px 0;text-align:center}#download-mobile span.download-ready{font-size:1.6em;margin:0 .25em}#download-mobile a.download-button{font-size:1.6em;height:inherit;margin:10px .25em;padding:10px 15px}.search-form{font-size:0;margin-bottom:2rem;max-width:100%;position:relative}.search-form .search-field{-webkit-appearance:none;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;display:block;font-size:16px;font-size:1rem;line-height:1.5;margin:0 auto;max-width:100%;padding:.5rem;vertical-align:initial;width:363.797px;width:22.7373675443rem}.search-form .button-search{border-top:none;border-right:none;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px;font-size:16px;font-size:1rem;margin:0;position:relative;left:auto;top:auto;vertical-align:top}.search-form .button-search:active{background:#006799;border-left:1px solid #006799;-webkit-box-shadow:none;box-shadow:none}.search-form .button-search .dashicons{font-size:16px;font-size:1rem;vertical-align:text-bottom}.site-header .search-form{display:inline-block}.site-header.home .search-form .button-search,.site-main .search-form .button-search{background:transparent;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#32373c;display:block;height:45px;padding:.5rem 1rem;position:absolute;left:0;text-shadow:none;top:0}.site-header.home .search-form .button-search:focus,.site-main .search-form .button-search:focus{-webkit-box-shadow:0 0 2px 1px #33b3db;box-shadow:0 0 2px 1px #33b3db}.site-header.home .search-form .button-search:active,.site-main .search-form .button-search:active{background:transparent;border:none;-webkit-transform:none;-ms-transform:none;transform:none}.site-header:not(.home) .search-form{margin:0;padding:1rem 1.5rem 1rem 1rem}@media screen and (min-width:737px){.site-header:not(.home) .search-form{padding:0}}.site-header:not(.home) .search-form .search-field{border:0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;display:inline-block;font-size:16px;font-size:1rem;padding:5px 10px;position:relative;width:auto}@media screen and (min-width:737px){.site-header:not(.home) .search-form .search-field{font-size:.64rem;width:7rem}.site-header:not(.home) .search-form .search-field+.button-search{display:inline-block;margin-bottom:0}}@media screen and (min-width:60em){.site-header:not(.home) .search-form .search-field{width:10rem}}.site-main .search-form .search-field{border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);padding:.5rem;width:100%}p a{border-bottom:none}p a:hover{border:none}details{margin:0 0 15px}summary{list-style-type:disc;font-weight:700;cursor:pointer}.wrap{max-width:980px}.site-content{max-width:none;padding:0}.site-title a{font-weight:300}.site-title a,.site-title a:active,.site-title a:focus,.site-title a:hover{border-bottom:none;color:#fff;text-decoration:none}.site-main figcaption{color:#666;font-style:italic}@media screen and (max-width:960px){.site-main figcaption{margin-right:20px;margin-left:20px}}body.archive #main,body.author #main,body.home #main,body.post-type-archive-photo #main,body.search #main{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));margin:0 auto 3rem;padding:0 1.5625rem}@media screen and (min-width:737px){body.archive #main,body.author #main,body.home #main,body.post-type-archive-photo #main,body.search #main{padding:0 10px}}body.archive #main article,body.author #main article,body.home #main article,body.post-type-archive-photo #main article,body.search #main article{max-height:200px;height:200px;margin:0 .5rem 1rem;text-align:center}body.archive #main article.photo-placeholder,body.author #main article.photo-placeholder,body.home #main article.photo-placeholder,body.post-type-archive-photo #main article.photo-placeholder,body.search #main article.photo-placeholder{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}body.archive #main article.photo-placeholder .entry-content,body.author #main article.photo-placeholder .entry-content,body.home #main article.photo-placeholder .entry-content,body.post-type-archive-photo #main article.photo-placeholder .entry-content,body.search #main article.photo-placeholder .entry-content{background-color:#eee}body.archive #main .grid-photo,body.archive #main article.photo-placeholder .entry-content,body.author #main .grid-photo,body.author #main article.photo-placeholder .entry-content,body.home #main .grid-photo,body.home #main article.photo-placeholder .entry-content,body.post-type-archive-photo #main .grid-photo,body.post-type-archive-photo #main article.photo-placeholder .entry-content,body.search #main .grid-photo,body.search #main article.photo-placeholder .entry-content{height:200px;width:300px;-o-object-fit:cover;object-fit:cover;-webkit-transition:all .25s;transition:all .25s}body.archive #main .grid-photo:active,body.archive #main .grid-photo:hover,body.archive #main article.photo-placeholder .entry-content:active,body.archive #main article.photo-placeholder .entry-content:hover,body.author #main .grid-photo:active,body.author #main .grid-photo:hover,body.author #main article.photo-placeholder .entry-content:active,body.author #main article.photo-placeholder .entry-content:hover,body.home #main .grid-photo:active,body.home #main .grid-photo:hover,body.home #main article.photo-placeholder .entry-content:active,body.home #main article.photo-placeholder .entry-content:hover,body.post-type-archive-photo #main .grid-photo:active,body.post-type-archive-photo #main .grid-photo:hover,body.post-type-archive-photo #main article.photo-placeholder .entry-content:active,body.post-type-archive-photo #main article.photo-placeholder .entry-content:hover,body.search #main .grid-photo:active,body.search #main .grid-photo:hover,body.search #main article.photo-placeholder .entry-content:active,body.search #main article.photo-placeholder .entry-content:hover{border:4px solid #eee}body.archive #main .entry-content figcaption,body.archive #main .entry-footer,body.archive #main .entry-header,body.author #main .entry-content figcaption,body.author #main .entry-footer,body.author #main .entry-header,body.home #main .entry-content figcaption,body.home #main .entry-footer,body.home #main .entry-header,body.post-type-archive-photo #main .entry-content figcaption,body.post-type-archive-photo #main .entry-footer,body.post-type-archive-photo #main .entry-header,body.search #main .entry-content figcaption,body.search #main .entry-footer,body.search #main .entry-header{display:none}body.archive #main .page-footer,body.author #main .page-footer,body.home #main .page-footer,body.post-type-archive-photo #main .page-footer,body.search #main .page-footer{grid-column:1/-1;margin-top:3rem}body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{margin:0 auto 60px;overflow:auto}body.archive aside.widget-area .widget,body.author aside.widget-area .widget,body.home aside.widget-area .widget,body.post-type-archive-photo aside.widget-area .widget,body.search aside.widget-area .widget{float:right;width:30%;margin-left:5%}body.archive aside.widget-area .widget:last-child,body.author aside.widget-area .widget:last-child,body.home aside.widget-area .widget:last-child,body.post-type-archive-photo aside.widget-area .widget:last-child,body.search aside.widget-area .widget:last-child{margin-left:0}body.archive aside.widget-area .widgettitle,body.author aside.widget-area .widgettitle,body.home aside.widget-area .widgettitle,body.post-type-archive-photo aside.widget-area .widgettitle,body.search aside.widget-area .widgettitle{margin-top:0}@media screen and (max-width:960px){body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{margin-right:20px;margin-left:20px}}@media screen and (max-width:632px){body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{display:block;margin-right:20px;margin-left:20px}body.archive aside.widget-area .widget,body.author aside.widget-area .widget,body.home aside.widget-area .widget,body.post-type-archive-photo aside.widget-area .widget,body.search aside.widget-area .widget{float:none;width:100%;margin-left:0}}body.home #main,body.post-type-archive-photo #main{margin:2.5rem auto}body.archive .site-main .page-header,body.author .site-main .page-header,body.search .site-main .page-header{grid-column:1/-1;margin-bottom:1rem;width:100%}body.archive .site-main,body.author .site-main,body.post-type-archive-photo .site-main,body.search .site-main,body.single-photo .site-main{float:none;max-width:960px}body.single-photo #main{margin:40px auto 60px}body.single-photo .entry-header{margin-bottom:1rem}body.single-photo .entry-footer{margin-top:2rem}@media screen and (max-width:960px){body.single-photo .entry-footer,body.single-photo .entry-header{margin-right:20px;margin-left:20px}}body.page #main{margin:0 auto 2rem}body.page .entry-header{background-color:#fff;margin:0 auto;padding:3.0517578125rem 1.5625rem 0}body.page .entry-header .entry-title{color:#32373c;font-weight:400}.site-content .no-results{grid-column:1/-1;margin:0 auto;max-width:600px;padding:unset;width:100%}#wporg-photo-upload{border:none;margin:0;padding:0}#wporg-photo-upload .ugc-notice{border:none;border-right:6px solid;-webkit-border-radius:0;border-radius:0;padding-right:.75rem}#wporg-photo-upload .ugc-notice.failure{border-color:#dc3232;background-color:#fbeaea}#wporg-photo-upload .ugc-notice.success{border-color:#64b450;background-color:#eff7ed}#wporg-photo-upload .ugc-help{color:#666;font-size:smaller;margin-top:0}#wporg-photo-upload input[type=file]{margin-right:0;padding-right:0}@media screen and (max-width:600px){#wporg-photo-upload input[type=text]{width:-webkit-calc(100% - 10px);width:calc(100% - 10px)}}.photo-upload-disabled{background-color:#fbeaea;border-right:5px solid red;margin-top:4rem;padding:2rem}.photos-all-link{margin-left:1.5rem}.navigation,.photos-all-link{grid-column:1/-1;text-align:left}.navigation{margin-top:1rem;padding-left:1rem;width:100%}.navigation .nav-links{text-align:inherit}.photo-author img{-webkit-border-radius:50%;border-radius:50%;margin-left:.4rem;vertical-align:middle}.photo-meta{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.photo-meta .column{-webkit-box-flex:2;-webkit-flex:2 1 auto;-moz-box-flex:2;-ms-flex:2 1 auto;flex:2 1 auto;margin-bottom:2rem}.photo-meta .column:last-child{-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left}@media screen and (max-width:600px){.photo-meta .column:last-child{text-align:right}}.photo-meta .photo-exif{list-style:none;margin:0}.photo-meta .photo-exif strong{display:inline-block;min-width:80px}.photo-meta .photo-meta-label{display:inline-block;min-width:100px}.photo-meta .photo-dimensions{margin-top:1rem}.photos-download{list-style:none;margin:0;padding:0;display:grid;position:relative;float:left}.photos-download .download-title{border:none;font-family:inherit;display:-webkit-inline-box;display:-webkit-inline-flex;display:-moz-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.photos-download .download-title:after{content:"";border:.35rem solid transparent;border-top-color:hsla(0,0%,100%,.9);margin-right:.5em;-webkit-transform:translateY(.25em);-ms-transform:translateY(.25em);transform:translateY(.25em)}.photos-download .download-menu{display:grid;list-style:none;margin:0;background-color:#fff;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 .15em .25em rgba(0,0,0,.25);box-shadow:0 .15em .25em rgba(0,0,0,.25);padding:.5em 0;position:absolute;min-width:15ch;right:40%;top:100%;-webkit-transform:rotateX(-90deg) translateX(50%);transform:rotateX(-90deg) translateX(50%);-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;visibility:hidden;opacity:.3;-webkit-transition:all .1s ease-out 80ms;transition:all .1s ease-out 80ms}.photos-download .download-menu:focus-within .dropdown__menu,.photos-download .download-menu:hover .dropdown__menu{opacity:1;-webkit-transform:rotateX(0) translateX(50%);transform:rotateX(0) translateX(50%);visibility:visible}.photos-download .download-menu a{display:block;padding:.5em;opacity:0;text-decoration:none;-webkit-transition:all .1s ease-out 80ms;transition:all .1s ease-out 80ms}.photos-download .download-menu a:hover{background-color:rgba(0,133,186,.15)}.photos-download .download-menu a:focus{outline:none;background-color:rgba(0,133,186,.25)}.photos-download .download-menu li{padding:0}.photos-download:focus-within .download-title,.photos-download:hover .download-title{border-top-color:pink}.photos-download:focus-within .download-menu,.photos-download:hover .download-menu{opacity:1;-webkit-transform:rotateX(0) translateX(50%);transform:rotateX(0) translateX(50%);visibility:visible}.photos-download:focus-within .download-menu a,.photos-download:hover .download-menu a{opacity:1}.photos-download:focus-within:after,.photos-download:hover:after{opacity:1}.photos-download .photo-dimensions{font-size:smaller;display:block}.photos-categories,.photos-colors{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;list-style:none;margin:0;padding:0}.photos-categories li,.photos-colors li{padding:0 1rem}.photos-colors li:before{content:"\2022";font-size:36px;font-weight:700;line-height:16px;line-height:1rem;vertical-align:middle;content:" ";border:1px solid #000;-webkit-border-radius:50%;border-radius:50%;display:inline-block;height:16px;height:1rem;margin-left:.3rem;width:16px;width:1rem}.color-black:before,.taxonomy-photo_color-black{background-color:#000}.color-blue:before,.taxonomy-photo_color-blue{background-color:#00f}.color-brown:before,.taxonomy-photo_color-brown{background-color:brown}.color-gray:before,.taxonomy-photo_color-gray{background-color:grey}.color-green:before,.taxonomy-photo_color-green{background-color:green}.color-orange:before,.taxonomy-photo_color-orange{background-color:orange}.color-purple:before,.taxonomy-photo_color-purple{background-color:#639}.color-pink:before,.taxonomy-photo_color-pink{background-color:pink}.color-red:before,.taxonomy-photo_color-red{background-color:red}.color-violet:before,.taxonomy-photo_color-violet{background-color:violet}.color-white:before,.taxonomy-photo_color-white{background-color:#fff}.color-yellow:before,.taxonomy-photo_color-yellow{background-color:#ff0}body.page .taxonomy-photo_color{-webkit-box-align:end;-webkit-align-items:flex-end;-moz-box-align:end;-ms-flex-align:end;align-items:flex-end;border:1px solid #ddd;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}body.page .taxonomy-photo_color.taxonomy-photo_color .entry-content span{background-color:#ddd}body.page .taxonomy-photo_color .entry-content{-webkit-box-flex:1;-webkit-flex:1 0 auto;-moz-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;margin:0;padding:0;position:relative}body.page .taxonomy-photo_color .entry-content span{background-color:#fff;display:block;min-height:60.8px;min-height:3.8rem;opacity:.9}body.page .taxonomy-photo_color .entry-content a{bottom:-60.8px;bottom:-3.8rem;height:60.8px;height:3.8rem;padding-top:1rem;position:absolute;-webkit-transform:translate(50%,-100%);-ms-transform:translate(50%,-100%);transform:translate(50%,-100%);width:100%}div.upload-checkbox-wrapper{margin:1rem 0}div.upload-checkbox-wrapper input[type=checkbox]{margin-top:0}div.upload-checkbox-wrapper div{padding-right:25px}div.upload-checkbox-wrapper input{margin-right:-25px}@media screen and (max-width:782px){div.upload-checkbox-wrapper div{margin:.5rem 0;padding-right:35px}div.upload-checkbox-wrapper input{margin-right:-35px}}#wporg-photo-upload label.error{background-color:#fbeaea;border-right:5px solid red;padding:.1rem .3rem}.taxonomy-photo_orientation .entry-content{background-color:#eee}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-landscape{max-height:136px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-landscape .entry-content{max-width:300px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-portrait{height:250px;max-height:250px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-portrait .entry-content{height:250px;width:200px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-square .entry-content{width:136px}.banner{background-color:#fff8dc;margin:2rem;padding:1rem 2rem;text-align:center}
     1[class*=col-]{margin:inherit}.row{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:768px){.row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}}.row.gutters>.row{margin-right:-2%}@media (max-width:768px){.row.gutters>.row{margin-right:0}}.row.gutters>.row>[class*=col-]{margin-right:2%}@media (max-width:768px){.row.gutters>.row>[class*=col-]{margin-right:0}}.row.around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.row.between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-moz-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.row.auto .col{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.col-1{width:8.3333333333%}.offset-1{margin-right:8.3333333333%}.col-2{width:16.6666666667%}.offset-2{margin-right:16.6666666667%}.col-3{width:25%}.offset-3{margin-right:25%}.col-4{width:33.3333333333%}.offset-4{margin-right:33.3333333333%}.col-5{width:41.6666666667%}.offset-5{margin-right:41.6666666667%}.col-6{width:50%}.offset-6{margin-right:50%}.col-7{width:58.3333333333%}.offset-7{margin-right:58.3333333333%}.col-8{width:66.6666666667%}.offset-8{margin-right:66.6666666667%}.col-9{width:75%}.offset-9{margin-right:75%}.col-10{width:83.3333333333%}.offset-10{margin-right:83.3333333333%}.col-11{width:91.6666666667%}.offset-11{margin-right:91.6666666667%}.col-12{width:100%}.offset-12{margin-right:100%}.gutters>.col-1{width:6.33333%}.gutters>.col-1:nth-child(n+13){margin-top:2%}.gutters>.offset-1{margin-right:10.33333%!important}.gutters>.col-2{width:14.66667%}.gutters>.col-2:nth-child(n+7){margin-top:2%}.gutters>.offset-2{margin-right:18.66667%!important}.gutters>.col-3{width:23%}.gutters>.col-3:nth-child(n+5){margin-top:2%}.gutters>.offset-3{margin-right:27%!important}.gutters>.col-4{width:31.33333%}.gutters>.col-4:nth-child(n+4){margin-top:2%}.gutters>.offset-4{margin-right:35.33333%!important}.gutters>.col-5{width:39.66667%}.gutters>.offset-5{margin-right:43.66667%!important}.gutters>.col-6{width:48%}.gutters>.col-6:nth-child(n+3){margin-top:2%}.gutters>.offset-6{margin-right:52%!important}.gutters>.col-7{width:56.33333%}.gutters>.offset-7{margin-right:60.33333%!important}.gutters>.col-8{width:64.66667%}.gutters>.offset-8{margin-right:68.66667%!important}.gutters>.col-9{width:73%}.gutters>.offset-9{margin-right:77%!important}.gutters>.col-10{width:81.33333%}.gutters>.offset-10{margin-right:85.33333%!important}.gutters>.col-11{width:89.66667%}.gutters>.offset-11{margin-right:93.66667%!important}.gutters>.col-12{width:98%}.gutters>.offset-12{margin-right:102%!important}@media (max-width:768px){[class*=" offset-"],[class^=offset-]{margin-right:0}}.first{-webkit-box-ordinal-group:0;-webkit-order:-1;-moz-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}@media (max-width:768px){.row [class*=col-]{margin-right:0;width:100%}.row.gutters [class*=col-]{margin-bottom:16px}.first-sm{-webkit-box-ordinal-group:0;-webkit-order:-1;-moz-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last-sm{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}}.gutters .column.push-left,.push-left{margin-left:auto}.gutters .column.push-right,.push-right{margin-right:auto}.gutters .column.push-center,.push-center{margin-right:auto;margin-left:auto}.gutters .column.push-middle,.push-middle{margin-top:auto;margin-bottom:auto}.push-bottom{margin-top:auto}@media (max-width:768px){.gutters .column.push-left-sm,.push-left-sm{margin-right:0}.gutters .column.push-center-sm,.push-center-sm{margin-right:auto;margin-left:auto}.push-top-sm{margin-top:0}}.align-middle{-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.align-right{-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.align-center{-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:768px){.align-left-sm{-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.float-right{float:left}.float-left{float:right}@media (max-width:768px){.float-left,.float-right{float:none}}.fixed{position:fixed;top:0;right:0;z-index:100;width:100%}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}optgroup{font-weight:700}table{border-spacing:0}td,th{padding:0}p{margin:1rem 0}cite,dfn,em,i{font-style:italic}blockquote{margin:0 1.5rem}address{margin:0 0 1.5rem}pre{background:#eee;font-family:Courier\ 10 Pitch,Courier,monospace;line-height:1.6;margin-bottom:1.6rem;max-width:100%;overflow:auto;padding:1.6rem}code,kbd,pre,tt,var{font-size:15px;font-size:.9375rem}code,kbd,tt,var{font-family:Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#fff9c0;text-decoration:none}big{font-size:125%}html{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*,:after,:before{-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}body{background:#fff}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-right:2px solid #767676;color:#767676;margin:1rem 0;padding-right:.8rem}blockquote cite{font-size:12.8px;font-size:.8rem}figure{margin:0}hr{background-color:#eee;border:0;height:2px;margin:5rem auto}img{height:auto;max-width:100%}h1,h2,h3,h4,h5,h6{font-family:Open Sans,sans-serif;clear:both;line-height:1.5;margin:2rem 0 1rem}.h1,h1{font-size:39.062px;font-size:2.44140625rem}.h1,.h2,h1,h2{font-weight:300}.h2,h2{font-size:31.25px;font-size:1.953125rem}.h3,h3{font-size:25px;font-size:1.5625rem;font-weight:400}.h4,h4{font-size:20px;font-size:1.25rem;color:#32373c;font-weight:600;padding:0}.h5,h5{font-size:16px;font-size:1rem;letter-spacing:.16px;letter-spacing:.01rem}.h5,.h6,h5,h6{font-weight:600;text-transform:uppercase}.h6,h6{font-size:12.8px;font-size:.8rem;letter-spacing:.8px}a{color:#0073aa;text-decoration:none}a:active,a:focus,a:hover{text-decoration:underline}a:focus{outline:thin dotted}a:active,a:hover{outline:0}li>a,p a{text-decoration:underline}li>a:hover,p a:hover{color:#d54e21}ol,ul{margin:0 1.5em 1.5em 0;padding:0}ul{list-style:square}ol{list-style:decimal}ol.unmarked-list,ul.unmarked-list{list-style:none;padding-right:0}li>ol,li>ul{margin-bottom:0}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table{border:1px solid #eee;border-collapse:collapse;font-size:12.8px;font-size:.8rem;margin:0 0 1rem;padding:0;width:100%}table thead{background:#32373c;color:#fff}table td,table th{border:1px solid #eee;font-weight:400;margin:0;padding:.4rem;text-align:right;vertical-align:top}table tbody tr:nth-child(2n){background:#f7f7f7}html{font-size:100%}body,button,input,select,textarea{color:#32373c;font-family:Open Sans,sans-serif;font-size:100%;line-height:1.5}@media screen and (min-width:737px){html{font-size:1.125rem}}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.screen-reader-text:focus{background-color:#f1f1f1;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.site-content[tabindex="-1"]:focus{outline:0}.no-js .hide-if-no-js{display:none}.alignleft{display:inline;float:right;margin-left:1.5em}.alignright{display:inline;float:left;margin-right:1.5em}.aligncenter{clear:both;display:block;margin-right:auto;margin-left:auto}@media screen and (max-width:480px){.alignleft,.alignright{display:block;float:none;margin-right:auto;margin-left:auto}}.button,.button-primary,.button-secondary,.plugin-upload-form .button-primary{border:1px solid;-webkit-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block;font-size:12.8px;font-size:.8rem;height:25px;height:1.5625rem;line-height:1;margin:0;padding:0 .8rem;text-decoration:none;white-space:nowrap;-webkit-appearance:none}button::-moz-focus-inner,input[type=button]::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0;padding:0}.button-group.button-xl .button,.button.button-xl{font-size:16px;font-size:1rem;height:39.062px;height:2.44140625rem;line-height:1;padding:0 1.5rem}.button-group.button-large .button,.button.button-large{height:31.25px;height:1.953125rem;line-height:1;padding:0 1rem}.button-group.button-small .button,.button.button-small{font-size:10.24px;font-size:.64rem;height:20px;height:1.25rem;line-height:1;padding:0 .5rem}a.button,a.button-primary,a.button-secondary{line-height:25px;line-height:1.5625rem}.button-group.button-large a.button,a.button.button-large{line-height:31.25px;line-height:1.953125rem}.button-group.button-xl a.button,a.button.button-xl{line-height:39.062px;line-height:2.44140625rem}.button-group.button-small a.button,a.button.button-small{line-height:20px;line-height:1.25rem}.button:active,.button:focus{outline:none}.button.hidden{display:none}input[type=reset],input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover{background:none;border:none;-webkit-box-shadow:none;box-shadow:none;padding:0 2px 1px;width:auto}.button,.button-secondary,.button:visited{background:#f7f7f7;border-color:#ccc;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;color:#555;vertical-align:top}p .button{vertical-align:baseline}.button-secondary:focus,.button-secondary:hover,.button.focus,.button.hover,.button:focus,.button:hover{background:#fafafa;border-color:#999;color:#23282d}.button-link:focus,.button-secondary:focus,.button.focus,.button:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.button-secondary:active,.button.active,.button.active:hover,.button:active{background:#eee;border-color:#999;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);-webkit-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.button.active:focus{border-color:#5b9dd9;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8)}.button-disabled,.button-secondary.disabled,.button-secondary:disabled,.button-secondary[disabled],.button.disabled,.button:disabled,.button[disabled]{background:#f7f7f7!important;border-color:#ddd!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#a0a5aa!important;cursor:default;text-shadow:0 1px 0 #fff!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.button-link,input[type=submit].button-link{background:none;border:0;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;cursor:pointer;margin:0;outline:none;padding:0}.button-link:focus{outline:1px solid #5b9dd9}.button-primary,.download-button,.plugin-upload-form .button-primary{text-decoration:none;text-shadow:0 -1px 1px #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799}.button-primary,.button-primary:visited,.download-button,.download-button:visited,.plugin-upload-form .button-primary,.plugin-upload-form .button-primary:visited{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff}.button-primary.focus,.button-primary.hover,.button-primary:focus,.button-primary:hover,.download-button.focus,.download-button.hover,.download-button:focus,.download-button:hover,.plugin-upload-form .button-primary.focus,.plugin-upload-form .button-primary.hover,.plugin-upload-form .button-primary:focus,.plugin-upload-form .button-primary:hover{background:#008ec2;border-color:#006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff}.button-primary.focus,.button-primary:focus,.download-button.focus,.download-button:focus,.plugin-upload-form .button-primary.focus,.plugin-upload-form .button-primary:focus{-webkit-box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}.button-primary.active,.button-primary.active:focus,.button-primary.active:hover,.button-primary:active,.download-button.active,.download-button.active:focus,.download-button.active:hover,.download-button:active,.plugin-upload-form .button-primary.active,.plugin-upload-form .button-primary.active:focus,.plugin-upload-form .button-primary.active:hover,.plugin-upload-form .button-primary:active{background:#0073aa;border-color:#006799;-webkit-box-shadow:inset 0 2px 0 #006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}.button-primary.disabled,.button-primary:disabled,.button-primary[disabled],.download-button.disabled,.download-button:disabled,.download-button[disabled],.plugin-upload-form .button-primary.disabled,.plugin-upload-form .button-primary:disabled,.plugin-upload-form .button-primary[disabled]{background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#66c6e4!important;cursor:default;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important}.button-primary.button.button-hero,.download-button.button.button-hero,.plugin-upload-form .button-primary.button.button-hero{-webkit-box-shadow:0 2px 0 #006799;box-shadow:0 2px 0 #006799}.button-primary.button.button-hero.active,.button-primary.button.button-hero.active:focus,.button-primary.button.button-hero.active:hover,.button-primary.button.button-hero:active,.download-button.button.button-hero.active,.download-button.button.button-hero.active:focus,.download-button.button.button-hero.active:hover,.download-button.button.button-hero:active,.plugin-upload-form .button-primary.button.button-hero.active,.plugin-upload-form .button-primary.button.button-hero.active:focus,.plugin-upload-form .button-primary.button.button-hero.active:hover,.plugin-upload-form .button-primary.button.button-hero:active{-webkit-box-shadow:inset 0 3px 0 #006799;box-shadow:inset 0 3px 0 #006799}.button-primary-disabled{background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#66c6e4!important;cursor:default;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important}.button-group{display:inline-block;font-size:0;position:relative;vertical-align:middle;white-space:nowrap}.button-group>.button{-webkit-border-radius:0;border-radius:0;display:inline-block;margin-left:-1px;z-index:10}.button-group>.button-primary{z-index:100}.button-group>.button:hover{z-index:20}.button-group>.button:first-child{-webkit-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.button-group>.button:last-child{-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.button-group>.button:focus{position:relative;z-index:1}@media screen and (max-width:737px){.button,.button.button-large,.button.button-small,.plugin-upload-form .button-primary{font-size:14px;height:auto;line-height:normal;margin-bottom:4px;padding:6px 14px;vertical-align:middle}}.clear:after,.clear:before,.comment-content:after,.comment-content:before,.entry-content:after,.entry-content:before,.home-below:after,.home-below:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before{content:"";display:table;table-layout:fixed}.clear:after,.comment-content:after,.entry-content:after,.home-below:after,.site-content:after,.site-footer:after,.site-header:after{clear:both}p.subheading{color:#82878c;font-weight:300;margin:-.4rem auto 2rem;text-align:center}p.intro,p.subheading{font-size:20px;font-size:1.25rem}p.aside{font-size:12.8px;font-size:.8rem}p.note{font-size:10.24px;font-size:.64rem;letter-spacing:.16px;letter-spacing:.01rem;max-width:291.038px;max-width:18.1898940355rem}input,textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=radio],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{background-color:#fff;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);color:#32373c;outline:none;-webkit-transition:border-color .05s ease-in-out;transition:border-color .05s ease-in-out}input[type=checkbox]:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}input[type=email],input[type=url]{direction:rtl}input[type=number]{height:28px;line-height:inherit}input[type=checkbox],input[type=radio]{background:#fff;border:1px solid #b4b9be;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);clear:none;color:#555;cursor:pointer;display:inline-block;height:16px;line-height:0;margin:-4px 0 0 4px;min-width:16px;outline:0;padding:0!important;text-align:center;-webkit-transition:border-color .05s ease-in-out;transition:border-color .05s ease-in-out;vertical-align:middle;width:16px;-webkit-appearance:none}input[type=checkbox]:checked:before,input[type=radio]:checked:before{display:inline-block;float:right;font:normal 21px/1 dashicons;vertical-align:middle;width:16px;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox].disabled,input[type=checkbox].disabled:checked:before,input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=radio].disabled,input[type=radio].disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before{opacity:.7}input[type=checkbox]:checked:before{color:#1e8cbe;content:"\f147";margin:-3px -4px 0 0}input[type=radio]{-webkit-border-radius:50%;border-radius:50%;line-height:10px;margin-left:4px}input[type=radio]:checked+label:before{color:#82878c}input[type=radio]:checked:before{background-color:#1e8cbe;-webkit-border-radius:50px;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:16px;margin:4px;text-indent:-9999px;width:6px}input[type=reset]:active,input[type=reset]:hover{color:#00a0d2}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}button,input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}input,select,textarea{-webkit-border-radius:0;border-radius:0;font-size:14px;padding:3px 5px}textarea{line-height:1.4;overflow:auto;padding:2px 6px;resize:vertical}textarea.code{line-height:1.4;padding:4px 6px 1px}label{cursor:pointer;vertical-align:middle}input,select{margin:1px;padding:3px 5px}input.code{padding-top:6px}input.readonly,input[readonly],textarea.readonly,textarea[readonly]{background-color:#eee}.wp-core-ui :-moz-placeholder,:-moz-placeholder{color:#a9a9a9}input.disabled,input:disabled,select.disabled,select:disabled,textarea.disabled,textarea:disabled{background:hsla(0,0%,100%,.5);border-color:hsla(0,0%,87.1%,.75);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.04);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);color:rgba(51,51,51,.5)}input[type=file].disabled,input[type=file]:disabled,input[type=range].disabled,input[type=range]:disabled{background:none;-webkit-box-shadow:none;box-shadow:none}input.large-text,textarea.large-text{width:99%}input.regular-text{width:25em}input.small-text{padding:1px 6px;width:50px}input[type=number].small-text{width:65px}input.tiny-text{width:35px}input[type=number].tiny-text{width:45px}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;padding:6px 10px}input[type=number]{height:40px}input.code{padding-bottom:5px;padding-top:10px}input[type=checkbox]{-webkit-appearance:none;padding:10px}input[type=checkbox]:checked:before{font:normal 30px/1 dashicons;margin:-3px -5px}input[type=checkbox],input[type=radio]{height:25px;width:25px}input[type=radio]:checked:before{vertical-align:middle;width:9px;height:9px;margin:7px;line-height:16px}input,textarea{font-size:16px}input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:55px;display:inline;padding:3px 6px;margin:0 3px}input.regular-text{width:100%}label{font-size:14px}fieldset label{display:block}}a.button:active,a.button:focus,a.button:hover{text-decoration:none}.notice{background:#fff;border-right:4px solid #fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:1em 0;padding:1px 12px}.notice p{font-size:12.8px;font-size:.8rem;margin:.5em 0;padding:2px}.notice.notice-alt{-webkit-box-shadow:none;box-shadow:none}.notice.notice-large{padding:10px 20px}.notice.notice-success{border-right-color:#46b450}.notice.notice-success.notice-alt{background-color:#ecf7ed}.notice.notice-warning{border-right-color:#ffb900}.notice.notice-warning.notice-alt{background-color:#fff8e5}.notice.notice-error{border-right-color:#dc3232}.notice.notice-error.notice-alt{background-color:#fbeaea}.notice.notice-info{border-right-color:#00a0d2}.notice.notice-info.notice-alt{background-color:#e5f5fa}.error-404 .page-content,.error-404 .page-title{text-align:center}.error-404 .page-content .logo-swing{height:160px;height:10rem;margin:6rem auto;position:relative;text-align:center;width:160px;width:10rem}.error-404 .page-content .logo-swing .wp-logo{right:0;max-width:none;position:absolute;top:0;width:160px;width:10rem}@-webkit-keyframes hinge{10%{width:180px;height:180px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}15%{width:185px;height:185px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}20%{width:180px;height:180px;-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}40%{-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{-webkit-transform:rotate(-40deg);transform:rotate(-40deg);-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(-60deg);transform:rotate(-60deg);-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{10%{width:180px;height:180px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}15%{width:185px;height:185px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}20%{width:180px;height:180px;-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}40%{-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{-webkit-transform:rotate(-40deg);transform:rotate(-40deg);-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(-60deg);transform:rotate(-60deg);-webkit-transform-origin:top right;transform-origin:top right;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}.comments-area{margin-top:5em}.comments-area>:last-child{margin-bottom:0}.comments-area .comment-list+.comment-respond{border-top:1px solid #eaeaea}.comments-area .comment-list+.comment-respond,.comments-area .comment-navigation+.comment-respond{padding-top:1.6em}.comments-area .comments-title{margin-bottom:1.3333em}.comments-area .comment-list{list-style:none;margin:0}.comments-area .comment-list .pingback,.comments-area .comment-list .trackback,.comments-area .comment-list article{border-top:1px solid #eaeaea;padding:1.6em 0}.comments-area .comment-list article:not(:only-child){padding-bottom:0}.comments-area .comment-list article+.comment-respond{padding-bottom:1.6em}.comments-area .comment-list .children{list-style:none;margin:0}.comments-area .comment-list .children>li{padding-right:.8em}.comments-area .comment-list .alt{background:none}.comments-area .comment-author{color:#999;margin-bottom:.4em}.comments-area .comment-author .avatar{float:right;height:24px;margin-left:.8em;width:24px}.comments-area .comment-metadata,.comments-area .pingback .edit-link{color:#999;line-height:1.5}.comments-area .comment-metadata a,.comments-area .pingback .edit-link a{color:#777}.comments-area .comment-metadata{font-size:12.8px;font-size:.8rem;margin-bottom:1.6em}.comments-area .comment-metadata .edit-link,.comments-area .pingback .edit-link{margin-right:1em}.comments-area .pingback .edit-link:before{top:5px}.comments-area .comment-content ol,.comments-area .comment-content ul{margin:0 1.3333em 1.6em 0}.comments-area .comment-content>:last-child,.comments-area .comment-content li>ol,.comments-area .comment-content li>ul{margin-bottom:0}.comments-area .comment-content .reply{font-size:12px}.comments-area .comment-content .reply a{border:1px solid #eaeaea;color:#707070;display:inline-block;font-weight:700;line-height:1;margin-top:2em;padding:.4167em .8333em;text-transform:uppercase}.comments-area .comment-content .reply a:focus,.comments-area .comment-content .reply a:hover{border-color:#333;color:#333;outline:0}.comments-area .comment-reply-title a{font-weight:inherit}.comments-area .comment-form label{font-size:12.8px;font-size:.8rem;font-weight:700;display:block;letter-spacing:.04em;line-height:1.5}.comments-area .comment-form input[type=email],.comments-area .comment-form input[type=text],.comments-area .comment-form input[type=url],.comments-area .comment-form textarea{width:100%}.comments-area .comment-awaiting-moderation,.comments-area .comment-notes,.comments-area .form-allowed-tags,.comments-area .logged-in-as{font-size:16px;font-size:1rem;line-height:1.5;margin-bottom:2em}.comments-area .no-comments{border-top:1px solid #eaeaea;color:#999;font-weight:700;padding-top:1.6em}.comments-area .comment-navigation+.no-comments{border-top:0}.comments-area .form-allowed-tags code{font-family:Inconsolata,monospace}.comments-area .form-submit{margin-bottom:0}.comments-area .required{color:#c0392b}.entry-content{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}.entry-content>p:first-child{margin-top:0}.entry-content [class*=col-]~h1,.entry-content [class*=col-]~h2,.entry-content [class*=col-]~h3,.entry-content [class*=col-]~h4,.entry-content [class*=col-]~h5,.entry-content [class*=col-]~h6{clear:none}.entry-header{position:relative}.entry-header .sticky-post{font-style:italic;position:absolute;top:-12.8px;top:-.8rem}.entry-header .sticky-post,.entry-meta{color:#999;font-size:12.8px;font-size:.8rem}.entry-meta{margin-bottom:1rem}.entry-meta a{color:#777}.entry-meta>span{margin-left:1rem}.entry-meta>span :last-of-type{margin:0}.entry-meta .byline,.entry-meta .updated:not(.published),.sticky .entry-meta .posted-on{display:none}.group-blog .entry-meta .byline,.single .entry-meta .byline{display:inline}.entry-summary{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}body:not(.single):not(.search) .site-main .post{margin-bottom:3.0517578125rem;max-width:40em}.gallery{margin-bottom:1.5rem}.gallery .gallery-item{display:inline-block;margin:0;text-align:center;vertical-align:top;width:100%}.gallery.gallery-columns-2 .gallery-item{max-width:50%}.gallery.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery.gallery-columns-4 .gallery-item{max-width:25%}.gallery.gallery-columns-5 .gallery-item{max-width:20%}.gallery.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery .gallery-caption{display:block}.main-navigation{background:#0073aa;clear:both;right:0;position:absolute;top:60px;width:100%}.main-navigation ul{display:none;list-style:none;margin:0;padding-right:0}.main-navigation ul ul{-webkit-box-shadow:0 3px 3px rgba(0,0,0,.2);box-shadow:0 3px 3px rgba(0,0,0,.2);float:right;right:-999em;position:absolute;top:1.5em;z-index:99999}.main-navigation ul ul ul{right:-999em;top:0}.main-navigation ul ul li.focus>ul,.main-navigation ul ul li:hover>ul{right:100%}.main-navigation ul ul a{width:200px}.main-navigation ul li.focus>ul,.main-navigation ul li:hover>ul{right:auto}.main-navigation li{border-top:1px solid hsla(0,0%,100%,.2);padding:1rem}.main-navigation a{color:hsla(0,0%,100%,.8);display:block;font-size:12.8px;font-size:.8rem;text-decoration:none}.main-navigation a.active,.main-navigation a:hover{color:#fff}@media screen and (min-width:737px){.main-navigation a.active{border-bottom:1px solid}}.main-navigation.toggled{z-index:1}.main-navigation.toggled ul{display:block}.menu-toggle{background:transparent;border:none;color:#fff;font-size:25px;font-size:1.5625rem;height:56px;height:3.5rem;overflow:hidden;position:absolute;left:16px;left:1rem;top:-58px;width:56px;width:3.5rem;-webkit-appearance:none}.toggled .menu-toggle:before{content:"\f343"}@media screen and (min-width:737px){.menu-toggle{display:none}.main-navigation{float:left;position:static;width:auto}.main-navigation.toggled{padding:1px 0}.main-navigation ul{display:inline-block;font-size:0}.main-navigation ul li{border:0;display:inline-block;font-size:1rem;margin-left:1rem;padding:0}.main-navigation ul li:last-of-type{margin-left:0}}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}body.page .gutters .col-12{width:100%}body.page .entry-header{background:#0073aa;padding:1rem 0}body.page .entry-header .entry-title{color:#fff;font-size:25px;font-size:1.5625rem;font-weight:300;line-height:1;margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){body.page .entry-header .entry-title{padding:0 10px}}body.page .entry-header.home{padding:1.5625rem 1.143rem;text-align:center}@media screen and (min-width:737px){body.page .site-header+.site-main .entry-title{padding:initial}}body.page .entry-content,body.page .entry-footer{margin:0 auto;max-width:960px;padding:3.0517578125rem 1.5625rem}.post-navigation{margin:5em auto;padding:0}.post-navigation a{border-bottom:1px solid #eaeaea;color:#444;display:block;font-weight:600;padding:11px 0 12px;text-transform:none;width:100%}.post-navigation a:hover{color:#21759b}.post-navigation .nav-links{border-top:1px solid #eaeaea;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}.post-navigation .meta-nav{color:#777;display:block;font-size:13px;line-height:2;text-transform:uppercase}.post-navigation .nav-next{text-align:left}.pagination .nav-links{text-align:center}.pagination .nav-links .page-numbers{background-color:#f9f9f9;cursor:hand;display:inline-block;min-width:2em;padding:8px;text-align:center}.pagination .nav-links .page-numbers.dots,.pagination .nav-links .page-numbers.next,.pagination .nav-links .page-numbers.prev{background:none;font-size:.9em;width:auto}.pagination .nav-links .page-numbers.dots{cursor:inherit}@media screen and (max-width:737px){.pagination .nav-links .page-numbers.next,.pagination .nav-links .page-numbers.prev{font-size:0;min-width:0;padding:0}.pagination .nav-links .page-numbers.next:after,.pagination .nav-links .page-numbers.prev:before{background-color:#f9f9f9;display:inline-block;font-size:1rem;line-height:1.5;min-width:2em;padding:8px}.pagination .nav-links .page-numbers.prev:before{content:"\2039"}.pagination .nav-links .page-numbers.next:after{content:"\203A"}}.pagination .nav-links span.page-numbers{background-color:#f7f7f7;font-weight:700}.search-form .search-field{line-height:normal;margin:0;padding:4px 5px;vertical-align:text-bottom}body.search .gutters .col-12{width:100%}body.search .site-main{margin:0 auto;max-width:960px;padding:0 1.5625rem 3.0517578125rem}.site-content{margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){.site-content{padding:0 10px 3.0517578125rem}}@media screen and (max-width:737px){.site-content .site-main{float:none;margin:0;width:auto}}.home .site-content,.page .site-content,.site-content.page{margin:auto;max-width:none;padding:0}.site-content .page-title{font-size:20px;font-size:1.25rem;font-weight:400}.site-content .no-results{margin:0 auto 3.0517578125rem;max-width:40em;padding:0 2rem}.site-description{color:hsla(0,0%,100%,.8);font-size:20px;font-size:1.25rem;font-weight:300;margin:-.4rem auto 2rem;text-align:center}.site-header{background:#0073aa;padding:1rem 0;position:relative}.site-header .site-branding{margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){.site-header .site-branding{padding:0 10px}}.site-header.home{padding:1.5625rem 1.143rem;text-align:center}.site-title{display:inline-block;font-size:25px;font-size:1.5625rem;font-weight:300;line-height:1;margin:0 0 0 2rem;max-width:none}.site-header.home .site-title{display:inherit;font-size:61.035px;font-size:3.8146972656rem;margin:2rem 0 1rem}.widget-area{font-size:12.8px;font-size:.8rem}@media screen and (min-width:480px) and (max-width:768px){.widget-area{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.widget-area .widget{width:48%}}#wporg-footer{background-color:#f7f7f7;border-top:1px solid #dfdfdf;padding:22px 14px 65px}#wporg-footer,#wporg-footer .wrapper{clear:both;margin:0 auto;overflow:auto}#wporg-footer .wrapper{max-width:930px}#wporg-footer ul{float:right;margin-bottom:20px;margin-right:24px;overflow:auto;padding-right:0;width:135px}@media screen and (min-width:960px){#wporg-footer ul:first-child{margin-right:0}}#wporg-footer ul li{color:#bbb;font-size:14px;list-style-type:none;margin-bottom:1px}#wporg-footer ul li a{text-decoration:none;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}#wporg-footer ul li a:hover{color:#0073aa;text-decoration:underline}#wporg-footer .social-media-links .dashicons{margin-left:4px}#wporg-footer .cip{clear:both;color:#ccc;float:none;font-size:12.8px;font-size:.8rem;letter-spacing:.3em;margin:35px auto 0;text-align:center;text-transform:uppercase}#wporg-footer .cip.cip-image{background:url(//s.w.org/style/images/codeispoetry.png?1=) 50% no-repeat;-webkit-background-size:190px 15px;background-size:190px 15px;height:15px;text-indent:-9999px;width:190px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:1.5dppx),only screen and (min-resolution:144dpi){#wporg-footer .cip.cip-image{background-image:url(//s.w.org/style/images/codeispoetry-2x.png?1=)}}@media screen and (min-width:561px) and (max-width:959px){#wporg-footer .wrapper{max-width:600px}#wporg-footer ul{margin-right:2%;width:32%}#wporg-footer ul:nth-child(3n+1){margin-right:0}#wporg-footer ul:nth-child(4n){clear:both}}@media screen and (max-width:560px){#wporg-footer .wrapper{max-width:360px}#wporg-footer ul{margin-right:4%;width:48%}#wporg-footer ul:nth-child(odd){margin-right:0;clear:both}}#wporg-header{background:#23282d;height:140px;position:relative;text-align:center;width:100%}#wporg-header .wrapper{margin:0 auto;max-width:960px}#wporg-header h1{display:inline-block;margin:auto;width:303px}#wporg-header h1 a{background:url(//s.w.org/style/images/wporg-logo.svg?3=) 100% no-repeat;-webkit-background-size:290px 46px;background-size:290px 46px;display:block;height:88px;text-indent:-9999px}#wporg-header h2.rosetta{clear:none;color:#dfdfdf;font-family:Georgia,Times New Roman,serif;font-size:30px;margin:0 60px 0 0}#wporg-header h2.rosetta a{border-bottom:none;color:#dfdfdf;display:block;height:52px;line-height:22px;padding:0}#wporg-header h2.rosetta a:hover{text-decoration:none}#wporg-header #wporg-header-menu{background:#23282d;right:-75%;list-style:none;margin:0;max-width:75%;min-width:200px;position:absolute;text-align:right;top:100%;-webkit-transition:right .3s;transition:right .3s;z-index:100000}#wporg-header #wporg-header-menu.toggled{right:0}#wporg-header ul li{list-style-type:none;position:relative}#wporg-header ul li a{color:#eee;display:block;font-family:Open Sans,Helvetica,Arial,Liberation Sans,sans-serif;font-size:13px;font-weight:600;height:34px;line-height:34px;margin:0 4px;padding:10px 30px;text-decoration:none}#wporg-header ul li a.subcurrent{font-weight:700}@media (max-width:768px){#wporg-header ul li a{height:auto}}#wporg-header ul li.current-menu-item a,#wporg-header ul li.current_page_parent a,#wporg-header ul li a.current,#wporg-header ul li a:hover{color:#00a0d2}#wporg-header ul li#download,#wporg-header ul li.download{float:left;height:34px;margin-left:14px;overflow:hidden;padding:0 0 34px}@media screen and (max-width:767px){#wporg-header ul li#download,#wporg-header ul li.download{display:block;float:none;margin:10px 20px 20px;padding-bottom:0;height:auto}#wporg-header ul li#download a,#wporg-header ul li.download a{padding:4px 10px;text-align:center}}#wporg-header ul li#download a,#wporg-header ul li.download a{margin:0;padding:0 16px}#wporg-header ul li#download a:hover,#wporg-header ul li.download a:hover{color:#eee}#wporg-header ul li#download.current,#wporg-header ul li#download.current-menu-item,#wporg-header ul li#download .uparrow,#wporg-header ul li.download.current,#wporg-header ul li.download.current-menu-item,#wporg-header ul li.download .uparrow{display:none}#wporg-header ul li .nav-submenu{clip:rect(1px,1px,1px,1px);height:1px;right:-2px;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;z-index:99999}#wporg-header ul li .nav-submenu li a{display:inline-block;height:24px;line-height:24px;margin:0;white-space:nowrap}@media screen and (min-width:768px){#wporg-header #head-search{float:left;margin-left:14px;padding-top:30px}}#wporg-header #head-search form{border-bottom:1px solid #3f3f3f;display:inline-block;margin-right:60px;width:288px}#wporg-header #head-search form input.text{background:#191e23;border:0;-webkit-border-radius:0;border-radius:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;color:#b4b9be;float:right;font-family:Open Sans,sans-serif;font-size:12px;height:24px;margin:0;outline:none;padding:3px;vertical-align:top;width:256px}#wporg-header #head-search form input.text::-moz-placeholder{color:#eee}@media screen and (max-width:480px){#wporg-header #head-search form input.text{width:216px}}#wporg-header #head-search form .button{background:#191e23 url(//s.w.org/wp-includes/images/admin-bar-sprite.png?d=20120831) no-repeat 2px 5px;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;float:right;height:30px;margin:0;padding:0;text-shadow:none!important;width:26px}@media screen and (max-width:480px){#wporg-header #head-search form{width:248px}}@media screen and (min-width:480px){#wporg-header #head-search form{margin-right:0}}@media screen and (min-width:768px){#wporg-header{height:120px;text-align:inherit}#wporg-header h1{float:right;padding-right:10px}#wporg-header h2.rosetta{float:right;margin-right:0;padding:36px 27px 0}#wporg-header #headline h2{text-rendering:optimizeLegibility}#wporg-header #wporg-header-menu{float:right;height:46px;list-style:none;margin:-15px 0 0;max-width:inherit;min-width:0;padding:0;position:static;width:100%}#wporg-header ul li{float:right;position:relative}#wporg-header ul li a{height:46px;padding:0 6px}#wporg-header ul li a.current~.uparrow{border-bottom:9px solid #f7f7f7;border-right:9px solid transparent;border-left:9px solid transparent;height:0;margin:-8px auto 0;width:0}#wporg-header ul li.current-menu-item:after,#wporg-header ul li.current_page_parent:after{border-bottom:9px solid #f7f7f7;border-right:9px solid transparent;border-left:9px solid transparent;content:"";height:0;right:50%;margin:-8px -9px 0 0;position:absolute;width:0}#wporg-header ul li .nav-submenu:hover~.uparrow,#wporg-header ul li:hover .nav-submenu~.uparrow{border-bottom:9px solid #32373c;border-right:9px solid transparent;border-left:9px solid transparent;height:0;margin:-10px auto 0;width:0}#wporg-header ul li .nav-submenu{background:#32373c;border:1px solid #32373c;border-top:0;margin-top:-1px;min-width:0}#wporg-header ul li .nav-submenu li{float:none}#wporg-header ul li .nav-submenu li a{height:34px;line-height:34px}#wporg-header .nav-menu .focus>ul,#wporg-header .nav-menu ul li:hover>ul,#wporg-header ul.nav-menu .focus>ul,#wporg-header ul.nav-menu li:hover>ul{clip:inherit;height:inherit;overflow:inherit;width:inherit}#wporg-header ul li.current-menu-item:after,#wporg-header ul li.current_page_parent:after,#wporg-header ul li a.current~.uparrow{border-bottom-color:#0073aa}}.page-download #wporg-header #download,.page-parent-download #wporg-header #download{display:none}#mobile-menu-button{background:none;border:none;-webkit-box-shadow:none;box-shadow:none;display:block;float:right;font-family:dashicons;font-size:16px;font-style:normal;font-weight:400;right:10px;line-height:1;padding:1px;position:absolute;text-align:center;text-decoration:inherit;text-shadow:none;top:75px;-webkit-transition:color .1s ease-in;transition:color .1s ease-in;vertical-align:top;-webkit-font-smoothing:antialiased}#mobile-menu-button:before{border:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#888;content:"\f228";display:inline-block;float:right;font:normal 50px/1 Dashicons;margin:0;outline:none;padding:3px;text-decoration:none;vertical-align:middle;-webkit-font-smoothing:antialiased}@media screen and (min-width:768px){#mobile-menu-button{display:none}}#download-mobile{background:#f7f7f7;border-bottom:1px solid #ddd}#download-mobile .wrapper{padding:20px 0;text-align:center}#download-mobile span.download-ready{font-size:1.6em;margin:0 .25em}#download-mobile a.download-button{font-size:1.6em;height:inherit;margin:10px .25em;padding:10px 15px}.search-form{font-size:0;margin-bottom:2rem;max-width:100%;position:relative}.search-form .search-field{-webkit-appearance:none;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;display:block;font-size:16px;font-size:1rem;line-height:1.5;margin:0 auto;max-width:100%;padding:.5rem;vertical-align:initial;width:363.797px;width:22.7373675443rem}.search-form .button-search{border-top:none;border-right:none;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px;font-size:16px;font-size:1rem;margin:0;position:relative;left:auto;top:auto;vertical-align:top}.search-form .button-search:active{background:#006799;border-left:1px solid #006799;-webkit-box-shadow:none;box-shadow:none}.search-form .button-search .dashicons{font-size:16px;font-size:1rem;vertical-align:text-bottom}.site-header .search-form{display:inline-block}.site-header.home .search-form .button-search,.site-main .search-form .button-search{background:transparent;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#32373c;display:block;height:45px;padding:.5rem 1rem;position:absolute;left:0;text-shadow:none;top:0}.site-header.home .search-form .button-search:focus,.site-main .search-form .button-search:focus{-webkit-box-shadow:0 0 2px 1px #33b3db;box-shadow:0 0 2px 1px #33b3db}.site-header.home .search-form .button-search:active,.site-main .search-form .button-search:active{background:transparent;border:none;-webkit-transform:none;-ms-transform:none;transform:none}.site-header:not(.home) .search-form{margin:0;padding:1rem 1.5rem 1rem 1rem}@media screen and (min-width:737px){.site-header:not(.home) .search-form{padding:0}}.site-header:not(.home) .search-form .search-field{border:0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;display:inline-block;font-size:16px;font-size:1rem;padding:5px 10px;position:relative;width:auto}@media screen and (min-width:737px){.site-header:not(.home) .search-form .search-field{font-size:.64rem;width:7rem}.site-header:not(.home) .search-form .search-field+.button-search{display:inline-block;margin-bottom:0}}@media screen and (min-width:60em){.site-header:not(.home) .search-form .search-field{width:10rem}}.site-main .search-form .search-field{border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);padding:.5rem;width:100%}p a{border-bottom:none}p a:hover{border:none}details{margin:0 0 15px}summary{list-style-type:disc;font-weight:700;cursor:pointer}.wrap{max-width:980px}.site-content{max-width:none;padding:0}.site-title a{font-weight:300}.site-title a,.site-title a:active,.site-title a:focus,.site-title a:hover{border-bottom:none;color:#fff;text-decoration:none}.site-main figcaption{color:#666;font-style:italic}@media screen and (max-width:960px){.site-main figcaption{margin-right:20px;margin-left:20px}}body.archive #main,body.author #main,body.home #main,body.post-type-archive-photo #main,body.search #main{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));margin:0 auto 3rem;padding:0 1.5625rem}@media screen and (min-width:737px){body.archive #main,body.author #main,body.home #main,body.post-type-archive-photo #main,body.search #main{padding:0 10px}}body.archive #main article,body.author #main article,body.home #main article,body.post-type-archive-photo #main article,body.search #main article{max-height:200px;height:200px;margin:0 .5rem 1rem;text-align:center}body.archive #main article.photo-placeholder,body.author #main article.photo-placeholder,body.home #main article.photo-placeholder,body.post-type-archive-photo #main article.photo-placeholder,body.search #main article.photo-placeholder{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}body.archive #main article.photo-placeholder .entry-content,body.author #main article.photo-placeholder .entry-content,body.home #main article.photo-placeholder .entry-content,body.post-type-archive-photo #main article.photo-placeholder .entry-content,body.search #main article.photo-placeholder .entry-content{background-color:#eee}body.archive #main .grid-photo,body.archive #main article.photo-placeholder .entry-content,body.author #main .grid-photo,body.author #main article.photo-placeholder .entry-content,body.home #main .grid-photo,body.home #main article.photo-placeholder .entry-content,body.post-type-archive-photo #main .grid-photo,body.post-type-archive-photo #main article.photo-placeholder .entry-content,body.search #main .grid-photo,body.search #main article.photo-placeholder .entry-content{height:200px;width:300px;-o-object-fit:cover;object-fit:cover;-webkit-transition:all .25s;transition:all .25s}body.archive #main .grid-photo:active,body.archive #main .grid-photo:hover,body.archive #main article.photo-placeholder .entry-content:active,body.archive #main article.photo-placeholder .entry-content:hover,body.author #main .grid-photo:active,body.author #main .grid-photo:hover,body.author #main article.photo-placeholder .entry-content:active,body.author #main article.photo-placeholder .entry-content:hover,body.home #main .grid-photo:active,body.home #main .grid-photo:hover,body.home #main article.photo-placeholder .entry-content:active,body.home #main article.photo-placeholder .entry-content:hover,body.post-type-archive-photo #main .grid-photo:active,body.post-type-archive-photo #main .grid-photo:hover,body.post-type-archive-photo #main article.photo-placeholder .entry-content:active,body.post-type-archive-photo #main article.photo-placeholder .entry-content:hover,body.search #main .grid-photo:active,body.search #main .grid-photo:hover,body.search #main article.photo-placeholder .entry-content:active,body.search #main article.photo-placeholder .entry-content:hover{border:4px solid #eee}body.archive #main .entry-content figcaption,body.archive #main .entry-footer,body.archive #main .entry-header,body.author #main .entry-content figcaption,body.author #main .entry-footer,body.author #main .entry-header,body.home #main .entry-content figcaption,body.home #main .entry-footer,body.home #main .entry-header,body.post-type-archive-photo #main .entry-content figcaption,body.post-type-archive-photo #main .entry-footer,body.post-type-archive-photo #main .entry-header,body.search #main .entry-content figcaption,body.search #main .entry-footer,body.search #main .entry-header{display:none}body.archive #main .page-footer,body.author #main .page-footer,body.home #main .page-footer,body.post-type-archive-photo #main .page-footer,body.search #main .page-footer{grid-column:1/-1;margin-top:3rem}body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{margin:0 auto 60px;overflow:auto}body.archive aside.widget-area .widget,body.author aside.widget-area .widget,body.home aside.widget-area .widget,body.post-type-archive-photo aside.widget-area .widget,body.search aside.widget-area .widget{float:right;width:30%;margin-left:5%}body.archive aside.widget-area .widget:last-child,body.author aside.widget-area .widget:last-child,body.home aside.widget-area .widget:last-child,body.post-type-archive-photo aside.widget-area .widget:last-child,body.search aside.widget-area .widget:last-child{margin-left:0}body.archive aside.widget-area .widgettitle,body.author aside.widget-area .widgettitle,body.home aside.widget-area .widgettitle,body.post-type-archive-photo aside.widget-area .widgettitle,body.search aside.widget-area .widgettitle{margin-top:0}@media screen and (max-width:960px){body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{margin-right:20px;margin-left:20px}}@media screen and (max-width:632px){body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{display:block;margin-right:20px;margin-left:20px}body.archive aside.widget-area .widget,body.author aside.widget-area .widget,body.home aside.widget-area .widget,body.post-type-archive-photo aside.widget-area .widget,body.search aside.widget-area .widget{float:none;width:100%;margin-left:0}}body.home #main,body.post-type-archive-photo #main{margin:2.5rem auto}body.archive .site-main .page-header,body.author .site-main .page-header,body.search .site-main .page-header{grid-column:1/-1;margin-bottom:1rem;width:100%}body.archive .site-main,body.author .site-main,body.post-type-archive-photo .site-main,body.search .site-main,body.single-photo .site-main{float:none;max-width:960px}body.single-photo #main{margin:40px auto 60px}body.single-photo .entry-header{margin-bottom:1rem}body.single-photo .entry-footer{margin-top:2rem}@media screen and (max-width:960px){body.single-photo .entry-footer,body.single-photo .entry-header{margin-right:20px;margin-left:20px}}body.page #main{margin:0 auto 2rem}body.page .entry-header{background-color:#fff;margin:0 auto;padding:3.0517578125rem 1.5625rem 0}body.page .entry-header .entry-title{color:#32373c;font-weight:400}body.page:not(.logged-in).page .entry-footer{display:none}.site-content .no-results{grid-column:1/-1;margin:0 auto;max-width:600px;padding:unset;width:100%}#wporg-photo-upload{border:none;margin:0;padding:0}#wporg-photo-upload .ugc-notice{border:none;border-right:6px solid;-webkit-border-radius:0;border-radius:0;padding-right:.75rem}#wporg-photo-upload .ugc-notice.failure{border-color:#dc3232;background-color:#fbeaea}#wporg-photo-upload .ugc-notice.success{border-color:#64b450;background-color:#eff7ed}#wporg-photo-upload .ugc-help{color:#666;font-size:smaller;margin-top:0}#wporg-photo-upload input[type=file]{margin-right:0;padding-right:0}@media screen and (max-width:600px){#wporg-photo-upload input[type=text]{width:-webkit-calc(100% - 10px);width:calc(100% - 10px)}}.photo-upload-disabled{background-color:#fbeaea;border-right:5px solid red;margin-top:4rem;padding:2rem}.photos-all-link{margin-left:1.5rem}.navigation,.photos-all-link{grid-column:1/-1;text-align:left}.navigation{margin-top:1rem;padding-left:1rem;width:100%}.navigation .nav-links{text-align:inherit}.photo-author img{-webkit-border-radius:50%;border-radius:50%;margin-left:.4rem;vertical-align:middle}.photo-meta{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.photo-meta .column{-webkit-box-flex:2;-webkit-flex:2 1 auto;-moz-box-flex:2;-ms-flex:2 1 auto;flex:2 1 auto;margin-bottom:2rem}.photo-meta .column:last-child{-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left}@media screen and (max-width:600px){.photo-meta .column:last-child{text-align:right}}.photo-meta .photo-exif{list-style:none;margin:0}.photo-meta .photo-exif strong{display:inline-block;min-width:80px}.photo-meta .photo-meta-label{display:inline-block;min-width:100px}.photo-meta .photo-dimensions{margin-top:1rem}.photos-download{list-style:none;margin:0;padding:0;display:grid;position:relative;float:left}.photos-download .download-title{border:none;font-family:inherit;display:-webkit-inline-box;display:-webkit-inline-flex;display:-moz-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.photos-download .download-title:after{content:"";border:.35rem solid transparent;border-top-color:hsla(0,0%,100%,.9);margin-right:.5em;-webkit-transform:translateY(.25em);-ms-transform:translateY(.25em);transform:translateY(.25em)}.photos-download .download-menu{display:grid;list-style:none;margin:0;background-color:#fff;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 .15em .25em rgba(0,0,0,.25);box-shadow:0 .15em .25em rgba(0,0,0,.25);padding:.5em 0;position:absolute;min-width:15ch;right:40%;top:100%;-webkit-transform:rotateX(-90deg) translateX(50%);transform:rotateX(-90deg) translateX(50%);-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;visibility:hidden;opacity:.3;-webkit-transition:all .1s ease-out 80ms;transition:all .1s ease-out 80ms}.photos-download .download-menu:focus-within .dropdown__menu,.photos-download .download-menu:hover .dropdown__menu{opacity:1;-webkit-transform:rotateX(0) translateX(50%);transform:rotateX(0) translateX(50%);visibility:visible}.photos-download .download-menu a{display:block;padding:.5em;opacity:0;text-decoration:none;-webkit-transition:all .1s ease-out 80ms;transition:all .1s ease-out 80ms}.photos-download .download-menu a:hover{background-color:rgba(0,133,186,.15)}.photos-download .download-menu a:focus{outline:none;background-color:rgba(0,133,186,.25)}.photos-download .download-menu li{padding:0}.photos-download:focus-within .download-title,.photos-download:hover .download-title{border-top-color:pink}.photos-download:focus-within .download-menu,.photos-download:hover .download-menu{opacity:1;-webkit-transform:rotateX(0) translateX(50%);transform:rotateX(0) translateX(50%);visibility:visible}.photos-download:focus-within .download-menu a,.photos-download:hover .download-menu a{opacity:1}.photos-download:focus-within:after,.photos-download:hover:after{opacity:1}.photos-download .photo-dimensions{font-size:smaller;display:block}.photos-categories,.photos-colors{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;list-style:none;margin:0;padding:0}.photos-categories li,.photos-colors li{padding:0 1rem}.photos-colors li:before{content:"\2022";font-size:36px;font-weight:700;line-height:16px;line-height:1rem;vertical-align:middle;content:" ";border:1px solid #000;-webkit-border-radius:50%;border-radius:50%;display:inline-block;height:16px;height:1rem;margin-left:.3rem;width:16px;width:1rem}.color-black:before,.taxonomy-photo_color-black{background-color:#000}.color-blue:before,.taxonomy-photo_color-blue{background-color:#00f}.color-brown:before,.taxonomy-photo_color-brown{background-color:brown}.color-gray:before,.taxonomy-photo_color-gray{background-color:grey}.color-green:before,.taxonomy-photo_color-green{background-color:green}.color-orange:before,.taxonomy-photo_color-orange{background-color:orange}.color-purple:before,.taxonomy-photo_color-purple{background-color:#639}.color-pink:before,.taxonomy-photo_color-pink{background-color:pink}.color-red:before,.taxonomy-photo_color-red{background-color:red}.color-violet:before,.taxonomy-photo_color-violet{background-color:violet}.color-white:before,.taxonomy-photo_color-white{background-color:#fff}.color-yellow:before,.taxonomy-photo_color-yellow{background-color:#ff0}body.page .taxonomy-photo_color{-webkit-box-align:end;-webkit-align-items:flex-end;-moz-box-align:end;-ms-flex-align:end;align-items:flex-end;border:1px solid #ddd;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}body.page .taxonomy-photo_color.taxonomy-photo_color .entry-content span{background-color:#ddd}body.page .taxonomy-photo_color .entry-content{-webkit-box-flex:1;-webkit-flex:1 0 auto;-moz-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;margin:0;padding:0;position:relative}body.page .taxonomy-photo_color .entry-content span{background-color:#fff;display:block;min-height:60.8px;min-height:3.8rem;opacity:.9}body.page .taxonomy-photo_color .entry-content a{bottom:-60.8px;bottom:-3.8rem;height:60.8px;height:3.8rem;padding-top:1rem;position:absolute;-webkit-transform:translate(50%,-100%);-ms-transform:translate(50%,-100%);transform:translate(50%,-100%);width:100%}div.upload-checkbox-wrapper{margin:1rem 0}div.upload-checkbox-wrapper input[type=checkbox]{margin-top:0}div.upload-checkbox-wrapper div{padding-right:25px}div.upload-checkbox-wrapper input{margin-right:-25px}@media screen and (max-width:782px){div.upload-checkbox-wrapper div{margin:.5rem 0;padding-right:35px}div.upload-checkbox-wrapper input{margin-right:-35px}}#wporg-photo-upload label.error{background-color:#fbeaea;border-right:5px solid red;padding:.1rem .3rem}.taxonomy-photo_orientation .entry-content{background-color:#eee}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-landscape{max-height:136px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-landscape .entry-content{max-width:300px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-portrait{height:250px;max-height:250px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-portrait .entry-content{height:250px;width:200px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-square .entry-content{width:136px}.banner{background-color:#fff8dc;margin:2rem;padding:1rem 2rem;text-align:center}
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/css/style.css

    r11755 r11756  
    1 [class*=col-]{margin:inherit}.row{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:768px){.row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}}.row.gutters>.row{margin-left:-2%}@media (max-width:768px){.row.gutters>.row{margin-left:0}}.row.gutters>.row>[class*=col-]{margin-left:2%}@media (max-width:768px){.row.gutters>.row>[class*=col-]{margin-left:0}}.row.around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.row.between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-moz-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.row.auto .col{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.col-1{width:8.3333333333%}.offset-1{margin-left:8.3333333333%}.col-2{width:16.6666666667%}.offset-2{margin-left:16.6666666667%}.col-3{width:25%}.offset-3{margin-left:25%}.col-4{width:33.3333333333%}.offset-4{margin-left:33.3333333333%}.col-5{width:41.6666666667%}.offset-5{margin-left:41.6666666667%}.col-6{width:50%}.offset-6{margin-left:50%}.col-7{width:58.3333333333%}.offset-7{margin-left:58.3333333333%}.col-8{width:66.6666666667%}.offset-8{margin-left:66.6666666667%}.col-9{width:75%}.offset-9{margin-left:75%}.col-10{width:83.3333333333%}.offset-10{margin-left:83.3333333333%}.col-11{width:91.6666666667%}.offset-11{margin-left:91.6666666667%}.col-12{width:100%}.offset-12{margin-left:100%}.gutters>.col-1{width:6.33333%}.gutters>.col-1:nth-child(n+13){margin-top:2%}.gutters>.offset-1{margin-left:10.33333%!important}.gutters>.col-2{width:14.66667%}.gutters>.col-2:nth-child(n+7){margin-top:2%}.gutters>.offset-2{margin-left:18.66667%!important}.gutters>.col-3{width:23%}.gutters>.col-3:nth-child(n+5){margin-top:2%}.gutters>.offset-3{margin-left:27%!important}.gutters>.col-4{width:31.33333%}.gutters>.col-4:nth-child(n+4){margin-top:2%}.gutters>.offset-4{margin-left:35.33333%!important}.gutters>.col-5{width:39.66667%}.gutters>.offset-5{margin-left:43.66667%!important}.gutters>.col-6{width:48%}.gutters>.col-6:nth-child(n+3){margin-top:2%}.gutters>.offset-6{margin-left:52%!important}.gutters>.col-7{width:56.33333%}.gutters>.offset-7{margin-left:60.33333%!important}.gutters>.col-8{width:64.66667%}.gutters>.offset-8{margin-left:68.66667%!important}.gutters>.col-9{width:73%}.gutters>.offset-9{margin-left:77%!important}.gutters>.col-10{width:81.33333%}.gutters>.offset-10{margin-left:85.33333%!important}.gutters>.col-11{width:89.66667%}.gutters>.offset-11{margin-left:93.66667%!important}.gutters>.col-12{width:98%}.gutters>.offset-12{margin-left:102%!important}@media (max-width:768px){[class*=" offset-"],[class^=offset-]{margin-left:0}}.first{-webkit-box-ordinal-group:0;-webkit-order:-1;-moz-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}@media (max-width:768px){.row [class*=col-]{margin-left:0;width:100%}.row.gutters [class*=col-]{margin-bottom:16px}.first-sm{-webkit-box-ordinal-group:0;-webkit-order:-1;-moz-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last-sm{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}}.gutters .column.push-left,.push-left{margin-right:auto}.gutters .column.push-right,.push-right{margin-left:auto}.gutters .column.push-center,.push-center{margin-left:auto;margin-right:auto}.gutters .column.push-middle,.push-middle{margin-top:auto;margin-bottom:auto}.push-bottom{margin-top:auto}@media (max-width:768px){.gutters .column.push-left-sm,.push-left-sm{margin-left:0}.gutters .column.push-center-sm,.push-center-sm{margin-left:auto;margin-right:auto}.push-top-sm{margin-top:0}}.align-middle{-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.align-right{-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.align-center{-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:768px){.align-left-sm{-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.float-right{float:right}.float-left{float:left}@media (max-width:768px){.float-left,.float-right{float:none}}.fixed{position:fixed;top:0;left:0;z-index:100;width:100%}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}optgroup{font-weight:700}table{border-spacing:0}td,th{padding:0}p{margin:1rem 0}cite,dfn,em,i{font-style:italic}blockquote{margin:0 1.5rem}address{margin:0 0 1.5rem}pre{background:#eee;font-family:Courier\ 10 Pitch,Courier,monospace;line-height:1.6;margin-bottom:1.6rem;max-width:100%;overflow:auto;padding:1.6rem}code,kbd,pre,tt,var{font-size:15px;font-size:.9375rem}code,kbd,tt,var{font-family:Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#fff9c0;text-decoration:none}big{font-size:125%}html{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*,:after,:before{-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}body{background:#fff}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-left:2px solid #767676;color:#767676;margin:1rem 0;padding-left:.8rem}blockquote cite{font-size:12.8px;font-size:.8rem}figure{margin:0}hr{background-color:#eee;border:0;height:2px;margin:5rem auto}img{height:auto;max-width:100%}h1,h2,h3,h4,h5,h6{font-family:Open Sans,sans-serif;clear:both;line-height:1.5;margin:2rem 0 1rem}.h1,h1{font-size:39.062px;font-size:2.44140625rem}.h1,.h2,h1,h2{font-weight:300}.h2,h2{font-size:31.25px;font-size:1.953125rem}.h3,h3{font-size:25px;font-size:1.5625rem;font-weight:400}.h4,h4{font-size:20px;font-size:1.25rem;color:#32373c;font-weight:600;padding:0}.h5,h5{font-size:16px;font-size:1rem;letter-spacing:.16px;letter-spacing:.01rem}.h5,.h6,h5,h6{font-weight:600;text-transform:uppercase}.h6,h6{font-size:12.8px;font-size:.8rem;letter-spacing:.8px}a{color:#0073aa;text-decoration:none}a:active,a:focus,a:hover{text-decoration:underline}a:focus{outline:thin dotted}a:active,a:hover{outline:0}li>a,p a{text-decoration:underline}li>a:hover,p a:hover{color:#d54e21}ol,ul{margin:0 0 1.5em 1.5em;padding:0}ul{list-style:square}ol{list-style:decimal}ol.unmarked-list,ul.unmarked-list{list-style:none;padding-left:0}li>ol,li>ul{margin-bottom:0}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table{border:1px solid #eee;border-collapse:collapse;font-size:12.8px;font-size:.8rem;margin:0 0 1rem;padding:0;width:100%}table thead{background:#32373c;color:#fff}table td,table th{border:1px solid #eee;font-weight:400;margin:0;padding:.4rem;text-align:left;vertical-align:top}table tbody tr:nth-child(2n){background:#f7f7f7}html{font-size:100%}body,button,input,select,textarea{color:#32373c;font-family:Open Sans,sans-serif;font-size:100%;line-height:1.5}@media screen and (min-width:737px){html{font-size:1.125rem}}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.screen-reader-text:focus{background-color:#f1f1f1;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.site-content[tabindex="-1"]:focus{outline:0}.no-js .hide-if-no-js{display:none}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto}@media screen and (max-width:480px){.alignleft,.alignright{display:block;float:none;margin-left:auto;margin-right:auto}}.button,.button-primary,.button-secondary,.plugin-upload-form .button-primary{border:1px solid;-webkit-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block;font-size:12.8px;font-size:.8rem;height:25px;height:1.5625rem;line-height:1;margin:0;padding:0 .8rem;text-decoration:none;white-space:nowrap;-webkit-appearance:none}button::-moz-focus-inner,input[type=button]::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0;padding:0}.button-group.button-xl .button,.button.button-xl{font-size:16px;font-size:1rem;height:39.062px;height:2.44140625rem;line-height:1;padding:0 1.5rem}.button-group.button-large .button,.button.button-large{height:31.25px;height:1.953125rem;line-height:1;padding:0 1rem}.button-group.button-small .button,.button.button-small{font-size:10.24px;font-size:.64rem;height:20px;height:1.25rem;line-height:1;padding:0 .5rem}a.button,a.button-primary,a.button-secondary{line-height:25px;line-height:1.5625rem}.button-group.button-large a.button,a.button.button-large{line-height:31.25px;line-height:1.953125rem}.button-group.button-xl a.button,a.button.button-xl{line-height:39.062px;line-height:2.44140625rem}.button-group.button-small a.button,a.button.button-small{line-height:20px;line-height:1.25rem}.button:active,.button:focus{outline:none}.button.hidden{display:none}input[type=reset],input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover{background:none;border:none;-webkit-box-shadow:none;box-shadow:none;padding:0 2px 1px;width:auto}.button,.button-secondary,.button:visited{background:#f7f7f7;border-color:#ccc;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;color:#555;vertical-align:top}p .button{vertical-align:baseline}.button-secondary:focus,.button-secondary:hover,.button.focus,.button.hover,.button:focus,.button:hover{background:#fafafa;border-color:#999;color:#23282d}.button-link:focus,.button-secondary:focus,.button.focus,.button:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.button-secondary:active,.button.active,.button.active:hover,.button:active{background:#eee;border-color:#999;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);-webkit-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.button.active:focus{border-color:#5b9dd9;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8)}.button-disabled,.button-secondary.disabled,.button-secondary:disabled,.button-secondary[disabled],.button.disabled,.button:disabled,.button[disabled]{background:#f7f7f7!important;border-color:#ddd!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#a0a5aa!important;cursor:default;text-shadow:0 1px 0 #fff!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.button-link,input[type=submit].button-link{background:none;border:0;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;cursor:pointer;margin:0;outline:none;padding:0}.button-link:focus{outline:1px solid #5b9dd9}.button-primary,.download-button,.plugin-upload-form .button-primary{text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}.button-primary,.button-primary:visited,.download-button,.download-button:visited,.plugin-upload-form .button-primary,.plugin-upload-form .button-primary:visited{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff}.button-primary.focus,.button-primary.hover,.button-primary:focus,.button-primary:hover,.download-button.focus,.download-button.hover,.download-button:focus,.download-button:hover,.plugin-upload-form .button-primary.focus,.plugin-upload-form .button-primary.hover,.plugin-upload-form .button-primary:focus,.plugin-upload-form .button-primary:hover{background:#008ec2;border-color:#006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff}.button-primary.focus,.button-primary:focus,.download-button.focus,.download-button:focus,.plugin-upload-form .button-primary.focus,.plugin-upload-form .button-primary:focus{-webkit-box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}.button-primary.active,.button-primary.active:focus,.button-primary.active:hover,.button-primary:active,.download-button.active,.download-button.active:focus,.download-button.active:hover,.download-button:active,.plugin-upload-form .button-primary.active,.plugin-upload-form .button-primary.active:focus,.plugin-upload-form .button-primary.active:hover,.plugin-upload-form .button-primary:active{background:#0073aa;border-color:#006799;-webkit-box-shadow:inset 0 2px 0 #006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}.button-primary.disabled,.button-primary:disabled,.button-primary[disabled],.download-button.disabled,.download-button:disabled,.download-button[disabled],.plugin-upload-form .button-primary.disabled,.plugin-upload-form .button-primary:disabled,.plugin-upload-form .button-primary[disabled]{background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#66c6e4!important;cursor:default;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important}.button-primary.button.button-hero,.download-button.button.button-hero,.plugin-upload-form .button-primary.button.button-hero{-webkit-box-shadow:0 2px 0 #006799;box-shadow:0 2px 0 #006799}.button-primary.button.button-hero.active,.button-primary.button.button-hero.active:focus,.button-primary.button.button-hero.active:hover,.button-primary.button.button-hero:active,.download-button.button.button-hero.active,.download-button.button.button-hero.active:focus,.download-button.button.button-hero.active:hover,.download-button.button.button-hero:active,.plugin-upload-form .button-primary.button.button-hero.active,.plugin-upload-form .button-primary.button.button-hero.active:focus,.plugin-upload-form .button-primary.button.button-hero.active:hover,.plugin-upload-form .button-primary.button.button-hero:active{-webkit-box-shadow:inset 0 3px 0 #006799;box-shadow:inset 0 3px 0 #006799}.button-primary-disabled{background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#66c6e4!important;cursor:default;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important}.button-group{display:inline-block;font-size:0;position:relative;vertical-align:middle;white-space:nowrap}.button-group>.button{-webkit-border-radius:0;border-radius:0;display:inline-block;margin-right:-1px;z-index:10}.button-group>.button-primary{z-index:100}.button-group>.button:hover{z-index:20}.button-group>.button:first-child{-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.button-group>.button:last-child{-webkit-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.button-group>.button:focus{position:relative;z-index:1}@media screen and (max-width:737px){.button,.button.button-large,.button.button-small,.plugin-upload-form .button-primary{font-size:14px;height:auto;line-height:normal;margin-bottom:4px;padding:6px 14px;vertical-align:middle}}.clear:after,.clear:before,.comment-content:after,.comment-content:before,.entry-content:after,.entry-content:before,.home-below:after,.home-below:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before{content:"";display:table;table-layout:fixed}.clear:after,.comment-content:after,.entry-content:after,.home-below:after,.site-content:after,.site-footer:after,.site-header:after{clear:both}p.subheading{color:#82878c;font-weight:300;margin:-.4rem auto 2rem;text-align:center}p.intro,p.subheading{font-size:20px;font-size:1.25rem}p.aside{font-size:12.8px;font-size:.8rem}p.note{font-size:10.24px;font-size:.64rem;letter-spacing:.16px;letter-spacing:.01rem;max-width:291.038px;max-width:18.1898940355rem}input,textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=radio],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{background-color:#fff;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);color:#32373c;outline:none;-webkit-transition:border-color .05s ease-in-out;transition:border-color .05s ease-in-out}input[type=checkbox]:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}input[type=email],input[type=url]{direction:ltr}input[type=number]{height:28px;line-height:inherit}input[type=checkbox],input[type=radio]{background:#fff;border:1px solid #b4b9be;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);clear:none;color:#555;cursor:pointer;display:inline-block;height:16px;line-height:0;margin:-4px 4px 0 0;min-width:16px;outline:0;padding:0!important;text-align:center;-webkit-transition:border-color .05s ease-in-out;transition:border-color .05s ease-in-out;vertical-align:middle;width:16px;-webkit-appearance:none}input[type=checkbox]:checked:before,input[type=radio]:checked:before{display:inline-block;float:left;font:normal 21px/1 dashicons;vertical-align:middle;width:16px;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox].disabled,input[type=checkbox].disabled:checked:before,input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=radio].disabled,input[type=radio].disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before{opacity:.7}input[type=checkbox]:checked:before{color:#1e8cbe;content:"\f147";margin:-3px 0 0 -4px}input[type=radio]{-webkit-border-radius:50%;border-radius:50%;line-height:10px;margin-right:4px}input[type=radio]:checked+label:before{color:#82878c}input[type=radio]:checked:before{background-color:#1e8cbe;-webkit-border-radius:50px;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:16px;margin:4px;text-indent:-9999px;width:6px}input[type=reset]:active,input[type=reset]:hover{color:#00a0d2}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}button,input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}input,select,textarea{-webkit-border-radius:0;border-radius:0;font-size:14px;padding:3px 5px}textarea{line-height:1.4;overflow:auto;padding:2px 6px;resize:vertical}textarea.code{line-height:1.4;padding:4px 6px 1px}label{cursor:pointer;vertical-align:middle}input,select{margin:1px;padding:3px 5px}input.code{padding-top:6px}input.readonly,input[readonly],textarea.readonly,textarea[readonly]{background-color:#eee}.wp-core-ui :-moz-placeholder,:-moz-placeholder{color:#a9a9a9}input.disabled,input:disabled,select.disabled,select:disabled,textarea.disabled,textarea:disabled{background:hsla(0,0%,100%,.5);border-color:hsla(0,0%,87.1%,.75);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.04);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);color:rgba(51,51,51,.5)}input[type=file].disabled,input[type=file]:disabled,input[type=range].disabled,input[type=range]:disabled{background:none;-webkit-box-shadow:none;box-shadow:none}input.large-text,textarea.large-text{width:99%}input.regular-text{width:25em}input.small-text{padding:1px 6px;width:50px}input[type=number].small-text{width:65px}input.tiny-text{width:35px}input[type=number].tiny-text{width:45px}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;padding:6px 10px}input[type=number]{height:40px}input.code{padding-bottom:5px;padding-top:10px}input[type=checkbox]{-webkit-appearance:none;padding:10px}input[type=checkbox]:checked:before{font:normal 30px/1 dashicons;margin:-3px -5px}input[type=checkbox],input[type=radio]{height:25px;width:25px}input[type=radio]:checked:before{vertical-align:middle;width:9px;height:9px;margin:7px;line-height:16px}input,textarea{font-size:16px}input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:55px;display:inline;padding:3px 6px;margin:0 3px}input.regular-text{width:100%}label{font-size:14px}fieldset label{display:block}}a.button:active,a.button:focus,a.button:hover{text-decoration:none}.notice{background:#fff;border-left:4px solid #fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:1em 0;padding:1px 12px}.notice p{font-size:12.8px;font-size:.8rem;margin:.5em 0;padding:2px}.notice.notice-alt{-webkit-box-shadow:none;box-shadow:none}.notice.notice-large{padding:10px 20px}.notice.notice-success{border-left-color:#46b450}.notice.notice-success.notice-alt{background-color:#ecf7ed}.notice.notice-warning{border-left-color:#ffb900}.notice.notice-warning.notice-alt{background-color:#fff8e5}.notice.notice-error{border-left-color:#dc3232}.notice.notice-error.notice-alt{background-color:#fbeaea}.notice.notice-info{border-left-color:#00a0d2}.notice.notice-info.notice-alt{background-color:#e5f5fa}.error-404 .page-content,.error-404 .page-title{text-align:center}.error-404 .page-content .logo-swing{height:160px;height:10rem;margin:6rem auto;position:relative;text-align:center;width:160px;width:10rem}.error-404 .page-content .logo-swing .wp-logo{left:0;max-width:none;position:absolute;top:0;width:160px;width:10rem}@-webkit-keyframes hinge{10%{width:180px;height:180px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}15%{width:185px;height:185px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}20%{width:180px;height:180px;-webkit-transform:rotate(5deg);transform:rotate(5deg)}40%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{-webkit-transform:rotate(40deg);transform:rotate(40deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{10%{width:180px;height:180px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}15%{width:185px;height:185px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}20%{width:180px;height:180px;-webkit-transform:rotate(5deg);transform:rotate(5deg)}40%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{-webkit-transform:rotate(40deg);transform:rotate(40deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}.comments-area{margin-top:5em}.comments-area>:last-child{margin-bottom:0}.comments-area .comment-list+.comment-respond{border-top:1px solid #eaeaea}.comments-area .comment-list+.comment-respond,.comments-area .comment-navigation+.comment-respond{padding-top:1.6em}.comments-area .comments-title{margin-bottom:1.3333em}.comments-area .comment-list{list-style:none;margin:0}.comments-area .comment-list .pingback,.comments-area .comment-list .trackback,.comments-area .comment-list article{border-top:1px solid #eaeaea;padding:1.6em 0}.comments-area .comment-list article:not(:only-child){padding-bottom:0}.comments-area .comment-list article+.comment-respond{padding-bottom:1.6em}.comments-area .comment-list .children{list-style:none;margin:0}.comments-area .comment-list .children>li{padding-left:.8em}.comments-area .comment-list .alt{background:none}.comments-area .comment-author{color:#999;margin-bottom:.4em}.comments-area .comment-author .avatar{float:left;height:24px;margin-right:.8em;width:24px}.comments-area .comment-metadata,.comments-area .pingback .edit-link{color:#999;line-height:1.5}.comments-area .comment-metadata a,.comments-area .pingback .edit-link a{color:#777}.comments-area .comment-metadata{font-size:12.8px;font-size:.8rem;margin-bottom:1.6em}.comments-area .comment-metadata .edit-link,.comments-area .pingback .edit-link{margin-left:1em}.comments-area .pingback .edit-link:before{top:5px}.comments-area .comment-content ol,.comments-area .comment-content ul{margin:0 0 1.6em 1.3333em}.comments-area .comment-content>:last-child,.comments-area .comment-content li>ol,.comments-area .comment-content li>ul{margin-bottom:0}.comments-area .comment-content .reply{font-size:12px}.comments-area .comment-content .reply a{border:1px solid #eaeaea;color:#707070;display:inline-block;font-weight:700;line-height:1;margin-top:2em;padding:.4167em .8333em;text-transform:uppercase}.comments-area .comment-content .reply a:focus,.comments-area .comment-content .reply a:hover{border-color:#333;color:#333;outline:0}.comments-area .comment-reply-title a{font-weight:inherit}.comments-area .comment-form label{font-size:12.8px;font-size:.8rem;font-weight:700;display:block;letter-spacing:.04em;line-height:1.5}.comments-area .comment-form input[type=email],.comments-area .comment-form input[type=text],.comments-area .comment-form input[type=url],.comments-area .comment-form textarea{width:100%}.comments-area .comment-awaiting-moderation,.comments-area .comment-notes,.comments-area .form-allowed-tags,.comments-area .logged-in-as{font-size:16px;font-size:1rem;line-height:1.5;margin-bottom:2em}.comments-area .no-comments{border-top:1px solid #eaeaea;color:#999;font-weight:700;padding-top:1.6em}.comments-area .comment-navigation+.no-comments{border-top:0}.comments-area .form-allowed-tags code{font-family:Inconsolata,monospace}.comments-area .form-submit{margin-bottom:0}.comments-area .required{color:#c0392b}.entry-content{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}.entry-content>p:first-child{margin-top:0}.entry-content [class*=col-]~h1,.entry-content [class*=col-]~h2,.entry-content [class*=col-]~h3,.entry-content [class*=col-]~h4,.entry-content [class*=col-]~h5,.entry-content [class*=col-]~h6{clear:none}.entry-header{position:relative}.entry-header .sticky-post{font-style:italic;position:absolute;top:-12.8px;top:-.8rem}.entry-header .sticky-post,.entry-meta{color:#999;font-size:12.8px;font-size:.8rem}.entry-meta{margin-bottom:1rem}.entry-meta a{color:#777}.entry-meta>span{margin-right:1rem}.entry-meta>span :last-of-type{margin:0}.entry-meta .byline,.entry-meta .updated:not(.published),.sticky .entry-meta .posted-on{display:none}.group-blog .entry-meta .byline,.single .entry-meta .byline{display:inline}.entry-summary{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}body:not(.single):not(.search) .site-main .post{margin-bottom:3.0517578125rem;max-width:40em}.gallery{margin-bottom:1.5rem}.gallery .gallery-item{display:inline-block;margin:0;text-align:center;vertical-align:top;width:100%}.gallery.gallery-columns-2 .gallery-item{max-width:50%}.gallery.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery.gallery-columns-4 .gallery-item{max-width:25%}.gallery.gallery-columns-5 .gallery-item{max-width:20%}.gallery.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery .gallery-caption{display:block}.main-navigation{background:#0073aa;clear:both;left:0;position:absolute;top:60px;width:100%}.main-navigation ul{display:none;list-style:none;margin:0;padding-left:0}.main-navigation ul ul{-webkit-box-shadow:0 3px 3px rgba(0,0,0,.2);box-shadow:0 3px 3px rgba(0,0,0,.2);float:left;left:-999em;position:absolute;top:1.5em;z-index:99999}.main-navigation ul ul ul{left:-999em;top:0}.main-navigation ul ul li.focus>ul,.main-navigation ul ul li:hover>ul{left:100%}.main-navigation ul ul a{width:200px}.main-navigation ul li.focus>ul,.main-navigation ul li:hover>ul{left:auto}.main-navigation li{border-top:1px solid hsla(0,0%,100%,.2);padding:1rem}.main-navigation a{color:hsla(0,0%,100%,.8);display:block;font-size:12.8px;font-size:.8rem;text-decoration:none}.main-navigation a.active,.main-navigation a:hover{color:#fff}@media screen and (min-width:737px){.main-navigation a.active{border-bottom:1px solid}}.main-navigation.toggled{z-index:1}.main-navigation.toggled ul{display:block}.menu-toggle{background:transparent;border:none;color:#fff;font-size:25px;font-size:1.5625rem;height:56px;height:3.5rem;overflow:hidden;position:absolute;right:16px;right:1rem;top:-58px;width:56px;width:3.5rem;-webkit-appearance:none}.toggled .menu-toggle:before{content:"\f343"}@media screen and (min-width:737px){.menu-toggle{display:none}.main-navigation{float:right;position:static;width:auto}.main-navigation.toggled{padding:1px 0}.main-navigation ul{display:inline-block;font-size:0}.main-navigation ul li{border:0;display:inline-block;font-size:1rem;margin-right:1rem;padding:0}.main-navigation ul li:last-of-type{margin-right:0}}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}body.page .gutters .col-12{width:100%}body.page .entry-header{background:#0073aa;padding:1rem 0}body.page .entry-header .entry-title{color:#fff;font-size:25px;font-size:1.5625rem;font-weight:300;line-height:1;margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){body.page .entry-header .entry-title{padding:0 10px}}body.page .entry-header.home{padding:1.5625rem 1.143rem;text-align:center}@media screen and (min-width:737px){body.page .site-header+.site-main .entry-title{padding:initial}}body.page .entry-content,body.page .entry-footer{margin:0 auto;max-width:960px;padding:3.0517578125rem 1.5625rem}.post-navigation{margin:5em auto;padding:0}.post-navigation a{border-bottom:1px solid #eaeaea;color:#444;display:block;font-weight:600;padding:11px 0 12px;text-transform:none;width:100%}.post-navigation a:hover{color:#21759b}.post-navigation .nav-links{border-top:1px solid #eaeaea;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}.post-navigation .meta-nav{color:#777;display:block;font-size:13px;line-height:2;text-transform:uppercase}.post-navigation .nav-next{text-align:right}.pagination .nav-links{text-align:center}.pagination .nav-links .page-numbers{background-color:#f9f9f9;cursor:hand;display:inline-block;min-width:2em;padding:8px;text-align:center}.pagination .nav-links .page-numbers.dots,.pagination .nav-links .page-numbers.next,.pagination .nav-links .page-numbers.prev{background:none;font-size:.9em;width:auto}.pagination .nav-links .page-numbers.dots{cursor:inherit}@media screen and (max-width:737px){.pagination .nav-links .page-numbers.next,.pagination .nav-links .page-numbers.prev{font-size:0;min-width:0;padding:0}.pagination .nav-links .page-numbers.next:after,.pagination .nav-links .page-numbers.prev:before{background-color:#f9f9f9;display:inline-block;font-size:1rem;line-height:1.5;min-width:2em;padding:8px}.pagination .nav-links .page-numbers.prev:before{content:"\2039"}.pagination .nav-links .page-numbers.next:after{content:"\203A"}}.pagination .nav-links span.page-numbers{background-color:#f7f7f7;font-weight:700}.search-form .search-field{line-height:normal;margin:0;padding:4px 5px;vertical-align:text-bottom}body.search .gutters .col-12{width:100%}body.search .site-main{margin:0 auto;max-width:960px;padding:0 1.5625rem 3.0517578125rem}.site-content{margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){.site-content{padding:0 10px 3.0517578125rem}}@media screen and (max-width:737px){.site-content .site-main{float:none;margin:0;width:auto}}.home .site-content,.page .site-content,.site-content.page{margin:auto;max-width:none;padding:0}.site-content .page-title{font-size:20px;font-size:1.25rem;font-weight:400}.site-content .no-results{margin:0 auto 3.0517578125rem;max-width:40em;padding:0 2rem}.site-description{color:hsla(0,0%,100%,.8);font-size:20px;font-size:1.25rem;font-weight:300;margin:-.4rem auto 2rem;text-align:center}.site-header{background:#0073aa;padding:1rem 0;position:relative}.site-header .site-branding{margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){.site-header .site-branding{padding:0 10px}}.site-header.home{padding:1.5625rem 1.143rem;text-align:center}.site-title{display:inline-block;font-size:25px;font-size:1.5625rem;font-weight:300;line-height:1;margin:0 2rem 0 0;max-width:none}.site-header.home .site-title{display:inherit;font-size:61.035px;font-size:3.8146972656rem;margin:2rem 0 1rem}.widget-area{font-size:12.8px;font-size:.8rem}@media screen and (min-width:480px) and (max-width:768px){.widget-area{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.widget-area .widget{width:48%}}#wporg-footer{background-color:#f7f7f7;border-top:1px solid #dfdfdf;padding:22px 14px 65px}#wporg-footer,#wporg-footer .wrapper{clear:both;margin:0 auto;overflow:auto}#wporg-footer .wrapper{max-width:930px}#wporg-footer ul{float:left;margin-bottom:20px;margin-left:24px;overflow:auto;padding-left:0;width:135px}@media screen and (min-width:960px){#wporg-footer ul:first-child{margin-left:0}}#wporg-footer ul li{color:#bbb;font-size:14px;list-style-type:none;margin-bottom:1px}#wporg-footer ul li a{text-decoration:none;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}#wporg-footer ul li a:hover{color:#0073aa;text-decoration:underline}#wporg-footer .social-media-links .dashicons{margin-right:4px}#wporg-footer .cip{clear:both;color:#ccc;float:none;font-size:12.8px;font-size:.8rem;letter-spacing:.3em;margin:35px auto 0;text-align:center;text-transform:uppercase}#wporg-footer .cip.cip-image{background:url(//s.w.org/style/images/codeispoetry.png?1=) 50% no-repeat;-webkit-background-size:190px 15px;background-size:190px 15px;height:15px;text-indent:-9999px;width:190px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:1.5dppx),only screen and (min-resolution:144dpi){#wporg-footer .cip.cip-image{background-image:url(//s.w.org/style/images/codeispoetry-2x.png?1=)}}@media screen and (min-width:561px) and (max-width:959px){#wporg-footer .wrapper{max-width:600px}#wporg-footer ul{margin-left:2%;width:32%}#wporg-footer ul:nth-child(3n+1){margin-left:0}#wporg-footer ul:nth-child(4n){clear:both}}@media screen and (max-width:560px){#wporg-footer .wrapper{max-width:360px}#wporg-footer ul{margin-left:4%;width:48%}#wporg-footer ul:nth-child(odd){margin-left:0;clear:both}}#wporg-header{background:#23282d;height:140px;position:relative;text-align:center;width:100%}#wporg-header .wrapper{margin:0 auto;max-width:960px}#wporg-header h1{display:inline-block;margin:auto;width:303px}#wporg-header h1 a{background:url(//s.w.org/style/images/wporg-logo.svg?3=) 0 no-repeat;-webkit-background-size:290px 46px;background-size:290px 46px;display:block;height:88px;text-indent:-9999px}#wporg-header h2.rosetta{clear:none;color:#dfdfdf;font-family:Georgia,Times New Roman,serif;font-size:30px;margin:0 0 0 60px}#wporg-header h2.rosetta a{border-bottom:none;color:#dfdfdf;display:block;height:52px;line-height:22px;padding:0}#wporg-header h2.rosetta a:hover{text-decoration:none}#wporg-header #wporg-header-menu{background:#23282d;left:-75%;list-style:none;margin:0;max-width:75%;min-width:200px;position:absolute;text-align:left;top:100%;-webkit-transition:left .3s;transition:left .3s;z-index:100000}#wporg-header #wporg-header-menu.toggled{left:0}#wporg-header ul li{list-style-type:none;position:relative}#wporg-header ul li a{color:#eee;display:block;font-family:Open Sans,Helvetica,Arial,Liberation Sans,sans-serif;font-size:13px;font-weight:600;height:34px;line-height:34px;margin:0 4px;padding:10px 30px;text-decoration:none}#wporg-header ul li a.subcurrent{font-weight:700}@media (max-width:768px){#wporg-header ul li a{height:auto}}#wporg-header ul li.current-menu-item a,#wporg-header ul li.current_page_parent a,#wporg-header ul li a.current,#wporg-header ul li a:hover{color:#00a0d2}#wporg-header ul li#download,#wporg-header ul li.download{float:right;height:34px;margin-right:14px;overflow:hidden;padding:0 0 34px}@media screen and (max-width:767px){#wporg-header ul li#download,#wporg-header ul li.download{display:block;float:none;margin:10px 20px 20px;padding-bottom:0;height:auto}#wporg-header ul li#download a,#wporg-header ul li.download a{padding:4px 10px;text-align:center}}#wporg-header ul li#download a,#wporg-header ul li.download a{margin:0;padding:0 16px}#wporg-header ul li#download a:hover,#wporg-header ul li.download a:hover{color:#eee}#wporg-header ul li#download.current,#wporg-header ul li#download.current-menu-item,#wporg-header ul li#download .uparrow,#wporg-header ul li.download.current,#wporg-header ul li.download.current-menu-item,#wporg-header ul li.download .uparrow{display:none}#wporg-header ul li .nav-submenu{clip:rect(1px,1px,1px,1px);height:1px;left:-2px;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;z-index:99999}#wporg-header ul li .nav-submenu li a{display:inline-block;height:24px;line-height:24px;margin:0;white-space:nowrap}@media screen and (min-width:768px){#wporg-header #head-search{float:right;margin-right:14px;padding-top:30px}}#wporg-header #head-search form{border-bottom:1px solid #3f3f3f;display:inline-block;margin-left:60px;width:288px}#wporg-header #head-search form input.text{background:#191e23;border:0;-webkit-border-radius:0;border-radius:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;color:#b4b9be;float:left;font-family:Open Sans,sans-serif;font-size:12px;height:24px;margin:0;outline:none;padding:3px;vertical-align:top;width:256px}#wporg-header #head-search form input.text::-moz-placeholder{color:#eee}@media screen and (max-width:480px){#wporg-header #head-search form input.text{width:216px}}#wporg-header #head-search form .button{background:#191e23 url(//s.w.org/wp-includes/images/admin-bar-sprite.png?d=20120831) no-repeat 2px 5px;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;float:left;height:30px;margin:0;padding:0;text-shadow:none!important;width:26px}@media screen and (max-width:480px){#wporg-header #head-search form{width:248px}}@media screen and (min-width:480px){#wporg-header #head-search form{margin-left:0}}@media screen and (min-width:768px){#wporg-header{height:120px;text-align:inherit}#wporg-header h1{float:left;padding-left:10px}#wporg-header h2.rosetta{float:left;margin-left:0;padding:36px 27px 0}#wporg-header #headline h2{text-rendering:optimizeLegibility}#wporg-header #wporg-header-menu{float:left;height:46px;list-style:none;margin:-15px 0 0;max-width:inherit;min-width:0;padding:0;position:static;width:100%}#wporg-header ul li{float:left;position:relative}#wporg-header ul li a{height:46px;padding:0 6px}#wporg-header ul li a.current~.uparrow{border-bottom:9px solid #f7f7f7;border-left:9px solid transparent;border-right:9px solid transparent;height:0;margin:-8px auto 0;width:0}#wporg-header ul li.current-menu-item:after,#wporg-header ul li.current_page_parent:after{border-bottom:9px solid #f7f7f7;border-left:9px solid transparent;border-right:9px solid transparent;content:"";height:0;left:50%;margin:-8px 0 0 -9px;position:absolute;width:0}#wporg-header ul li .nav-submenu:hover~.uparrow,#wporg-header ul li:hover .nav-submenu~.uparrow{border-bottom:9px solid #32373c;border-left:9px solid transparent;border-right:9px solid transparent;height:0;margin:-10px auto 0;width:0}#wporg-header ul li .nav-submenu{background:#32373c;border:1px solid #32373c;border-top:0;margin-top:-1px;min-width:0}#wporg-header ul li .nav-submenu li{float:none}#wporg-header ul li .nav-submenu li a{height:34px;line-height:34px}#wporg-header .nav-menu .focus>ul,#wporg-header .nav-menu ul li:hover>ul,#wporg-header ul.nav-menu .focus>ul,#wporg-header ul.nav-menu li:hover>ul{clip:inherit;height:inherit;overflow:inherit;width:inherit}#wporg-header ul li.current-menu-item:after,#wporg-header ul li.current_page_parent:after,#wporg-header ul li a.current~.uparrow{border-bottom-color:#0073aa}}.page-download #wporg-header #download,.page-parent-download #wporg-header #download{display:none}#mobile-menu-button{background:none;border:none;-webkit-box-shadow:none;box-shadow:none;display:block;float:left;font-family:dashicons;font-size:16px;font-style:normal;font-weight:400;left:10px;line-height:1;padding:1px;position:absolute;text-align:center;text-decoration:inherit;text-shadow:none;top:75px;-webkit-transition:color .1s ease-in;transition:color .1s ease-in;vertical-align:top;-webkit-font-smoothing:antialiased}#mobile-menu-button:before{border:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#888;content:"\f228";display:inline-block;float:left;font:normal 50px/1 Dashicons;margin:0;outline:none;padding:3px;text-decoration:none;vertical-align:middle;-webkit-font-smoothing:antialiased}@media screen and (min-width:768px){#mobile-menu-button{display:none}}#download-mobile{background:#f7f7f7;border-bottom:1px solid #ddd}#download-mobile .wrapper{padding:20px 0;text-align:center}#download-mobile span.download-ready{font-size:1.6em;margin:0 .25em}#download-mobile a.download-button{font-size:1.6em;height:inherit;margin:10px .25em;padding:10px 15px}.search-form{font-size:0;margin-bottom:2rem;max-width:100%;position:relative}.search-form .search-field{-webkit-appearance:none;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;display:block;font-size:16px;font-size:1rem;line-height:1.5;margin:0 auto;max-width:100%;padding:.5rem;vertical-align:initial;width:363.797px;width:22.7373675443rem}.search-form .button-search{border-top:none;border-left:none;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;font-size:16px;font-size:1rem;margin:0;position:relative;right:auto;top:auto;vertical-align:top}.search-form .button-search:active{background:#006799;border-right:1px solid #006799;-webkit-box-shadow:none;box-shadow:none}.search-form .button-search .dashicons{font-size:16px;font-size:1rem;vertical-align:text-bottom}.site-header .search-form{display:inline-block}.site-header.home .search-form .button-search,.site-main .search-form .button-search{background:transparent;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#32373c;display:block;height:45px;padding:.5rem 1rem;position:absolute;right:0;text-shadow:none;top:0}.site-header.home .search-form .button-search:focus,.site-main .search-form .button-search:focus{-webkit-box-shadow:0 0 2px 1px #33b3db;box-shadow:0 0 2px 1px #33b3db}.site-header.home .search-form .button-search:active,.site-main .search-form .button-search:active{background:transparent;border:none;-webkit-transform:none;-ms-transform:none;transform:none}.site-header:not(.home) .search-form{margin:0;padding:1rem 1rem 1rem 1.5rem}@media screen and (min-width:737px){.site-header:not(.home) .search-form{padding:0}}.site-header:not(.home) .search-form .search-field{border:0;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px;display:inline-block;font-size:16px;font-size:1rem;padding:5px 10px;position:relative;width:auto}@media screen and (min-width:737px){.site-header:not(.home) .search-form .search-field{font-size:.64rem;width:7rem}.site-header:not(.home) .search-form .search-field+.button-search{display:inline-block;margin-bottom:0}}@media screen and (min-width:60em){.site-header:not(.home) .search-form .search-field{width:10rem}}.site-main .search-form .search-field{border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);padding:.5rem;width:100%}p a{border-bottom:none}p a:hover{border:none}details{margin:0 0 15px}summary{list-style-type:disc;font-weight:700;cursor:pointer}.wrap{max-width:980px}.site-content{max-width:none;padding:0}.site-title a{font-weight:300}.site-title a,.site-title a:active,.site-title a:focus,.site-title a:hover{border-bottom:none;color:#fff;text-decoration:none}.site-main figcaption{color:#666;font-style:italic}@media screen and (max-width:960px){.site-main figcaption{margin-left:20px;margin-right:20px}}body.archive #main,body.author #main,body.home #main,body.post-type-archive-photo #main,body.search #main{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));margin:0 auto 3rem;padding:0 1.5625rem}@media screen and (min-width:737px){body.archive #main,body.author #main,body.home #main,body.post-type-archive-photo #main,body.search #main{padding:0 10px}}body.archive #main article,body.author #main article,body.home #main article,body.post-type-archive-photo #main article,body.search #main article{max-height:200px;height:200px;margin:0 .5rem 1rem;text-align:center}body.archive #main article.photo-placeholder,body.author #main article.photo-placeholder,body.home #main article.photo-placeholder,body.post-type-archive-photo #main article.photo-placeholder,body.search #main article.photo-placeholder{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}body.archive #main article.photo-placeholder .entry-content,body.author #main article.photo-placeholder .entry-content,body.home #main article.photo-placeholder .entry-content,body.post-type-archive-photo #main article.photo-placeholder .entry-content,body.search #main article.photo-placeholder .entry-content{background-color:#eee}body.archive #main .grid-photo,body.archive #main article.photo-placeholder .entry-content,body.author #main .grid-photo,body.author #main article.photo-placeholder .entry-content,body.home #main .grid-photo,body.home #main article.photo-placeholder .entry-content,body.post-type-archive-photo #main .grid-photo,body.post-type-archive-photo #main article.photo-placeholder .entry-content,body.search #main .grid-photo,body.search #main article.photo-placeholder .entry-content{height:200px;width:300px;-o-object-fit:cover;object-fit:cover;-webkit-transition:all .25s;transition:all .25s}body.archive #main .grid-photo:active,body.archive #main .grid-photo:hover,body.archive #main article.photo-placeholder .entry-content:active,body.archive #main article.photo-placeholder .entry-content:hover,body.author #main .grid-photo:active,body.author #main .grid-photo:hover,body.author #main article.photo-placeholder .entry-content:active,body.author #main article.photo-placeholder .entry-content:hover,body.home #main .grid-photo:active,body.home #main .grid-photo:hover,body.home #main article.photo-placeholder .entry-content:active,body.home #main article.photo-placeholder .entry-content:hover,body.post-type-archive-photo #main .grid-photo:active,body.post-type-archive-photo #main .grid-photo:hover,body.post-type-archive-photo #main article.photo-placeholder .entry-content:active,body.post-type-archive-photo #main article.photo-placeholder .entry-content:hover,body.search #main .grid-photo:active,body.search #main .grid-photo:hover,body.search #main article.photo-placeholder .entry-content:active,body.search #main article.photo-placeholder .entry-content:hover{border:4px solid #eee}body.archive #main .entry-content figcaption,body.archive #main .entry-footer,body.archive #main .entry-header,body.author #main .entry-content figcaption,body.author #main .entry-footer,body.author #main .entry-header,body.home #main .entry-content figcaption,body.home #main .entry-footer,body.home #main .entry-header,body.post-type-archive-photo #main .entry-content figcaption,body.post-type-archive-photo #main .entry-footer,body.post-type-archive-photo #main .entry-header,body.search #main .entry-content figcaption,body.search #main .entry-footer,body.search #main .entry-header{display:none}body.archive #main .page-footer,body.author #main .page-footer,body.home #main .page-footer,body.post-type-archive-photo #main .page-footer,body.search #main .page-footer{grid-column:1/-1;margin-top:3rem}body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{margin:0 auto 60px;overflow:auto}body.archive aside.widget-area .widget,body.author aside.widget-area .widget,body.home aside.widget-area .widget,body.post-type-archive-photo aside.widget-area .widget,body.search aside.widget-area .widget{float:left;width:30%;margin-right:5%}body.archive aside.widget-area .widget:last-child,body.author aside.widget-area .widget:last-child,body.home aside.widget-area .widget:last-child,body.post-type-archive-photo aside.widget-area .widget:last-child,body.search aside.widget-area .widget:last-child{margin-right:0}body.archive aside.widget-area .widgettitle,body.author aside.widget-area .widgettitle,body.home aside.widget-area .widgettitle,body.post-type-archive-photo aside.widget-area .widgettitle,body.search aside.widget-area .widgettitle{margin-top:0}@media screen and (max-width:960px){body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{margin-left:20px;margin-right:20px}}@media screen and (max-width:632px){body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{display:block;margin-left:20px;margin-right:20px}body.archive aside.widget-area .widget,body.author aside.widget-area .widget,body.home aside.widget-area .widget,body.post-type-archive-photo aside.widget-area .widget,body.search aside.widget-area .widget{float:none;width:100%;margin-right:0}}body.home #main,body.post-type-archive-photo #main{margin:2.5rem auto}body.archive .site-main .page-header,body.author .site-main .page-header,body.search .site-main .page-header{grid-column:1/-1;margin-bottom:1rem;width:100%}body.archive .site-main,body.author .site-main,body.post-type-archive-photo .site-main,body.search .site-main,body.single-photo .site-main{float:none;max-width:960px}body.single-photo #main{margin:40px auto 60px}body.single-photo .entry-header{margin-bottom:1rem}body.single-photo .entry-footer{margin-top:2rem}@media screen and (max-width:960px){body.single-photo .entry-footer,body.single-photo .entry-header{margin-left:20px;margin-right:20px}}body.page #main{margin:0 auto 2rem}body.page .entry-header{background-color:#fff;margin:0 auto;padding:3.0517578125rem 1.5625rem 0}body.page .entry-header .entry-title{color:#32373c;font-weight:400}.site-content .no-results{grid-column:1/-1;margin:0 auto;max-width:600px;padding:unset;width:100%}#wporg-photo-upload{border:none;margin:0;padding:0}#wporg-photo-upload .ugc-notice{border:none;border-left:6px solid;-webkit-border-radius:0;border-radius:0;padding-left:.75rem}#wporg-photo-upload .ugc-notice.failure{border-color:#dc3232;background-color:#fbeaea}#wporg-photo-upload .ugc-notice.success{border-color:#64b450;background-color:#eff7ed}#wporg-photo-upload .ugc-help{color:#666;font-size:smaller;margin-top:0}#wporg-photo-upload input[type=file]{margin-left:0;padding-left:0}@media screen and (max-width:600px){#wporg-photo-upload input[type=text]{width:-webkit-calc(100% - 10px);width:calc(100% - 10px)}}.photo-upload-disabled{background-color:#fbeaea;border-left:5px solid red;margin-top:4rem;padding:2rem}.photos-all-link{margin-right:1.5rem}.navigation,.photos-all-link{grid-column:1/-1;text-align:right}.navigation{margin-top:1rem;padding-right:1rem;width:100%}.navigation .nav-links{text-align:inherit}.photo-author img{-webkit-border-radius:50%;border-radius:50%;margin-right:.4rem;vertical-align:middle}.photo-meta{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.photo-meta .column{-webkit-box-flex:2;-webkit-flex:2 1 auto;-moz-box-flex:2;-ms-flex:2 1 auto;flex:2 1 auto;margin-bottom:2rem}.photo-meta .column:last-child{-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:right}@media screen and (max-width:600px){.photo-meta .column:last-child{text-align:left}}.photo-meta .photo-exif{list-style:none;margin:0}.photo-meta .photo-exif strong{display:inline-block;min-width:80px}.photo-meta .photo-meta-label{display:inline-block;min-width:100px}.photo-meta .photo-dimensions{margin-top:1rem}.photos-download{list-style:none;margin:0;padding:0;display:grid;position:relative;float:right}.photos-download .download-title{border:none;font-family:inherit;display:-webkit-inline-box;display:-webkit-inline-flex;display:-moz-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.photos-download .download-title:after{content:"";border:.35rem solid transparent;border-top-color:hsla(0,0%,100%,.9);margin-left:.5em;-webkit-transform:translateY(.25em);-ms-transform:translateY(.25em);transform:translateY(.25em)}.photos-download .download-menu{display:grid;list-style:none;margin:0;background-color:#fff;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 .15em .25em rgba(0,0,0,.25);box-shadow:0 .15em .25em rgba(0,0,0,.25);padding:.5em 0;position:absolute;min-width:15ch;left:40%;top:100%;-webkit-transform:rotateX(-90deg) translateX(-50%);transform:rotateX(-90deg) translateX(-50%);-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;visibility:hidden;opacity:.3;-webkit-transition:all .1s ease-out 80ms;transition:all .1s ease-out 80ms}.photos-download .download-menu:focus-within .dropdown__menu,.photos-download .download-menu:hover .dropdown__menu{opacity:1;-webkit-transform:rotateX(0) translateX(-50%);transform:rotateX(0) translateX(-50%);visibility:visible}.photos-download .download-menu a{display:block;padding:.5em;opacity:0;text-decoration:none;-webkit-transition:all .1s ease-out 80ms;transition:all .1s ease-out 80ms}.photos-download .download-menu a:hover{background-color:rgba(0,133,186,.15)}.photos-download .download-menu a:focus{outline:none;background-color:rgba(0,133,186,.25)}.photos-download .download-menu li{padding:0}.photos-download:focus-within .download-title,.photos-download:hover .download-title{border-top-color:pink}.photos-download:focus-within .download-menu,.photos-download:hover .download-menu{opacity:1;-webkit-transform:rotateX(0) translateX(-50%);transform:rotateX(0) translateX(-50%);visibility:visible}.photos-download:focus-within .download-menu a,.photos-download:hover .download-menu a{opacity:1}.photos-download:focus-within:after,.photos-download:hover:after{opacity:1}.photos-download .photo-dimensions{font-size:smaller;display:block}.photos-categories,.photos-colors{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;list-style:none;margin:0;padding:0}.photos-categories li,.photos-colors li{padding:0 1rem}.photos-colors li:before{content:"\2022";font-size:36px;font-weight:700;line-height:16px;line-height:1rem;vertical-align:middle;content:" ";border:1px solid #000;-webkit-border-radius:50%;border-radius:50%;display:inline-block;height:16px;height:1rem;margin-right:.3rem;width:16px;width:1rem}.color-black:before,.taxonomy-photo_color-black{background-color:#000}.color-blue:before,.taxonomy-photo_color-blue{background-color:#00f}.color-brown:before,.taxonomy-photo_color-brown{background-color:brown}.color-gray:before,.taxonomy-photo_color-gray{background-color:grey}.color-green:before,.taxonomy-photo_color-green{background-color:green}.color-orange:before,.taxonomy-photo_color-orange{background-color:orange}.color-purple:before,.taxonomy-photo_color-purple{background-color:#639}.color-pink:before,.taxonomy-photo_color-pink{background-color:pink}.color-red:before,.taxonomy-photo_color-red{background-color:red}.color-violet:before,.taxonomy-photo_color-violet{background-color:violet}.color-white:before,.taxonomy-photo_color-white{background-color:#fff}.color-yellow:before,.taxonomy-photo_color-yellow{background-color:#ff0}body.page .taxonomy-photo_color{-webkit-box-align:end;-webkit-align-items:flex-end;-moz-box-align:end;-ms-flex-align:end;align-items:flex-end;border:1px solid #ddd;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}body.page .taxonomy-photo_color.taxonomy-photo_color .entry-content span{background-color:#ddd}body.page .taxonomy-photo_color .entry-content{-webkit-box-flex:1;-webkit-flex:1 0 auto;-moz-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;margin:0;padding:0;position:relative}body.page .taxonomy-photo_color .entry-content span{background-color:#fff;display:block;min-height:60.8px;min-height:3.8rem;opacity:.9}body.page .taxonomy-photo_color .entry-content a{bottom:-60.8px;bottom:-3.8rem;height:60.8px;height:3.8rem;padding-top:1rem;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);width:100%}div.upload-checkbox-wrapper{margin:1rem 0}div.upload-checkbox-wrapper input[type=checkbox]{margin-top:0}div.upload-checkbox-wrapper div{padding-left:25px}div.upload-checkbox-wrapper input{margin-left:-25px}@media screen and (max-width:782px){div.upload-checkbox-wrapper div{margin:.5rem 0;padding-left:35px}div.upload-checkbox-wrapper input{margin-left:-35px}}#wporg-photo-upload label.error{background-color:#fbeaea;border-left:5px solid red;padding:.1rem .3rem}.taxonomy-photo_orientation .entry-content{background-color:#eee}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-landscape{max-height:136px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-landscape .entry-content{max-width:300px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-portrait{height:250px;max-height:250px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-portrait .entry-content{height:250px;width:200px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-square .entry-content{width:136px}.banner{background-color:#fff8dc;margin:2rem;padding:1rem 2rem;text-align:center}
     1[class*=col-]{margin:inherit}.row{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:768px){.row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}}.row.gutters>.row{margin-left:-2%}@media (max-width:768px){.row.gutters>.row{margin-left:0}}.row.gutters>.row>[class*=col-]{margin-left:2%}@media (max-width:768px){.row.gutters>.row>[class*=col-]{margin-left:0}}.row.around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.row.between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-moz-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.row.auto .col{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.col-1{width:8.3333333333%}.offset-1{margin-left:8.3333333333%}.col-2{width:16.6666666667%}.offset-2{margin-left:16.6666666667%}.col-3{width:25%}.offset-3{margin-left:25%}.col-4{width:33.3333333333%}.offset-4{margin-left:33.3333333333%}.col-5{width:41.6666666667%}.offset-5{margin-left:41.6666666667%}.col-6{width:50%}.offset-6{margin-left:50%}.col-7{width:58.3333333333%}.offset-7{margin-left:58.3333333333%}.col-8{width:66.6666666667%}.offset-8{margin-left:66.6666666667%}.col-9{width:75%}.offset-9{margin-left:75%}.col-10{width:83.3333333333%}.offset-10{margin-left:83.3333333333%}.col-11{width:91.6666666667%}.offset-11{margin-left:91.6666666667%}.col-12{width:100%}.offset-12{margin-left:100%}.gutters>.col-1{width:6.33333%}.gutters>.col-1:nth-child(n+13){margin-top:2%}.gutters>.offset-1{margin-left:10.33333%!important}.gutters>.col-2{width:14.66667%}.gutters>.col-2:nth-child(n+7){margin-top:2%}.gutters>.offset-2{margin-left:18.66667%!important}.gutters>.col-3{width:23%}.gutters>.col-3:nth-child(n+5){margin-top:2%}.gutters>.offset-3{margin-left:27%!important}.gutters>.col-4{width:31.33333%}.gutters>.col-4:nth-child(n+4){margin-top:2%}.gutters>.offset-4{margin-left:35.33333%!important}.gutters>.col-5{width:39.66667%}.gutters>.offset-5{margin-left:43.66667%!important}.gutters>.col-6{width:48%}.gutters>.col-6:nth-child(n+3){margin-top:2%}.gutters>.offset-6{margin-left:52%!important}.gutters>.col-7{width:56.33333%}.gutters>.offset-7{margin-left:60.33333%!important}.gutters>.col-8{width:64.66667%}.gutters>.offset-8{margin-left:68.66667%!important}.gutters>.col-9{width:73%}.gutters>.offset-9{margin-left:77%!important}.gutters>.col-10{width:81.33333%}.gutters>.offset-10{margin-left:85.33333%!important}.gutters>.col-11{width:89.66667%}.gutters>.offset-11{margin-left:93.66667%!important}.gutters>.col-12{width:98%}.gutters>.offset-12{margin-left:102%!important}@media (max-width:768px){[class*=" offset-"],[class^=offset-]{margin-left:0}}.first{-webkit-box-ordinal-group:0;-webkit-order:-1;-moz-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}@media (max-width:768px){.row [class*=col-]{margin-left:0;width:100%}.row.gutters [class*=col-]{margin-bottom:16px}.first-sm{-webkit-box-ordinal-group:0;-webkit-order:-1;-moz-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.last-sm{-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}}.gutters .column.push-left,.push-left{margin-right:auto}.gutters .column.push-right,.push-right{margin-left:auto}.gutters .column.push-center,.push-center{margin-left:auto;margin-right:auto}.gutters .column.push-middle,.push-middle{margin-top:auto;margin-bottom:auto}.push-bottom{margin-top:auto}@media (max-width:768px){.gutters .column.push-left-sm,.push-left-sm{margin-left:0}.gutters .column.push-center-sm,.push-center-sm{margin-left:auto;margin-right:auto}.push-top-sm{margin-top:0}}.align-middle{-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.align-right{-webkit-box-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.align-center{-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:768px){.align-left-sm{-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.float-right{float:right}.float-left{float:left}@media (max-width:768px){.float-left,.float-right{float:none}}.fixed{position:fixed;top:0;left:0;z-index:100;width:100%}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}optgroup{font-weight:700}table{border-spacing:0}td,th{padding:0}p{margin:1rem 0}cite,dfn,em,i{font-style:italic}blockquote{margin:0 1.5rem}address{margin:0 0 1.5rem}pre{background:#eee;font-family:Courier\ 10 Pitch,Courier,monospace;line-height:1.6;margin-bottom:1.6rem;max-width:100%;overflow:auto;padding:1.6rem}code,kbd,pre,tt,var{font-size:15px;font-size:.9375rem}code,kbd,tt,var{font-family:Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#fff9c0;text-decoration:none}big{font-size:125%}html{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*,:after,:before{-webkit-box-sizing:inherit;-moz-box-sizing:inherit;box-sizing:inherit}body{background:#fff}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-left:2px solid #767676;color:#767676;margin:1rem 0;padding-left:.8rem}blockquote cite{font-size:12.8px;font-size:.8rem}figure{margin:0}hr{background-color:#eee;border:0;height:2px;margin:5rem auto}img{height:auto;max-width:100%}h1,h2,h3,h4,h5,h6{font-family:Open Sans,sans-serif;clear:both;line-height:1.5;margin:2rem 0 1rem}.h1,h1{font-size:39.062px;font-size:2.44140625rem}.h1,.h2,h1,h2{font-weight:300}.h2,h2{font-size:31.25px;font-size:1.953125rem}.h3,h3{font-size:25px;font-size:1.5625rem;font-weight:400}.h4,h4{font-size:20px;font-size:1.25rem;color:#32373c;font-weight:600;padding:0}.h5,h5{font-size:16px;font-size:1rem;letter-spacing:.16px;letter-spacing:.01rem}.h5,.h6,h5,h6{font-weight:600;text-transform:uppercase}.h6,h6{font-size:12.8px;font-size:.8rem;letter-spacing:.8px}a{color:#0073aa;text-decoration:none}a:active,a:focus,a:hover{text-decoration:underline}a:focus{outline:thin dotted}a:active,a:hover{outline:0}li>a,p a{text-decoration:underline}li>a:hover,p a:hover{color:#d54e21}ol,ul{margin:0 0 1.5em 1.5em;padding:0}ul{list-style:square}ol{list-style:decimal}ol.unmarked-list,ul.unmarked-list{list-style:none;padding-left:0}li>ol,li>ul{margin-bottom:0}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table{border:1px solid #eee;border-collapse:collapse;font-size:12.8px;font-size:.8rem;margin:0 0 1rem;padding:0;width:100%}table thead{background:#32373c;color:#fff}table td,table th{border:1px solid #eee;font-weight:400;margin:0;padding:.4rem;text-align:left;vertical-align:top}table tbody tr:nth-child(2n){background:#f7f7f7}html{font-size:100%}body,button,input,select,textarea{color:#32373c;font-family:Open Sans,sans-serif;font-size:100%;line-height:1.5}@media screen and (min-width:737px){html{font-size:1.125rem}}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.screen-reader-text:focus{background-color:#f1f1f1;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.site-content[tabindex="-1"]:focus{outline:0}.no-js .hide-if-no-js{display:none}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto}@media screen and (max-width:480px){.alignleft,.alignright{display:block;float:none;margin-left:auto;margin-right:auto}}.button,.button-primary,.button-secondary,.plugin-upload-form .button-primary{border:1px solid;-webkit-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block;font-size:12.8px;font-size:.8rem;height:25px;height:1.5625rem;line-height:1;margin:0;padding:0 .8rem;text-decoration:none;white-space:nowrap;-webkit-appearance:none}button::-moz-focus-inner,input[type=button]::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0;padding:0}.button-group.button-xl .button,.button.button-xl{font-size:16px;font-size:1rem;height:39.062px;height:2.44140625rem;line-height:1;padding:0 1.5rem}.button-group.button-large .button,.button.button-large{height:31.25px;height:1.953125rem;line-height:1;padding:0 1rem}.button-group.button-small .button,.button.button-small{font-size:10.24px;font-size:.64rem;height:20px;height:1.25rem;line-height:1;padding:0 .5rem}a.button,a.button-primary,a.button-secondary{line-height:25px;line-height:1.5625rem}.button-group.button-large a.button,a.button.button-large{line-height:31.25px;line-height:1.953125rem}.button-group.button-xl a.button,a.button.button-xl{line-height:39.062px;line-height:2.44140625rem}.button-group.button-small a.button,a.button.button-small{line-height:20px;line-height:1.25rem}.button:active,.button:focus{outline:none}.button.hidden{display:none}input[type=reset],input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover{background:none;border:none;-webkit-box-shadow:none;box-shadow:none;padding:0 2px 1px;width:auto}.button,.button-secondary,.button:visited{background:#f7f7f7;border-color:#ccc;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;color:#555;vertical-align:top}p .button{vertical-align:baseline}.button-secondary:focus,.button-secondary:hover,.button.focus,.button.hover,.button:focus,.button:hover{background:#fafafa;border-color:#999;color:#23282d}.button-link:focus,.button-secondary:focus,.button.focus,.button:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.button-secondary:active,.button.active,.button.active:hover,.button:active{background:#eee;border-color:#999;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);-webkit-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}.button.active:focus{border-color:#5b9dd9;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8)}.button-disabled,.button-secondary.disabled,.button-secondary:disabled,.button-secondary[disabled],.button.disabled,.button:disabled,.button[disabled]{background:#f7f7f7!important;border-color:#ddd!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#a0a5aa!important;cursor:default;text-shadow:0 1px 0 #fff!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.button-link,input[type=submit].button-link{background:none;border:0;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;cursor:pointer;margin:0;outline:none;padding:0}.button-link:focus{outline:1px solid #5b9dd9}.button-primary,.download-button,.plugin-upload-form .button-primary{text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}.button-primary,.button-primary:visited,.download-button,.download-button:visited,.plugin-upload-form .button-primary,.plugin-upload-form .button-primary:visited{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff}.button-primary.focus,.button-primary.hover,.button-primary:focus,.button-primary:hover,.download-button.focus,.download-button.hover,.download-button:focus,.download-button:hover,.plugin-upload-form .button-primary.focus,.plugin-upload-form .button-primary.hover,.plugin-upload-form .button-primary:focus,.plugin-upload-form .button-primary:hover{background:#008ec2;border-color:#006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff}.button-primary.focus,.button-primary:focus,.download-button.focus,.download-button:focus,.plugin-upload-form .button-primary.focus,.plugin-upload-form .button-primary:focus{-webkit-box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}.button-primary.active,.button-primary.active:focus,.button-primary.active:hover,.button-primary:active,.download-button.active,.download-button.active:focus,.download-button.active:hover,.download-button:active,.plugin-upload-form .button-primary.active,.plugin-upload-form .button-primary.active:focus,.plugin-upload-form .button-primary.active:hover,.plugin-upload-form .button-primary:active{background:#0073aa;border-color:#006799;-webkit-box-shadow:inset 0 2px 0 #006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}.button-primary.disabled,.button-primary:disabled,.button-primary[disabled],.download-button.disabled,.download-button:disabled,.download-button[disabled],.plugin-upload-form .button-primary.disabled,.plugin-upload-form .button-primary:disabled,.plugin-upload-form .button-primary[disabled]{background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#66c6e4!important;cursor:default;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important}.button-primary.button.button-hero,.download-button.button.button-hero,.plugin-upload-form .button-primary.button.button-hero{-webkit-box-shadow:0 2px 0 #006799;box-shadow:0 2px 0 #006799}.button-primary.button.button-hero.active,.button-primary.button.button-hero.active:focus,.button-primary.button.button-hero.active:hover,.button-primary.button.button-hero:active,.download-button.button.button-hero.active,.download-button.button.button-hero.active:focus,.download-button.button.button-hero.active:hover,.download-button.button.button-hero:active,.plugin-upload-form .button-primary.button.button-hero.active,.plugin-upload-form .button-primary.button.button-hero.active:focus,.plugin-upload-form .button-primary.button.button-hero.active:hover,.plugin-upload-form .button-primary.button.button-hero:active{-webkit-box-shadow:inset 0 3px 0 #006799;box-shadow:inset 0 3px 0 #006799}.button-primary-disabled{background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;color:#66c6e4!important;cursor:default;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important}.button-group{display:inline-block;font-size:0;position:relative;vertical-align:middle;white-space:nowrap}.button-group>.button{-webkit-border-radius:0;border-radius:0;display:inline-block;margin-right:-1px;z-index:10}.button-group>.button-primary{z-index:100}.button-group>.button:hover{z-index:20}.button-group>.button:first-child{-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.button-group>.button:last-child{-webkit-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.button-group>.button:focus{position:relative;z-index:1}@media screen and (max-width:737px){.button,.button.button-large,.button.button-small,.plugin-upload-form .button-primary{font-size:14px;height:auto;line-height:normal;margin-bottom:4px;padding:6px 14px;vertical-align:middle}}.clear:after,.clear:before,.comment-content:after,.comment-content:before,.entry-content:after,.entry-content:before,.home-below:after,.home-below:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before{content:"";display:table;table-layout:fixed}.clear:after,.comment-content:after,.entry-content:after,.home-below:after,.site-content:after,.site-footer:after,.site-header:after{clear:both}p.subheading{color:#82878c;font-weight:300;margin:-.4rem auto 2rem;text-align:center}p.intro,p.subheading{font-size:20px;font-size:1.25rem}p.aside{font-size:12.8px;font-size:.8rem}p.note{font-size:10.24px;font-size:.64rem;letter-spacing:.16px;letter-spacing:.01rem;max-width:291.038px;max-width:18.1898940355rem}input,textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=radio],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{background-color:#fff;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);color:#32373c;outline:none;-webkit-transition:border-color .05s ease-in-out;transition:border-color .05s ease-in-out}input[type=checkbox]:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}input[type=email],input[type=url]{direction:ltr}input[type=number]{height:28px;line-height:inherit}input[type=checkbox],input[type=radio]{background:#fff;border:1px solid #b4b9be;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);clear:none;color:#555;cursor:pointer;display:inline-block;height:16px;line-height:0;margin:-4px 4px 0 0;min-width:16px;outline:0;padding:0!important;text-align:center;-webkit-transition:border-color .05s ease-in-out;transition:border-color .05s ease-in-out;vertical-align:middle;width:16px;-webkit-appearance:none}input[type=checkbox]:checked:before,input[type=radio]:checked:before{display:inline-block;float:left;font:normal 21px/1 dashicons;vertical-align:middle;width:16px;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox].disabled,input[type=checkbox].disabled:checked:before,input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=radio].disabled,input[type=radio].disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before{opacity:.7}input[type=checkbox]:checked:before{color:#1e8cbe;content:"\f147";margin:-3px 0 0 -4px}input[type=radio]{-webkit-border-radius:50%;border-radius:50%;line-height:10px;margin-right:4px}input[type=radio]:checked+label:before{color:#82878c}input[type=radio]:checked:before{background-color:#1e8cbe;-webkit-border-radius:50px;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:16px;margin:4px;text-indent:-9999px;width:6px}input[type=reset]:active,input[type=reset]:hover{color:#00a0d2}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}button,input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}input,select,textarea{-webkit-border-radius:0;border-radius:0;font-size:14px;padding:3px 5px}textarea{line-height:1.4;overflow:auto;padding:2px 6px;resize:vertical}textarea.code{line-height:1.4;padding:4px 6px 1px}label{cursor:pointer;vertical-align:middle}input,select{margin:1px;padding:3px 5px}input.code{padding-top:6px}input.readonly,input[readonly],textarea.readonly,textarea[readonly]{background-color:#eee}.wp-core-ui :-moz-placeholder,:-moz-placeholder{color:#a9a9a9}input.disabled,input:disabled,select.disabled,select:disabled,textarea.disabled,textarea:disabled{background:hsla(0,0%,100%,.5);border-color:hsla(0,0%,87.1%,.75);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.04);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);color:rgba(51,51,51,.5)}input[type=file].disabled,input[type=file]:disabled,input[type=range].disabled,input[type=range]:disabled{background:none;-webkit-box-shadow:none;box-shadow:none}input.large-text,textarea.large-text{width:99%}input.regular-text{width:25em}input.small-text{padding:1px 6px;width:50px}input[type=number].small-text{width:65px}input.tiny-text{width:35px}input[type=number].tiny-text{width:45px}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;padding:6px 10px}input[type=number]{height:40px}input.code{padding-bottom:5px;padding-top:10px}input[type=checkbox]{-webkit-appearance:none;padding:10px}input[type=checkbox]:checked:before{font:normal 30px/1 dashicons;margin:-3px -5px}input[type=checkbox],input[type=radio]{height:25px;width:25px}input[type=radio]:checked:before{vertical-align:middle;width:9px;height:9px;margin:7px;line-height:16px}input,textarea{font-size:16px}input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:55px;display:inline;padding:3px 6px;margin:0 3px}input.regular-text{width:100%}label{font-size:14px}fieldset label{display:block}}a.button:active,a.button:focus,a.button:hover{text-decoration:none}.notice{background:#fff;border-left:4px solid #fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:1em 0;padding:1px 12px}.notice p{font-size:12.8px;font-size:.8rem;margin:.5em 0;padding:2px}.notice.notice-alt{-webkit-box-shadow:none;box-shadow:none}.notice.notice-large{padding:10px 20px}.notice.notice-success{border-left-color:#46b450}.notice.notice-success.notice-alt{background-color:#ecf7ed}.notice.notice-warning{border-left-color:#ffb900}.notice.notice-warning.notice-alt{background-color:#fff8e5}.notice.notice-error{border-left-color:#dc3232}.notice.notice-error.notice-alt{background-color:#fbeaea}.notice.notice-info{border-left-color:#00a0d2}.notice.notice-info.notice-alt{background-color:#e5f5fa}.error-404 .page-content,.error-404 .page-title{text-align:center}.error-404 .page-content .logo-swing{height:160px;height:10rem;margin:6rem auto;position:relative;text-align:center;width:160px;width:10rem}.error-404 .page-content .logo-swing .wp-logo{left:0;max-width:none;position:absolute;top:0;width:160px;width:10rem}@-webkit-keyframes hinge{10%{width:180px;height:180px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}15%{width:185px;height:185px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}20%{width:180px;height:180px;-webkit-transform:rotate(5deg);transform:rotate(5deg)}40%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{-webkit-transform:rotate(40deg);transform:rotate(40deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{10%{width:180px;height:180px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}15%{width:185px;height:185px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}20%{width:180px;height:180px;-webkit-transform:rotate(5deg);transform:rotate(5deg)}40%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{-webkit-transform:rotate(40deg);transform:rotate(40deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}.comments-area{margin-top:5em}.comments-area>:last-child{margin-bottom:0}.comments-area .comment-list+.comment-respond{border-top:1px solid #eaeaea}.comments-area .comment-list+.comment-respond,.comments-area .comment-navigation+.comment-respond{padding-top:1.6em}.comments-area .comments-title{margin-bottom:1.3333em}.comments-area .comment-list{list-style:none;margin:0}.comments-area .comment-list .pingback,.comments-area .comment-list .trackback,.comments-area .comment-list article{border-top:1px solid #eaeaea;padding:1.6em 0}.comments-area .comment-list article:not(:only-child){padding-bottom:0}.comments-area .comment-list article+.comment-respond{padding-bottom:1.6em}.comments-area .comment-list .children{list-style:none;margin:0}.comments-area .comment-list .children>li{padding-left:.8em}.comments-area .comment-list .alt{background:none}.comments-area .comment-author{color:#999;margin-bottom:.4em}.comments-area .comment-author .avatar{float:left;height:24px;margin-right:.8em;width:24px}.comments-area .comment-metadata,.comments-area .pingback .edit-link{color:#999;line-height:1.5}.comments-area .comment-metadata a,.comments-area .pingback .edit-link a{color:#777}.comments-area .comment-metadata{font-size:12.8px;font-size:.8rem;margin-bottom:1.6em}.comments-area .comment-metadata .edit-link,.comments-area .pingback .edit-link{margin-left:1em}.comments-area .pingback .edit-link:before{top:5px}.comments-area .comment-content ol,.comments-area .comment-content ul{margin:0 0 1.6em 1.3333em}.comments-area .comment-content>:last-child,.comments-area .comment-content li>ol,.comments-area .comment-content li>ul{margin-bottom:0}.comments-area .comment-content .reply{font-size:12px}.comments-area .comment-content .reply a{border:1px solid #eaeaea;color:#707070;display:inline-block;font-weight:700;line-height:1;margin-top:2em;padding:.4167em .8333em;text-transform:uppercase}.comments-area .comment-content .reply a:focus,.comments-area .comment-content .reply a:hover{border-color:#333;color:#333;outline:0}.comments-area .comment-reply-title a{font-weight:inherit}.comments-area .comment-form label{font-size:12.8px;font-size:.8rem;font-weight:700;display:block;letter-spacing:.04em;line-height:1.5}.comments-area .comment-form input[type=email],.comments-area .comment-form input[type=text],.comments-area .comment-form input[type=url],.comments-area .comment-form textarea{width:100%}.comments-area .comment-awaiting-moderation,.comments-area .comment-notes,.comments-area .form-allowed-tags,.comments-area .logged-in-as{font-size:16px;font-size:1rem;line-height:1.5;margin-bottom:2em}.comments-area .no-comments{border-top:1px solid #eaeaea;color:#999;font-weight:700;padding-top:1.6em}.comments-area .comment-navigation+.no-comments{border-top:0}.comments-area .form-allowed-tags code{font-family:Inconsolata,monospace}.comments-area .form-submit{margin-bottom:0}.comments-area .required{color:#c0392b}.entry-content{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}.entry-content>p:first-child{margin-top:0}.entry-content [class*=col-]~h1,.entry-content [class*=col-]~h2,.entry-content [class*=col-]~h3,.entry-content [class*=col-]~h4,.entry-content [class*=col-]~h5,.entry-content [class*=col-]~h6{clear:none}.entry-header{position:relative}.entry-header .sticky-post{font-style:italic;position:absolute;top:-12.8px;top:-.8rem}.entry-header .sticky-post,.entry-meta{color:#999;font-size:12.8px;font-size:.8rem}.entry-meta{margin-bottom:1rem}.entry-meta a{color:#777}.entry-meta>span{margin-right:1rem}.entry-meta>span :last-of-type{margin:0}.entry-meta .byline,.entry-meta .updated:not(.published),.sticky .entry-meta .posted-on{display:none}.group-blog .entry-meta .byline,.single .entry-meta .byline{display:inline}.entry-summary{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}body:not(.single):not(.search) .site-main .post{margin-bottom:3.0517578125rem;max-width:40em}.gallery{margin-bottom:1.5rem}.gallery .gallery-item{display:inline-block;margin:0;text-align:center;vertical-align:top;width:100%}.gallery.gallery-columns-2 .gallery-item{max-width:50%}.gallery.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery.gallery-columns-4 .gallery-item{max-width:25%}.gallery.gallery-columns-5 .gallery-item{max-width:20%}.gallery.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery .gallery-caption{display:block}.main-navigation{background:#0073aa;clear:both;left:0;position:absolute;top:60px;width:100%}.main-navigation ul{display:none;list-style:none;margin:0;padding-left:0}.main-navigation ul ul{-webkit-box-shadow:0 3px 3px rgba(0,0,0,.2);box-shadow:0 3px 3px rgba(0,0,0,.2);float:left;left:-999em;position:absolute;top:1.5em;z-index:99999}.main-navigation ul ul ul{left:-999em;top:0}.main-navigation ul ul li.focus>ul,.main-navigation ul ul li:hover>ul{left:100%}.main-navigation ul ul a{width:200px}.main-navigation ul li.focus>ul,.main-navigation ul li:hover>ul{left:auto}.main-navigation li{border-top:1px solid hsla(0,0%,100%,.2);padding:1rem}.main-navigation a{color:hsla(0,0%,100%,.8);display:block;font-size:12.8px;font-size:.8rem;text-decoration:none}.main-navigation a.active,.main-navigation a:hover{color:#fff}@media screen and (min-width:737px){.main-navigation a.active{border-bottom:1px solid}}.main-navigation.toggled{z-index:1}.main-navigation.toggled ul{display:block}.menu-toggle{background:transparent;border:none;color:#fff;font-size:25px;font-size:1.5625rem;height:56px;height:3.5rem;overflow:hidden;position:absolute;right:16px;right:1rem;top:-58px;width:56px;width:3.5rem;-webkit-appearance:none}.toggled .menu-toggle:before{content:"\f343"}@media screen and (min-width:737px){.menu-toggle{display:none}.main-navigation{float:right;position:static;width:auto}.main-navigation.toggled{padding:1px 0}.main-navigation ul{display:inline-block;font-size:0}.main-navigation ul li{border:0;display:inline-block;font-size:1rem;margin-right:1rem;padding:0}.main-navigation ul li:last-of-type{margin-right:0}}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}body.page .gutters .col-12{width:100%}body.page .entry-header{background:#0073aa;padding:1rem 0}body.page .entry-header .entry-title{color:#fff;font-size:25px;font-size:1.5625rem;font-weight:300;line-height:1;margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){body.page .entry-header .entry-title{padding:0 10px}}body.page .entry-header.home{padding:1.5625rem 1.143rem;text-align:center}@media screen and (min-width:737px){body.page .site-header+.site-main .entry-title{padding:initial}}body.page .entry-content,body.page .entry-footer{margin:0 auto;max-width:960px;padding:3.0517578125rem 1.5625rem}.post-navigation{margin:5em auto;padding:0}.post-navigation a{border-bottom:1px solid #eaeaea;color:#444;display:block;font-weight:600;padding:11px 0 12px;text-transform:none;width:100%}.post-navigation a:hover{color:#21759b}.post-navigation .nav-links{border-top:1px solid #eaeaea;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-wrap:break-word}.post-navigation .meta-nav{color:#777;display:block;font-size:13px;line-height:2;text-transform:uppercase}.post-navigation .nav-next{text-align:right}.pagination .nav-links{text-align:center}.pagination .nav-links .page-numbers{background-color:#f9f9f9;cursor:hand;display:inline-block;min-width:2em;padding:8px;text-align:center}.pagination .nav-links .page-numbers.dots,.pagination .nav-links .page-numbers.next,.pagination .nav-links .page-numbers.prev{background:none;font-size:.9em;width:auto}.pagination .nav-links .page-numbers.dots{cursor:inherit}@media screen and (max-width:737px){.pagination .nav-links .page-numbers.next,.pagination .nav-links .page-numbers.prev{font-size:0;min-width:0;padding:0}.pagination .nav-links .page-numbers.next:after,.pagination .nav-links .page-numbers.prev:before{background-color:#f9f9f9;display:inline-block;font-size:1rem;line-height:1.5;min-width:2em;padding:8px}.pagination .nav-links .page-numbers.prev:before{content:"\2039"}.pagination .nav-links .page-numbers.next:after{content:"\203A"}}.pagination .nav-links span.page-numbers{background-color:#f7f7f7;font-weight:700}.search-form .search-field{line-height:normal;margin:0;padding:4px 5px;vertical-align:text-bottom}body.search .gutters .col-12{width:100%}body.search .site-main{margin:0 auto;max-width:960px;padding:0 1.5625rem 3.0517578125rem}.site-content{margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){.site-content{padding:0 10px 3.0517578125rem}}@media screen and (max-width:737px){.site-content .site-main{float:none;margin:0;width:auto}}.home .site-content,.page .site-content,.site-content.page{margin:auto;max-width:none;padding:0}.site-content .page-title{font-size:20px;font-size:1.25rem;font-weight:400}.site-content .no-results{margin:0 auto 3.0517578125rem;max-width:40em;padding:0 2rem}.site-description{color:hsla(0,0%,100%,.8);font-size:20px;font-size:1.25rem;font-weight:300;margin:-.4rem auto 2rem;text-align:center}.site-header{background:#0073aa;padding:1rem 0;position:relative}.site-header .site-branding{margin:0 auto;max-width:960px;padding:0 1.5625rem}@media screen and (min-width:737px){.site-header .site-branding{padding:0 10px}}.site-header.home{padding:1.5625rem 1.143rem;text-align:center}.site-title{display:inline-block;font-size:25px;font-size:1.5625rem;font-weight:300;line-height:1;margin:0 2rem 0 0;max-width:none}.site-header.home .site-title{display:inherit;font-size:61.035px;font-size:3.8146972656rem;margin:2rem 0 1rem}.widget-area{font-size:12.8px;font-size:.8rem}@media screen and (min-width:480px) and (max-width:768px){.widget-area{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.widget-area .widget{width:48%}}#wporg-footer{background-color:#f7f7f7;border-top:1px solid #dfdfdf;padding:22px 14px 65px}#wporg-footer,#wporg-footer .wrapper{clear:both;margin:0 auto;overflow:auto}#wporg-footer .wrapper{max-width:930px}#wporg-footer ul{float:left;margin-bottom:20px;margin-left:24px;overflow:auto;padding-left:0;width:135px}@media screen and (min-width:960px){#wporg-footer ul:first-child{margin-left:0}}#wporg-footer ul li{color:#bbb;font-size:14px;list-style-type:none;margin-bottom:1px}#wporg-footer ul li a{text-decoration:none;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}#wporg-footer ul li a:hover{color:#0073aa;text-decoration:underline}#wporg-footer .social-media-links .dashicons{margin-right:4px}#wporg-footer .cip{clear:both;color:#ccc;float:none;font-size:12.8px;font-size:.8rem;letter-spacing:.3em;margin:35px auto 0;text-align:center;text-transform:uppercase}#wporg-footer .cip.cip-image{background:url(//s.w.org/style/images/codeispoetry.png?1=) 50% no-repeat;-webkit-background-size:190px 15px;background-size:190px 15px;height:15px;text-indent:-9999px;width:190px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:1.5dppx),only screen and (min-resolution:144dpi){#wporg-footer .cip.cip-image{background-image:url(//s.w.org/style/images/codeispoetry-2x.png?1=)}}@media screen and (min-width:561px) and (max-width:959px){#wporg-footer .wrapper{max-width:600px}#wporg-footer ul{margin-left:2%;width:32%}#wporg-footer ul:nth-child(3n+1){margin-left:0}#wporg-footer ul:nth-child(4n){clear:both}}@media screen and (max-width:560px){#wporg-footer .wrapper{max-width:360px}#wporg-footer ul{margin-left:4%;width:48%}#wporg-footer ul:nth-child(odd){margin-left:0;clear:both}}#wporg-header{background:#23282d;height:140px;position:relative;text-align:center;width:100%}#wporg-header .wrapper{margin:0 auto;max-width:960px}#wporg-header h1{display:inline-block;margin:auto;width:303px}#wporg-header h1 a{background:url(//s.w.org/style/images/wporg-logo.svg?3=) 0 no-repeat;-webkit-background-size:290px 46px;background-size:290px 46px;display:block;height:88px;text-indent:-9999px}#wporg-header h2.rosetta{clear:none;color:#dfdfdf;font-family:Georgia,Times New Roman,serif;font-size:30px;margin:0 0 0 60px}#wporg-header h2.rosetta a{border-bottom:none;color:#dfdfdf;display:block;height:52px;line-height:22px;padding:0}#wporg-header h2.rosetta a:hover{text-decoration:none}#wporg-header #wporg-header-menu{background:#23282d;left:-75%;list-style:none;margin:0;max-width:75%;min-width:200px;position:absolute;text-align:left;top:100%;-webkit-transition:left .3s;transition:left .3s;z-index:100000}#wporg-header #wporg-header-menu.toggled{left:0}#wporg-header ul li{list-style-type:none;position:relative}#wporg-header ul li a{color:#eee;display:block;font-family:Open Sans,Helvetica,Arial,Liberation Sans,sans-serif;font-size:13px;font-weight:600;height:34px;line-height:34px;margin:0 4px;padding:10px 30px;text-decoration:none}#wporg-header ul li a.subcurrent{font-weight:700}@media (max-width:768px){#wporg-header ul li a{height:auto}}#wporg-header ul li.current-menu-item a,#wporg-header ul li.current_page_parent a,#wporg-header ul li a.current,#wporg-header ul li a:hover{color:#00a0d2}#wporg-header ul li#download,#wporg-header ul li.download{float:right;height:34px;margin-right:14px;overflow:hidden;padding:0 0 34px}@media screen and (max-width:767px){#wporg-header ul li#download,#wporg-header ul li.download{display:block;float:none;margin:10px 20px 20px;padding-bottom:0;height:auto}#wporg-header ul li#download a,#wporg-header ul li.download a{padding:4px 10px;text-align:center}}#wporg-header ul li#download a,#wporg-header ul li.download a{margin:0;padding:0 16px}#wporg-header ul li#download a:hover,#wporg-header ul li.download a:hover{color:#eee}#wporg-header ul li#download.current,#wporg-header ul li#download.current-menu-item,#wporg-header ul li#download .uparrow,#wporg-header ul li.download.current,#wporg-header ul li.download.current-menu-item,#wporg-header ul li.download .uparrow{display:none}#wporg-header ul li .nav-submenu{clip:rect(1px,1px,1px,1px);height:1px;left:-2px;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;z-index:99999}#wporg-header ul li .nav-submenu li a{display:inline-block;height:24px;line-height:24px;margin:0;white-space:nowrap}@media screen and (min-width:768px){#wporg-header #head-search{float:right;margin-right:14px;padding-top:30px}}#wporg-header #head-search form{border-bottom:1px solid #3f3f3f;display:inline-block;margin-left:60px;width:288px}#wporg-header #head-search form input.text{background:#191e23;border:0;-webkit-border-radius:0;border-radius:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;color:#b4b9be;float:left;font-family:Open Sans,sans-serif;font-size:12px;height:24px;margin:0;outline:none;padding:3px;vertical-align:top;width:256px}#wporg-header #head-search form input.text::-moz-placeholder{color:#eee}@media screen and (max-width:480px){#wporg-header #head-search form input.text{width:216px}}#wporg-header #head-search form .button{background:#191e23 url(//s.w.org/wp-includes/images/admin-bar-sprite.png?d=20120831) no-repeat 2px 5px;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;float:left;height:30px;margin:0;padding:0;text-shadow:none!important;width:26px}@media screen and (max-width:480px){#wporg-header #head-search form{width:248px}}@media screen and (min-width:480px){#wporg-header #head-search form{margin-left:0}}@media screen and (min-width:768px){#wporg-header{height:120px;text-align:inherit}#wporg-header h1{float:left;padding-left:10px}#wporg-header h2.rosetta{float:left;margin-left:0;padding:36px 27px 0}#wporg-header #headline h2{text-rendering:optimizeLegibility}#wporg-header #wporg-header-menu{float:left;height:46px;list-style:none;margin:-15px 0 0;max-width:inherit;min-width:0;padding:0;position:static;width:100%}#wporg-header ul li{float:left;position:relative}#wporg-header ul li a{height:46px;padding:0 6px}#wporg-header ul li a.current~.uparrow{border-bottom:9px solid #f7f7f7;border-left:9px solid transparent;border-right:9px solid transparent;height:0;margin:-8px auto 0;width:0}#wporg-header ul li.current-menu-item:after,#wporg-header ul li.current_page_parent:after{border-bottom:9px solid #f7f7f7;border-left:9px solid transparent;border-right:9px solid transparent;content:"";height:0;left:50%;margin:-8px 0 0 -9px;position:absolute;width:0}#wporg-header ul li .nav-submenu:hover~.uparrow,#wporg-header ul li:hover .nav-submenu~.uparrow{border-bottom:9px solid #32373c;border-left:9px solid transparent;border-right:9px solid transparent;height:0;margin:-10px auto 0;width:0}#wporg-header ul li .nav-submenu{background:#32373c;border:1px solid #32373c;border-top:0;margin-top:-1px;min-width:0}#wporg-header ul li .nav-submenu li{float:none}#wporg-header ul li .nav-submenu li a{height:34px;line-height:34px}#wporg-header .nav-menu .focus>ul,#wporg-header .nav-menu ul li:hover>ul,#wporg-header ul.nav-menu .focus>ul,#wporg-header ul.nav-menu li:hover>ul{clip:inherit;height:inherit;overflow:inherit;width:inherit}#wporg-header ul li.current-menu-item:after,#wporg-header ul li.current_page_parent:after,#wporg-header ul li a.current~.uparrow{border-bottom-color:#0073aa}}.page-download #wporg-header #download,.page-parent-download #wporg-header #download{display:none}#mobile-menu-button{background:none;border:none;-webkit-box-shadow:none;box-shadow:none;display:block;float:left;font-family:dashicons;font-size:16px;font-style:normal;font-weight:400;left:10px;line-height:1;padding:1px;position:absolute;text-align:center;text-decoration:inherit;text-shadow:none;top:75px;-webkit-transition:color .1s ease-in;transition:color .1s ease-in;vertical-align:top;-webkit-font-smoothing:antialiased}#mobile-menu-button:before{border:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#888;content:"\f228";display:inline-block;float:left;font:normal 50px/1 Dashicons;margin:0;outline:none;padding:3px;text-decoration:none;vertical-align:middle;-webkit-font-smoothing:antialiased}@media screen and (min-width:768px){#mobile-menu-button{display:none}}#download-mobile{background:#f7f7f7;border-bottom:1px solid #ddd}#download-mobile .wrapper{padding:20px 0;text-align:center}#download-mobile span.download-ready{font-size:1.6em;margin:0 .25em}#download-mobile a.download-button{font-size:1.6em;height:inherit;margin:10px .25em;padding:10px 15px}.search-form{font-size:0;margin-bottom:2rem;max-width:100%;position:relative}.search-form .search-field{-webkit-appearance:none;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;display:block;font-size:16px;font-size:1rem;line-height:1.5;margin:0 auto;max-width:100%;padding:.5rem;vertical-align:initial;width:363.797px;width:22.7373675443rem}.search-form .button-search{border-top:none;border-left:none;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;font-size:16px;font-size:1rem;margin:0;position:relative;right:auto;top:auto;vertical-align:top}.search-form .button-search:active{background:#006799;border-right:1px solid #006799;-webkit-box-shadow:none;box-shadow:none}.search-form .button-search .dashicons{font-size:16px;font-size:1rem;vertical-align:text-bottom}.site-header .search-form{display:inline-block}.site-header.home .search-form .button-search,.site-main .search-form .button-search{background:transparent;border:none;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#32373c;display:block;height:45px;padding:.5rem 1rem;position:absolute;right:0;text-shadow:none;top:0}.site-header.home .search-form .button-search:focus,.site-main .search-form .button-search:focus{-webkit-box-shadow:0 0 2px 1px #33b3db;box-shadow:0 0 2px 1px #33b3db}.site-header.home .search-form .button-search:active,.site-main .search-form .button-search:active{background:transparent;border:none;-webkit-transform:none;-ms-transform:none;transform:none}.site-header:not(.home) .search-form{margin:0;padding:1rem 1rem 1rem 1.5rem}@media screen and (min-width:737px){.site-header:not(.home) .search-form{padding:0}}.site-header:not(.home) .search-form .search-field{border:0;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px;display:inline-block;font-size:16px;font-size:1rem;padding:5px 10px;position:relative;width:auto}@media screen and (min-width:737px){.site-header:not(.home) .search-form .search-field{font-size:.64rem;width:7rem}.site-header:not(.home) .search-form .search-field+.button-search{display:inline-block;margin-bottom:0}}@media screen and (min-width:60em){.site-header:not(.home) .search-form .search-field{width:10rem}}.site-main .search-form .search-field{border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);padding:.5rem;width:100%}p a{border-bottom:none}p a:hover{border:none}details{margin:0 0 15px}summary{list-style-type:disc;font-weight:700;cursor:pointer}.wrap{max-width:980px}.site-content{max-width:none;padding:0}.site-title a{font-weight:300}.site-title a,.site-title a:active,.site-title a:focus,.site-title a:hover{border-bottom:none;color:#fff;text-decoration:none}.site-main figcaption{color:#666;font-style:italic}@media screen and (max-width:960px){.site-main figcaption{margin-left:20px;margin-right:20px}}body.archive #main,body.author #main,body.home #main,body.post-type-archive-photo #main,body.search #main{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));margin:0 auto 3rem;padding:0 1.5625rem}@media screen and (min-width:737px){body.archive #main,body.author #main,body.home #main,body.post-type-archive-photo #main,body.search #main{padding:0 10px}}body.archive #main article,body.author #main article,body.home #main article,body.post-type-archive-photo #main article,body.search #main article{max-height:200px;height:200px;margin:0 .5rem 1rem;text-align:center}body.archive #main article.photo-placeholder,body.author #main article.photo-placeholder,body.home #main article.photo-placeholder,body.post-type-archive-photo #main article.photo-placeholder,body.search #main article.photo-placeholder{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}body.archive #main article.photo-placeholder .entry-content,body.author #main article.photo-placeholder .entry-content,body.home #main article.photo-placeholder .entry-content,body.post-type-archive-photo #main article.photo-placeholder .entry-content,body.search #main article.photo-placeholder .entry-content{background-color:#eee}body.archive #main .grid-photo,body.archive #main article.photo-placeholder .entry-content,body.author #main .grid-photo,body.author #main article.photo-placeholder .entry-content,body.home #main .grid-photo,body.home #main article.photo-placeholder .entry-content,body.post-type-archive-photo #main .grid-photo,body.post-type-archive-photo #main article.photo-placeholder .entry-content,body.search #main .grid-photo,body.search #main article.photo-placeholder .entry-content{height:200px;width:300px;-o-object-fit:cover;object-fit:cover;-webkit-transition:all .25s;transition:all .25s}body.archive #main .grid-photo:active,body.archive #main .grid-photo:hover,body.archive #main article.photo-placeholder .entry-content:active,body.archive #main article.photo-placeholder .entry-content:hover,body.author #main .grid-photo:active,body.author #main .grid-photo:hover,body.author #main article.photo-placeholder .entry-content:active,body.author #main article.photo-placeholder .entry-content:hover,body.home #main .grid-photo:active,body.home #main .grid-photo:hover,body.home #main article.photo-placeholder .entry-content:active,body.home #main article.photo-placeholder .entry-content:hover,body.post-type-archive-photo #main .grid-photo:active,body.post-type-archive-photo #main .grid-photo:hover,body.post-type-archive-photo #main article.photo-placeholder .entry-content:active,body.post-type-archive-photo #main article.photo-placeholder .entry-content:hover,body.search #main .grid-photo:active,body.search #main .grid-photo:hover,body.search #main article.photo-placeholder .entry-content:active,body.search #main article.photo-placeholder .entry-content:hover{border:4px solid #eee}body.archive #main .entry-content figcaption,body.archive #main .entry-footer,body.archive #main .entry-header,body.author #main .entry-content figcaption,body.author #main .entry-footer,body.author #main .entry-header,body.home #main .entry-content figcaption,body.home #main .entry-footer,body.home #main .entry-header,body.post-type-archive-photo #main .entry-content figcaption,body.post-type-archive-photo #main .entry-footer,body.post-type-archive-photo #main .entry-header,body.search #main .entry-content figcaption,body.search #main .entry-footer,body.search #main .entry-header{display:none}body.archive #main .page-footer,body.author #main .page-footer,body.home #main .page-footer,body.post-type-archive-photo #main .page-footer,body.search #main .page-footer{grid-column:1/-1;margin-top:3rem}body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{margin:0 auto 60px;overflow:auto}body.archive aside.widget-area .widget,body.author aside.widget-area .widget,body.home aside.widget-area .widget,body.post-type-archive-photo aside.widget-area .widget,body.search aside.widget-area .widget{float:left;width:30%;margin-right:5%}body.archive aside.widget-area .widget:last-child,body.author aside.widget-area .widget:last-child,body.home aside.widget-area .widget:last-child,body.post-type-archive-photo aside.widget-area .widget:last-child,body.search aside.widget-area .widget:last-child{margin-right:0}body.archive aside.widget-area .widgettitle,body.author aside.widget-area .widgettitle,body.home aside.widget-area .widgettitle,body.post-type-archive-photo aside.widget-area .widgettitle,body.search aside.widget-area .widgettitle{margin-top:0}@media screen and (max-width:960px){body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{margin-left:20px;margin-right:20px}}@media screen and (max-width:632px){body.archive aside.widget-area,body.author aside.widget-area,body.home aside.widget-area,body.post-type-archive-photo aside.widget-area,body.search aside.widget-area{display:block;margin-left:20px;margin-right:20px}body.archive aside.widget-area .widget,body.author aside.widget-area .widget,body.home aside.widget-area .widget,body.post-type-archive-photo aside.widget-area .widget,body.search aside.widget-area .widget{float:none;width:100%;margin-right:0}}body.home #main,body.post-type-archive-photo #main{margin:2.5rem auto}body.archive .site-main .page-header,body.author .site-main .page-header,body.search .site-main .page-header{grid-column:1/-1;margin-bottom:1rem;width:100%}body.archive .site-main,body.author .site-main,body.post-type-archive-photo .site-main,body.search .site-main,body.single-photo .site-main{float:none;max-width:960px}body.single-photo #main{margin:40px auto 60px}body.single-photo .entry-header{margin-bottom:1rem}body.single-photo .entry-footer{margin-top:2rem}@media screen and (max-width:960px){body.single-photo .entry-footer,body.single-photo .entry-header{margin-left:20px;margin-right:20px}}body.page #main{margin:0 auto 2rem}body.page .entry-header{background-color:#fff;margin:0 auto;padding:3.0517578125rem 1.5625rem 0}body.page .entry-header .entry-title{color:#32373c;font-weight:400}body.page:not(.logged-in).page .entry-footer{display:none}.site-content .no-results{grid-column:1/-1;margin:0 auto;max-width:600px;padding:unset;width:100%}#wporg-photo-upload{border:none;margin:0;padding:0}#wporg-photo-upload .ugc-notice{border:none;border-left:6px solid;-webkit-border-radius:0;border-radius:0;padding-left:.75rem}#wporg-photo-upload .ugc-notice.failure{border-color:#dc3232;background-color:#fbeaea}#wporg-photo-upload .ugc-notice.success{border-color:#64b450;background-color:#eff7ed}#wporg-photo-upload .ugc-help{color:#666;font-size:smaller;margin-top:0}#wporg-photo-upload input[type=file]{margin-left:0;padding-left:0}@media screen and (max-width:600px){#wporg-photo-upload input[type=text]{width:-webkit-calc(100% - 10px);width:calc(100% - 10px)}}.photo-upload-disabled{background-color:#fbeaea;border-left:5px solid red;margin-top:4rem;padding:2rem}.photos-all-link{margin-right:1.5rem}.navigation,.photos-all-link{grid-column:1/-1;text-align:right}.navigation{margin-top:1rem;padding-right:1rem;width:100%}.navigation .nav-links{text-align:inherit}.photo-author img{-webkit-border-radius:50%;border-radius:50%;margin-right:.4rem;vertical-align:middle}.photo-meta{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.photo-meta .column{-webkit-box-flex:2;-webkit-flex:2 1 auto;-moz-box-flex:2;-ms-flex:2 1 auto;flex:2 1 auto;margin-bottom:2rem}.photo-meta .column:last-child{-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:right}@media screen and (max-width:600px){.photo-meta .column:last-child{text-align:left}}.photo-meta .photo-exif{list-style:none;margin:0}.photo-meta .photo-exif strong{display:inline-block;min-width:80px}.photo-meta .photo-meta-label{display:inline-block;min-width:100px}.photo-meta .photo-dimensions{margin-top:1rem}.photos-download{list-style:none;margin:0;padding:0;display:grid;position:relative;float:right}.photos-download .download-title{border:none;font-family:inherit;display:-webkit-inline-box;display:-webkit-inline-flex;display:-moz-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}.photos-download .download-title:after{content:"";border:.35rem solid transparent;border-top-color:hsla(0,0%,100%,.9);margin-left:.5em;-webkit-transform:translateY(.25em);-ms-transform:translateY(.25em);transform:translateY(.25em)}.photos-download .download-menu{display:grid;list-style:none;margin:0;background-color:#fff;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 .15em .25em rgba(0,0,0,.25);box-shadow:0 .15em .25em rgba(0,0,0,.25);padding:.5em 0;position:absolute;min-width:15ch;left:40%;top:100%;-webkit-transform:rotateX(-90deg) translateX(-50%);transform:rotateX(-90deg) translateX(-50%);-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;visibility:hidden;opacity:.3;-webkit-transition:all .1s ease-out 80ms;transition:all .1s ease-out 80ms}.photos-download .download-menu:focus-within .dropdown__menu,.photos-download .download-menu:hover .dropdown__menu{opacity:1;-webkit-transform:rotateX(0) translateX(-50%);transform:rotateX(0) translateX(-50%);visibility:visible}.photos-download .download-menu a{display:block;padding:.5em;opacity:0;text-decoration:none;-webkit-transition:all .1s ease-out 80ms;transition:all .1s ease-out 80ms}.photos-download .download-menu a:hover{background-color:rgba(0,133,186,.15)}.photos-download .download-menu a:focus{outline:none;background-color:rgba(0,133,186,.25)}.photos-download .download-menu li{padding:0}.photos-download:focus-within .download-title,.photos-download:hover .download-title{border-top-color:pink}.photos-download:focus-within .download-menu,.photos-download:hover .download-menu{opacity:1;-webkit-transform:rotateX(0) translateX(-50%);transform:rotateX(0) translateX(-50%);visibility:visible}.photos-download:focus-within .download-menu a,.photos-download:hover .download-menu a{opacity:1}.photos-download:focus-within:after,.photos-download:hover:after{opacity:1}.photos-download .photo-dimensions{font-size:smaller;display:block}.photos-categories,.photos-colors{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;list-style:none;margin:0;padding:0}.photos-categories li,.photos-colors li{padding:0 1rem}.photos-colors li:before{content:"\2022";font-size:36px;font-weight:700;line-height:16px;line-height:1rem;vertical-align:middle;content:" ";border:1px solid #000;-webkit-border-radius:50%;border-radius:50%;display:inline-block;height:16px;height:1rem;margin-right:.3rem;width:16px;width:1rem}.color-black:before,.taxonomy-photo_color-black{background-color:#000}.color-blue:before,.taxonomy-photo_color-blue{background-color:#00f}.color-brown:before,.taxonomy-photo_color-brown{background-color:brown}.color-gray:before,.taxonomy-photo_color-gray{background-color:grey}.color-green:before,.taxonomy-photo_color-green{background-color:green}.color-orange:before,.taxonomy-photo_color-orange{background-color:orange}.color-purple:before,.taxonomy-photo_color-purple{background-color:#639}.color-pink:before,.taxonomy-photo_color-pink{background-color:pink}.color-red:before,.taxonomy-photo_color-red{background-color:red}.color-violet:before,.taxonomy-photo_color-violet{background-color:violet}.color-white:before,.taxonomy-photo_color-white{background-color:#fff}.color-yellow:before,.taxonomy-photo_color-yellow{background-color:#ff0}body.page .taxonomy-photo_color{-webkit-box-align:end;-webkit-align-items:flex-end;-moz-box-align:end;-ms-flex-align:end;align-items:flex-end;border:1px solid #ddd;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}body.page .taxonomy-photo_color.taxonomy-photo_color .entry-content span{background-color:#ddd}body.page .taxonomy-photo_color .entry-content{-webkit-box-flex:1;-webkit-flex:1 0 auto;-moz-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;margin:0;padding:0;position:relative}body.page .taxonomy-photo_color .entry-content span{background-color:#fff;display:block;min-height:60.8px;min-height:3.8rem;opacity:.9}body.page .taxonomy-photo_color .entry-content a{bottom:-60.8px;bottom:-3.8rem;height:60.8px;height:3.8rem;padding-top:1rem;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);width:100%}div.upload-checkbox-wrapper{margin:1rem 0}div.upload-checkbox-wrapper input[type=checkbox]{margin-top:0}div.upload-checkbox-wrapper div{padding-left:25px}div.upload-checkbox-wrapper input{margin-left:-25px}@media screen and (max-width:782px){div.upload-checkbox-wrapper div{margin:.5rem 0;padding-left:35px}div.upload-checkbox-wrapper input{margin-left:-35px}}#wporg-photo-upload label.error{background-color:#fbeaea;border-left:5px solid red;padding:.1rem .3rem}.taxonomy-photo_orientation .entry-content{background-color:#eee}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-landscape{max-height:136px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-landscape .entry-content{max-width:300px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-portrait{height:250px;max-height:250px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-portrait .entry-content{height:250px;width:200px}body.archive #main article.taxonomy-photo_orientation.taxonomy-photo_orientation-square .entry-content{width:136px}.banner{background-color:#fff8dc;margin:2rem;padding:1rem 2rem;text-align:center}
    22/*# sourceMappingURL=style.css.map */
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-photos/css/style.css.map

    r11755 r11756  
    1 {"version":3,"sources":["style.css","../../wporg/css/generic/_kube.scss","../../wporg/css/tools/_kube.scss","../../wporg/css/tools/_breakpoint.scss","../../wporg/css/generic/_normalize.scss","../../wporg/css/base/_copy.scss","../../wporg/css/base/_elements.scss","../../wporg/css/settings/_colors.scss","../../wporg/css/tools/_modular-scale.scss","../../wporg/css/base/_headings.scss","../../wporg/css/tools/_functions.scss","../../wporg/css/settings/_typography.scss","../../wporg/css/settings/_modular-scale.scss","../../wporg/css/base/_links.scss","../../wporg/css/base/_lists.scss","../../wporg/css/base/_tables.scss","../../wporg/css/base/_typography.scss","../../wporg/css/objects/_accessibility.scss","../../wporg/css/objects/_alignments.scss","../../wporg/css/objects/_buttons.scss","../../wporg/css/objects/_clearings.scss","../../wporg/css/objects/_copy.scss","../../wporg/css/objects/_inputs.scss","../../wporg/css/objects/_links.scss","../../wporg/css/objects/_notices.scss","../../wporg/css/components/_404.scss","../../wporg/css/components/_comments.scss","../../wporg/css/components/_entry-content.scss","../../wporg/css/components/_entry-header.scss","../../wporg/css/components/_entry-meta.scss","../../wporg/css/components/_entry-summary.scss","../../wporg/css/components/_entry.scss","../../wporg/css/components/_gallery.scss","../../wporg/css/components/_main-navigation.scss","../../wporg/css/components/_media.scss","../../wporg/css/components/_page.scss","../../wporg/css/components/_post-navigation.scss","../../wporg/css/components/_posts-navigation.scss","../../wporg/css/components/_search-form.scss","../../wporg/css/components/_search.scss","../../wporg/css/components/_site-content.scss","../../wporg/css/settings/_structure.scss","../../wporg/css/components/_site-description.scss","../../wporg/css/components/_site-header.scss","../../wporg/css/components/_site-title.scss","../../wporg/css/components/_widget-area.scss","../../wporg/css/components/_wporg-footer.scss","../../wporg/css/components/_wporg-header.scss","components/_search-form.scss","components/_site.scss"],"names":[],"mappings":"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","file":"style.css"}
     1{"version":3,"sources":["style.css","../../wporg/css/generic/_kube.scss","../../wporg/css/tools/_kube.scss","../../wporg/css/tools/_breakpoint.scss","../../wporg/css/generic/_normalize.scss","../../wporg/css/base/_copy.scss","../../wporg/css/base/_elements.scss","../../wporg/css/settings/_colors.scss","../../wporg/css/tools/_modular-scale.scss","../../wporg/css/base/_headings.scss","../../wporg/css/tools/_functions.scss","../../wporg/css/settings/_typography.scss","../../wporg/css/settings/_modular-scale.scss","../../wporg/css/base/_links.scss","../../wporg/css/base/_lists.scss","../../wporg/css/base/_tables.scss","../../wporg/css/base/_typography.scss","../../wporg/css/objects/_accessibility.scss","../../wporg/css/objects/_alignments.scss","../../wporg/css/objects/_buttons.scss","../../wporg/css/objects/_clearings.scss","../../wporg/css/objects/_copy.scss","../../wporg/css/objects/_inputs.scss","../../wporg/css/objects/_links.scss","../../wporg/css/objects/_notices.scss","../../wporg/css/components/_404.scss","../../wporg/css/components/_comments.scss","../../wporg/css/components/_entry-content.scss","../../wporg/css/components/_entry-header.scss","../../wporg/css/components/_entry-meta.scss","../../wporg/css/components/_entry-summary.scss","../../wporg/css/components/_entry.scss","../../wporg/css/components/_gallery.scss","../../wporg/css/components/_main-navigation.scss","../../wporg/css/components/_media.scss","../../wporg/css/components/_page.scss","../../wporg/css/components/_post-navigation.scss","../../wporg/css/components/_posts-navigation.scss","../../wporg/css/components/_search-form.scss","../../wporg/css/components/_search.scss","../../wporg/css/components/_site-content.scss","../../wporg/css/settings/_structure.scss","../../wporg/css/components/_site-description.scss","../../wporg/css/components/_site-header.scss","../../wporg/css/components/_site-title.scss","../../wporg/css/components/_widget-area.scss","../../wporg/css/components/_wporg-footer.scss","../../wporg/css/components/_wporg-header.scss","components/_search-form.scss","components/_site.scss"],"names":[],"mappings":"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","file":"style.css"}
Note: See TracChangeset for help on using the changeset viewer.