
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_1c72f03d429733f5fd2ea6b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.733000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_acadd399d34b5d080d5d9063.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eda41e0a5e8e5b836086d055.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78464ecad75bc1591bf78f29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c0241c786115a138230fdf06.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0313236c5ae7c08cb7a97f9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f5b2d970f9296e468424f34.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.833008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ae460de9f0c4d4814f202c3f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.804688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d737438a8c09f27870fe5bd9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.917969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ce715cb238bfc931b8ccb5da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d33c6cc7d7829bf7e319e532.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ea96fdd351059aad5f15d2ce.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a711ecd313a287d969af1e73.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.823000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.242502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242502,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245170,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245718,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245722,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245868,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.245907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245907,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.246282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246282,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246370,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246590,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246718,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252513,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252518,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252738,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252797,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252987,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.254073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254073,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254455,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254457,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.254782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254782,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-2.262000px;}
.ls21{letter-spacing:-1.920000px;}
.ls5{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.356490px;}
.ls1b{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.780000px;}
.lsb{letter-spacing:0.840000px;}
.lsc{letter-spacing:0.900000px;}
.ls22{letter-spacing:0.960000px;}
.ls11{letter-spacing:1.020000px;}
.ls3{letter-spacing:1.067400px;}
.ls2{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.086600px;}
.ls1e{letter-spacing:1.140000px;}
.ls9{letter-spacing:1.200000px;}
.ls1a{letter-spacing:1.260000px;}
.lsd{letter-spacing:1.320000px;}
.lse{letter-spacing:1.380000px;}
.ls1{letter-spacing:1.440000px;}
.ls26{letter-spacing:1.500000px;}
.ls19{letter-spacing:1.560000px;}
.ls2b{letter-spacing:1.620000px;}
.ls13{letter-spacing:1.680000px;}
.lsa{letter-spacing:1.740000px;}
.ls17{letter-spacing:1.800000px;}
.ls16{letter-spacing:1.860000px;}
.ls8{letter-spacing:1.920000px;}
.ls14{letter-spacing:1.980000px;}
.lsf{letter-spacing:2.040000px;}
.ls25{letter-spacing:2.100000px;}
.ls1d{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.220000px;}
.ls18{letter-spacing:2.280000px;}
.ls2e{letter-spacing:2.340000px;}
.ls30{letter-spacing:2.400000px;}
.ls2d{letter-spacing:2.520000px;}
.ls2c{letter-spacing:2.580000px;}
.ls28{letter-spacing:2.640000px;}
.ls32{letter-spacing:2.820000px;}
.ls31{letter-spacing:3.000000px;}
.ls33{letter-spacing:3.180000px;}
.ls2a{letter-spacing:3.300000px;}
.ls34{letter-spacing:3.540000px;}
.ls0{letter-spacing:3.840000px;}
.ls6{letter-spacing:5.220000px;}
.ls1f{letter-spacing:54.540000px;}
.ls2f{letter-spacing:58.614000px;}
.ls20{letter-spacing:59.814000px;}
.ls27{letter-spacing:69.039000px;}
.ls29{letter-spacing:69.039600px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(220,171,21),0 0.015em rgb(220,171,21),0.015em 0 rgb(220,171,21),0 -0.015em  rgb(220,171,21);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(220,171,21);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2a{word-spacing:-52.272000px;}
.ws7{word-spacing:-35.856000px;}
.ws3{word-spacing:-29.040000px;}
.ws2f{word-spacing:-17.928000px;}
.ws26{word-spacing:-16.380000px;}
.ws4{word-spacing:-15.120000px;}
.ws2b{word-spacing:-14.220000px;}
.wsa{word-spacing:-9.072000px;}
.wsb{word-spacing:-8.983548px;}
.ws0{word-spacing:-7.488000px;}
.ws25{word-spacing:-4.422000px;}
.ws42{word-spacing:-3.540000px;}
.ws36{word-spacing:-3.300000px;}
.ws41{word-spacing:-3.180000px;}
.ws3f{word-spacing:-3.000000px;}
.ws40{word-spacing:-2.820000px;}
.ws35{word-spacing:-2.640000px;}
.ws39{word-spacing:-2.580000px;}
.ws3a{word-spacing:-2.520000px;}
.ws38{word-spacing:-2.400000px;}
.ws3b{word-spacing:-2.340000px;}
.ws1e{word-spacing:-2.280000px;}
.ws31{word-spacing:-2.220000px;}
.ws1c{word-spacing:-2.160000px;}
.ws32{word-spacing:-2.100000px;}
.ws13{word-spacing:-2.040000px;}
.ws18{word-spacing:-1.980000px;}
.ws34{word-spacing:-1.953000px;}
.wsc{word-spacing:-1.920000px;}
.ws1b{word-spacing:-1.860000px;}
.ws1d{word-spacing:-1.800000px;}
.wse{word-spacing:-1.740000px;}
.ws17{word-spacing:-1.680000px;}
.ws37{word-spacing:-1.620000px;}
.ws1a{word-spacing:-1.560000px;}
.ws33{word-spacing:-1.500000px;}
.ws2{word-spacing:-1.440000px;}
.ws12{word-spacing:-1.380000px;}
.ws11{word-spacing:-1.320000px;}
.ws1f{word-spacing:-1.260000px;}
.wsd{word-spacing:-1.200000px;}
.ws2d{word-spacing:-1.140000px;}
.ws5{word-spacing:-1.080000px;}
.ws15{word-spacing:-1.020000px;}
.ws28{word-spacing:-1.008000px;}
.ws1{word-spacing:-0.960000px;}
.ws10{word-spacing:-0.900000px;}
.ws9{word-spacing:-0.870000px;}
.wsf{word-spacing:-0.840000px;}
.ws19{word-spacing:-0.780000px;}
.ws24{word-spacing:-0.726000px;}
.ws14{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.600000px;}
.ws29{word-spacing:-0.540000px;}
.ws3e{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.356490px;}
.ws20{word-spacing:-0.180000px;}
.ws21{word-spacing:-0.178245px;}
.ws2c{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws27{word-spacing:1.008000px;}
.ws2e{word-spacing:1.920000px;}
.ws8{word-spacing:2.262000px;}
.ws3c{word-spacing:2.280000px;}
.ws3d{word-spacing:3.420000px;}
._31{margin-left:-70.267200px;}
._1a{margin-left:-67.686600px;}
._a{margin-left:-22.896000px;}
._7{margin-left:-15.120000px;}
._9{margin-left:-12.412800px;}
._2f{margin-left:-11.358000px;}
._0{margin-left:-7.296000px;}
._5{margin-left:-5.376000px;}
._f{margin-left:-4.300800px;}
._4{margin-left:-3.264000px;}
._2{margin-left:-1.939200px;}
._6{width:1.080000px;}
._8{width:2.869200px;}
._1{width:4.608000px;}
._3{width:6.528000px;}
._10{width:7.842000px;}
._26{width:8.862000px;}
._1e{width:10.590000px;}
._16{width:12.336000px;}
._22{width:13.446000px;}
._28{width:14.538000px;}
._21{width:16.806000px;}
._19{width:17.844000px;}
._24{width:19.434000px;}
._15{width:20.604000px;}
._20{width:21.888000px;}
._11{width:23.550000px;}
._1b{width:24.828000px;}
._13{width:26.064000px;}
._17{width:27.204000px;}
._25{width:29.184000px;}
._18{width:30.696000px;}
._12{width:32.640000px;}
._1c{width:33.822000px;}
._27{width:34.938000px;}
._1f{width:36.882000px;}
._2c{width:38.514000px;}
._2a{width:40.884000px;}
._2d{width:43.776000px;}
._14{width:47.304000px;}
._2b{width:48.576000px;}
._29{width:49.602000px;}
._23{width:55.560000px;}
._1d{width:57.210000px;}
._30{width:67.344000px;}
._2e{width:85.164000px;}
._32{width:280.621800px;}
._33{width:391.458600px;}
._d{width:513.264600px;}
._c{width:1760.139600px;}
._b{width:1928.979600px;}
._e{width:2191.985400px;}
.fc7{color:rgb(242,132,19);}
.fc6{color:rgb(193,127,28);}
.fc5{color:transparent;}
.fc4{color:rgb(65,68,65);}
.fc3{color:rgb(173,180,202);}
.fc2{color:rgb(220,171,21);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:35.649000px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:41.940000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fsd{font-size:63.000000px;}
.fsc{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fse{font-size:84.000000px;}
.fs10{font-size:96.000000px;}
.fsf{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:174.000000px;}
.fs0{font-size:192.000000px;}
.fs5{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:22.913700px;}
.y85{bottom:51.295200px;}
.yf8{bottom:61.795350px;}
.ye6{bottom:69.031500px;}
.y84{bottom:69.295200px;}
.yf7{bottom:79.795350px;}
.ye5{bottom:90.781500px;}
.y83{bottom:96.295200px;}
.y5b{bottom:97.245600px;}
.ya0{bottom:97.795200px;}
.yf6{bottom:97.795350px;}
.ye4{bottom:112.531500px;}
.y82{bottom:112.795200px;}
.y9f{bottom:115.795200px;}
.yf5{bottom:115.795350px;}
.y106{bottom:118.795200px;}
.y5a{bottom:121.170600px;}
.y81{bottom:129.295200px;}
.y2c{bottom:133.795200px;}
.yf4{bottom:133.795350px;}
.y9e{bottom:142.795200px;}
.y80{bottom:145.795200px;}
.y2b{bottom:151.795200px;}
.yf3{bottom:151.795350px;}
.y9d{bottom:159.295200px;}
.y105{bottom:160.795200px;}
.y7f{bottom:162.295200px;}
.y2a{bottom:169.795200px;}
.y9c{bottom:175.795200px;}
.y7e{bottom:178.795200px;}
.y54{bottom:180.195150px;}
.y29{bottom:187.795200px;}
.y9b{bottom:192.295200px;}
.y53{bottom:193.695150px;}
.y7d{bottom:195.295200px;}
.y104{bottom:202.795200px;}
.y28{bottom:205.795200px;}
.y52{bottom:207.195150px;}
.y9a{bottom:208.795200px;}
.y7c{bottom:211.795200px;}
.y103{bottom:223.795200px;}
.y99{bottom:225.295200px;}
.y7b{bottom:228.295200px;}
.y5e{bottom:237.834900px;}
.y59{bottom:239.134950px;}
.y27{bottom:241.795200px;}
.y7a{bottom:244.795200px;}
.y58{bottom:252.634950px;}
.y55{bottom:255.394350px;}
.y98{bottom:258.295200px;}
.y5d{bottom:259.584900px;}
.y26{bottom:259.795200px;}
.y79{bottom:261.295200px;}
.y102{bottom:265.795200px;}
.y97{bottom:274.795200px;}
.y25{bottom:277.795200px;}
.yf2{bottom:277.795350px;}
.y5c{bottom:281.334900px;}
.y101{bottom:286.795200px;}
.y96{bottom:291.295200px;}
.y78{bottom:294.295200px;}
.y95{bottom:307.795200px;}
.y77{bottom:310.795200px;}
.y24{bottom:313.795200px;}
.yf1{bottom:313.795350px;}
.y94{bottom:324.295200px;}
.y76{bottom:327.295200px;}
.y100{bottom:328.795200px;}
.y23{bottom:331.795200px;}
.yf0{bottom:331.795350px;}
.y75{bottom:343.795200px;}
.y22{bottom:349.795200px;}
.y4f{bottom:356.484900px;}
.y51{bottom:358.610850px;}
.y74{bottom:360.295200px;}
.y21{bottom:367.795200px;}
.yef{bottom:367.795350px;}
.y4e{bottom:369.984900px;}
.yff{bottom:370.795200px;}
.y50{bottom:372.110850px;}
.y20{bottom:385.795200px;}
.ye2{bottom:387.295350px;}
.y1f{bottom:403.795200px;}
.yee{bottom:403.795350px;}
.ye1{bottom:405.295350px;}
.y57{bottom:412.671450px;}
.yfe{bottom:412.795200px;}
.y1e{bottom:421.795200px;}
.yed{bottom:421.795350px;}
.ye0{bottom:423.295350px;}
.y56{bottom:426.171450px;}
.yfd{bottom:433.795200px;}
.y1d{bottom:439.795200px;}
.y73{bottom:439.795350px;}
.ydf{bottom:441.295350px;}
.ybf{bottom:448.795200px;}
.yfc{bottom:454.795200px;}
.y1c{bottom:457.795200px;}
.y93{bottom:457.795350px;}
.ybe{bottom:465.295200px;}
.yde{bottom:468.295350px;}
.y1b{bottom:475.795200px;}
.y92{bottom:475.795350px;}
.ybd{bottom:481.795200px;}
.ydd{bottom:484.795350px;}
.y1a{bottom:493.795200px;}
.y72{bottom:493.795350px;}
.yfb{bottom:496.795200px;}
.ybc{bottom:498.295200px;}
.ydc{bottom:501.295350px;}
.y91{bottom:504.295350px;}
.y19{bottom:511.795200px;}
.y71{bottom:511.795350px;}
.ybb{bottom:514.795200px;}
.yfa{bottom:517.795200px;}
.ydb{bottom:517.795350px;}
.y90{bottom:520.795350px;}
.y18{bottom:529.795200px;}
.ye3{bottom:529.795350px;}
.yba{bottom:531.295200px;}
.yda{bottom:534.295350px;}
.y8f{bottom:537.295350px;}
.y70{bottom:540.295350px;}
.y17{bottom:547.795200px;}
.yec{bottom:547.795350px;}
.yd9{bottom:550.795350px;}
.y8e{bottom:553.795350px;}
.y6f{bottom:556.795350px;}
.yf9{bottom:559.795200px;}
.yb9{bottom:564.295200px;}
.y16{bottom:565.795200px;}
.yeb{bottom:565.795350px;}
.yd8{bottom:567.295350px;}
.y8d{bottom:570.295350px;}
.y6e{bottom:573.295350px;}
.yb8{bottom:580.795200px;}
.y15{bottom:583.795200px;}
.y4b{bottom:583.795350px;}
.y8c{bottom:586.795350px;}
.y6d{bottom:589.795350px;}
.yb7{bottom:597.295200px;}
.yd7{bottom:600.295350px;}
.y14{bottom:601.795200px;}
.y4a{bottom:601.795350px;}
.y8b{bottom:603.295350px;}
.y6c{bottom:606.295350px;}
.yb6{bottom:613.795200px;}
.yd6{bottom:616.795350px;}
.y13{bottom:619.795200px;}
.y49{bottom:619.795350px;}
.y6b{bottom:622.795350px;}
.y62{bottom:624.788550px;}
.yb5{bottom:630.295200px;}
.yd5{bottom:633.295350px;}
.y8a{bottom:636.295350px;}
.y12{bottom:637.795200px;}
.y48{bottom:637.795350px;}
.y6a{bottom:639.295350px;}
.yd4{bottom:649.795350px;}
.y61{bottom:649.988550px;}
.y89{bottom:652.795350px;}
.yb4{bottom:655.795200px;}
.y47{bottom:655.795350px;}
.yd3{bottom:666.295350px;}
.y88{bottom:669.295350px;}
.y69{bottom:672.295350px;}
.y11{bottom:673.795200px;}
.y46{bottom:673.795350px;}
.y60{bottom:675.188550px;}
.y87{bottom:685.795350px;}
.y68{bottom:688.795350px;}
.y64{bottom:691.795200px;}
.y4d{bottom:691.795350px;}
.y5f{bottom:700.388550px;}
.y86{bottom:702.295350px;}
.y67{bottom:705.295350px;}
.y10{bottom:709.795200px;}
.y45{bottom:709.795350px;}
.y66{bottom:721.795350px;}
.yb3{bottom:727.795200px;}
.y44{bottom:727.795350px;}
.y65{bottom:738.295350px;}
.yf{bottom:745.795200px;}
.y43{bottom:745.795350px;}
.y2f{bottom:763.795200px;}
.y42{bottom:763.795350px;}
.ye{bottom:781.795200px;}
.y41{bottom:781.795350px;}
.yb2{bottom:795.791250px;}
.y2e{bottom:799.795200px;}
.y40{bottom:799.795350px;}
.yd2{bottom:804.295200px;}
.yb1{bottom:813.791250px;}
.yd{bottom:817.795200px;}
.y3f{bottom:817.795350px;}
.yd1{bottom:822.295200px;}
.yb0{bottom:831.791250px;}
.yc{bottom:835.795200px;}
.y3e{bottom:835.795350px;}
.yd0{bottom:849.295200px;}
.yaf{bottom:849.791250px;}
.y63{bottom:853.795200px;}
.y3d{bottom:853.795350px;}
.ycf{bottom:865.795200px;}
.yb{bottom:871.795200px;}
.y3c{bottom:871.795350px;}
.yae{bottom:876.295200px;}
.yce{bottom:882.295200px;}
.ya{bottom:889.795200px;}
.y4c{bottom:889.795350px;}
.yad{bottom:892.795200px;}
.ycd{bottom:898.795200px;}
.y9{bottom:907.795200px;}
.y3b{bottom:907.795350px;}
.yac{bottom:909.295200px;}
.ycc{bottom:915.295200px;}
.yab{bottom:925.795200px;}
.y3a{bottom:925.795350px;}
.ycb{bottom:931.795200px;}
.yaa{bottom:942.295200px;}
.y8{bottom:943.795200px;}
.y39{bottom:943.795350px;}
.yca{bottom:948.295200px;}
.ya9{bottom:958.795200px;}
.y7{bottom:961.795200px;}
.y38{bottom:961.795350px;}
.yc9{bottom:964.795200px;}
.ya8{bottom:975.295200px;}
.y6{bottom:979.795200px;}
.y37{bottom:979.795350px;}
.yc8{bottom:981.295200px;}
.ya7{bottom:991.795200px;}
.yc7{bottom:997.795200px;}
.y36{bottom:997.795350px;}
.ya6{bottom:1008.295200px;}
.yc6{bottom:1014.295200px;}
.y5{bottom:1015.795200px;}
.y35{bottom:1015.795350px;}
.yc5{bottom:1030.795200px;}
.ya5{bottom:1033.795200px;}
.y34{bottom:1033.795350px;}
.y3{bottom:1044.319500px;}
.yc4{bottom:1047.295200px;}
.y4{bottom:1051.795200px;}
.y33{bottom:1051.795350px;}
.yc3{bottom:1063.795200px;}
.ya4{bottom:1069.795200px;}
.y32{bottom:1069.795350px;}
.yc2{bottom:1080.295200px;}
.ya3{bottom:1087.795200px;}
.yea{bottom:1087.795350px;}
.y2{bottom:1087.819500px;}
.ya2{bottom:1105.795200px;}
.ye9{bottom:1105.795350px;}
.ya1{bottom:1123.795200px;}
.y31{bottom:1123.795350px;}
.y1{bottom:1132.819500px;}
.yc1{bottom:1141.795200px;}
.ye8{bottom:1141.795350px;}
.yc0{bottom:1159.795200px;}
.ye7{bottom:1159.795350px;}
.y2d{bottom:1209.071100px;}
.hd{height:27.307134px;}
.hc{height:27.576000px;}
.he{height:32.126040px;}
.h7{height:34.272000px;}
.h1c{height:37.800000px;}
.h5{height:41.317383px;}
.h1a{height:42.832031px;}
.h1b{height:42.840000px;}
.h18{height:43.020000px;}
.h17{height:43.359375px;}
.hb{height:45.908203px;}
.h11{height:48.203613px;}
.h6{height:50.282227px;}
.h16{height:55.008000px;}
.h19{height:55.152000px;}
.h10{height:58.662598px;}
.hf{height:61.456055px;}
.h9{height:67.042969px;}
.h15{height:73.536000px;}
.h12{height:78.216797px;}
.h13{height:82.728000px;}
.h4{height:91.920000px;}
.h3{height:110.016000px;}
.ha{height:124.584000px;}
.h2{height:137.472000px;}
.h14{height:154.656000px;}
.h8{height:165.456000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:21.259800px;}
.x2b{left:78.296100px;}
.x7{left:81.173850px;}
.x1b{left:83.006250px;}
.x4{left:85.039350px;}
.x14{left:86.527500px;}
.x29{left:96.094500px;}
.x1c{left:98.406000px;}
.x2{left:100.646550px;}
.x1d{left:112.039350px;}
.x16{left:115.440900px;}
.x1{left:127.237950px;}
.x2c{left:170.105700px;}
.xc{left:312.019650px;}
.xb{left:313.488750px;}
.x13{left:321.423300px;}
.x12{left:325.444650px;}
.x2f{left:334.488150px;}
.x17{left:348.661350px;}
.x30{left:360.000000px;}
.x18{left:362.354100px;}
.x19{left:376.232850px;}
.x1a{left:393.285000px;}
.x3{left:397.227150px;}
.xe{left:410.522100px;}
.x11{left:416.894700px;}
.xf{left:420.657300px;}
.xd{left:422.228250px;}
.x24{left:432.151950px;}
.x6{left:458.486400px;}
.x8{left:459.533550px;}
.x23{left:465.121500px;}
.x1f{left:466.281000px;}
.x1e{left:467.665500px;}
.x25{left:471.887850px;}
.x20{left:481.083150px;}
.x27{left:484.777050px;}
.x28{left:486.361050px;}
.x26{left:488.874300px;}
.x21{left:494.716500px;}
.x10{left:502.733400px;}
.xa{left:509.355150px;}
.x9{left:517.805550px;}
.x2e{left:542.816400px;}
.x2d{left:544.137900px;}
.x2a{left:844.714200px;}
.x5{left:851.284050px;}
.x22{left:854.793750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-2.010667pt;}
.ls21{letter-spacing:-1.706667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.316880pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.693333pt;}
.lsb{letter-spacing:0.746667pt;}
.lsc{letter-spacing:0.800000pt;}
.ls22{letter-spacing:0.853333pt;}
.ls11{letter-spacing:0.906667pt;}
.ls3{letter-spacing:0.948800pt;}
.ls2{letter-spacing:0.960000pt;}
.ls4{letter-spacing:0.965867pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls9{letter-spacing:1.066667pt;}
.ls1a{letter-spacing:1.120000pt;}
.lsd{letter-spacing:1.173333pt;}
.lse{letter-spacing:1.226667pt;}
.ls1{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.333333pt;}
.ls19{letter-spacing:1.386667pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls13{letter-spacing:1.493333pt;}
.lsa{letter-spacing:1.546667pt;}
.ls17{letter-spacing:1.600000pt;}
.ls16{letter-spacing:1.653333pt;}
.ls8{letter-spacing:1.706667pt;}
.ls14{letter-spacing:1.760000pt;}
.lsf{letter-spacing:1.813333pt;}
.ls25{letter-spacing:1.866667pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls24{letter-spacing:1.973333pt;}
.ls18{letter-spacing:2.026667pt;}
.ls2e{letter-spacing:2.080000pt;}
.ls30{letter-spacing:2.133333pt;}
.ls2d{letter-spacing:2.240000pt;}
.ls2c{letter-spacing:2.293333pt;}
.ls28{letter-spacing:2.346667pt;}
.ls32{letter-spacing:2.506667pt;}
.ls31{letter-spacing:2.666667pt;}
.ls33{letter-spacing:2.826667pt;}
.ls2a{letter-spacing:2.933333pt;}
.ls34{letter-spacing:3.146667pt;}
.ls0{letter-spacing:3.413333pt;}
.ls6{letter-spacing:4.640000pt;}
.ls1f{letter-spacing:48.480000pt;}
.ls2f{letter-spacing:52.101333pt;}
.ls20{letter-spacing:53.168000pt;}
.ls27{letter-spacing:61.368000pt;}
.ls29{letter-spacing:61.368533pt;}
.ws2a{word-spacing:-46.464000pt;}
.ws7{word-spacing:-31.872000pt;}
.ws3{word-spacing:-25.813333pt;}
.ws2f{word-spacing:-15.936000pt;}
.ws26{word-spacing:-14.560000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws2b{word-spacing:-12.640000pt;}
.wsa{word-spacing:-8.064000pt;}
.wsb{word-spacing:-7.985376pt;}
.ws0{word-spacing:-6.656000pt;}
.ws25{word-spacing:-3.930667pt;}
.ws42{word-spacing:-3.146667pt;}
.ws36{word-spacing:-2.933333pt;}
.ws41{word-spacing:-2.826667pt;}
.ws3f{word-spacing:-2.666667pt;}
.ws40{word-spacing:-2.506667pt;}
.ws35{word-spacing:-2.346667pt;}
.ws39{word-spacing:-2.293333pt;}
.ws3a{word-spacing:-2.240000pt;}
.ws38{word-spacing:-2.133333pt;}
.ws3b{word-spacing:-2.080000pt;}
.ws1e{word-spacing:-2.026667pt;}
.ws31{word-spacing:-1.973333pt;}
.ws1c{word-spacing:-1.920000pt;}
.ws32{word-spacing:-1.866667pt;}
.ws13{word-spacing:-1.813333pt;}
.ws18{word-spacing:-1.760000pt;}
.ws34{word-spacing:-1.736000pt;}
.wsc{word-spacing:-1.706667pt;}
.ws1b{word-spacing:-1.653333pt;}
.ws1d{word-spacing:-1.600000pt;}
.wse{word-spacing:-1.546667pt;}
.ws17{word-spacing:-1.493333pt;}
.ws37{word-spacing:-1.440000pt;}
.ws1a{word-spacing:-1.386667pt;}
.ws33{word-spacing:-1.333333pt;}
.ws2{word-spacing:-1.280000pt;}
.ws12{word-spacing:-1.226667pt;}
.ws11{word-spacing:-1.173333pt;}
.ws1f{word-spacing:-1.120000pt;}
.wsd{word-spacing:-1.066667pt;}
.ws2d{word-spacing:-1.013333pt;}
.ws5{word-spacing:-0.960000pt;}
.ws15{word-spacing:-0.906667pt;}
.ws28{word-spacing:-0.896000pt;}
.ws1{word-spacing:-0.853333pt;}
.ws10{word-spacing:-0.800000pt;}
.ws9{word-spacing:-0.773333pt;}
.wsf{word-spacing:-0.746667pt;}
.ws19{word-spacing:-0.693333pt;}
.ws24{word-spacing:-0.645333pt;}
.ws14{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.533333pt;}
.ws29{word-spacing:-0.480000pt;}
.ws3e{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.316880pt;}
.ws20{word-spacing:-0.160000pt;}
.ws21{word-spacing:-0.158440pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws27{word-spacing:0.896000pt;}
.ws2e{word-spacing:1.706667pt;}
.ws8{word-spacing:2.010667pt;}
.ws3c{word-spacing:2.026667pt;}
.ws3d{word-spacing:3.040000pt;}
._31{margin-left:-62.459733pt;}
._1a{margin-left:-60.165867pt;}
._a{margin-left:-20.352000pt;}
._7{margin-left:-13.440000pt;}
._9{margin-left:-11.033600pt;}
._2f{margin-left:-10.096000pt;}
._0{margin-left:-6.485333pt;}
._5{margin-left:-4.778667pt;}
._f{margin-left:-3.822933pt;}
._4{margin-left:-2.901333pt;}
._2{margin-left:-1.723733pt;}
._6{width:0.960000pt;}
._8{width:2.550400pt;}
._1{width:4.096000pt;}
._3{width:5.802667pt;}
._10{width:6.970667pt;}
._26{width:7.877333pt;}
._1e{width:9.413333pt;}
._16{width:10.965333pt;}
._22{width:11.952000pt;}
._28{width:12.922667pt;}
._21{width:14.938667pt;}
._19{width:15.861333pt;}
._24{width:17.274667pt;}
._15{width:18.314667pt;}
._20{width:19.456000pt;}
._11{width:20.933333pt;}
._1b{width:22.069333pt;}
._13{width:23.168000pt;}
._17{width:24.181333pt;}
._25{width:25.941333pt;}
._18{width:27.285333pt;}
._12{width:29.013333pt;}
._1c{width:30.064000pt;}
._27{width:31.056000pt;}
._1f{width:32.784000pt;}
._2c{width:34.234667pt;}
._2a{width:36.341333pt;}
._2d{width:38.912000pt;}
._14{width:42.048000pt;}
._2b{width:43.178667pt;}
._29{width:44.090667pt;}
._23{width:49.386667pt;}
._1d{width:50.853333pt;}
._30{width:59.861333pt;}
._2e{width:75.701333pt;}
._32{width:249.441600pt;}
._33{width:347.963200pt;}
._d{width:456.235200pt;}
._c{width:1564.568533pt;}
._b{width:1714.648533pt;}
._e{width:1948.431467pt;}
.fsa{font-size:31.688000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:37.280000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fsd{font-size:56.000000pt;}
.fsc{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fse{font-size:74.666667pt;}
.fs10{font-size:85.333333pt;}
.fsf{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:154.666667pt;}
.fs0{font-size:170.666667pt;}
.fs5{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:20.367733pt;}
.y85{bottom:45.595733pt;}
.yf8{bottom:54.929200pt;}
.ye6{bottom:61.361333pt;}
.y84{bottom:61.595733pt;}
.yf7{bottom:70.929200pt;}
.ye5{bottom:80.694667pt;}
.y83{bottom:85.595733pt;}
.y5b{bottom:86.440533pt;}
.ya0{bottom:86.929067pt;}
.yf6{bottom:86.929200pt;}
.ye4{bottom:100.028000pt;}
.y82{bottom:100.262400pt;}
.y9f{bottom:102.929067pt;}
.yf5{bottom:102.929200pt;}
.y106{bottom:105.595733pt;}
.y5a{bottom:107.707200pt;}
.y81{bottom:114.929067pt;}
.y2c{bottom:118.929067pt;}
.yf4{bottom:118.929200pt;}
.y9e{bottom:126.929067pt;}
.y80{bottom:129.595733pt;}
.y2b{bottom:134.929067pt;}
.yf3{bottom:134.929200pt;}
.y9d{bottom:141.595733pt;}
.y105{bottom:142.929067pt;}
.y7f{bottom:144.262400pt;}
.y2a{bottom:150.929067pt;}
.y9c{bottom:156.262400pt;}
.y7e{bottom:158.929067pt;}
.y54{bottom:160.173467pt;}
.y29{bottom:166.929067pt;}
.y9b{bottom:170.929067pt;}
.y53{bottom:172.173467pt;}
.y7d{bottom:173.595733pt;}
.y104{bottom:180.262400pt;}
.y28{bottom:182.929067pt;}
.y52{bottom:184.173467pt;}
.y9a{bottom:185.595733pt;}
.y7c{bottom:188.262400pt;}
.y103{bottom:198.929067pt;}
.y99{bottom:200.262400pt;}
.y7b{bottom:202.929067pt;}
.y5e{bottom:211.408800pt;}
.y59{bottom:212.564400pt;}
.y27{bottom:214.929067pt;}
.y7a{bottom:217.595733pt;}
.y58{bottom:224.564400pt;}
.y55{bottom:227.017200pt;}
.y98{bottom:229.595733pt;}
.y5d{bottom:230.742133pt;}
.y26{bottom:230.929067pt;}
.y79{bottom:232.262400pt;}
.y102{bottom:236.262400pt;}
.y97{bottom:244.262400pt;}
.y25{bottom:246.929067pt;}
.yf2{bottom:246.929200pt;}
.y5c{bottom:250.075467pt;}
.y101{bottom:254.929067pt;}
.y96{bottom:258.929067pt;}
.y78{bottom:261.595733pt;}
.y95{bottom:273.595733pt;}
.y77{bottom:276.262400pt;}
.y24{bottom:278.929067pt;}
.yf1{bottom:278.929200pt;}
.y94{bottom:288.262400pt;}
.y76{bottom:290.929067pt;}
.y100{bottom:292.262400pt;}
.y23{bottom:294.929067pt;}
.yf0{bottom:294.929200pt;}
.y75{bottom:305.595733pt;}
.y22{bottom:310.929067pt;}
.y4f{bottom:316.875467pt;}
.y51{bottom:318.765200pt;}
.y74{bottom:320.262400pt;}
.y21{bottom:326.929067pt;}
.yef{bottom:326.929200pt;}
.y4e{bottom:328.875467pt;}
.yff{bottom:329.595733pt;}
.y50{bottom:330.765200pt;}
.y20{bottom:342.929067pt;}
.ye2{bottom:344.262533pt;}
.y1f{bottom:358.929067pt;}
.yee{bottom:358.929200pt;}
.ye1{bottom:360.262533pt;}
.y57{bottom:366.819067pt;}
.yfe{bottom:366.929067pt;}
.y1e{bottom:374.929067pt;}
.yed{bottom:374.929200pt;}
.ye0{bottom:376.262533pt;}
.y56{bottom:378.819067pt;}
.yfd{bottom:385.595733pt;}
.y1d{bottom:390.929067pt;}
.y73{bottom:390.929200pt;}
.ydf{bottom:392.262533pt;}
.ybf{bottom:398.929067pt;}
.yfc{bottom:404.262400pt;}
.y1c{bottom:406.929067pt;}
.y93{bottom:406.929200pt;}
.ybe{bottom:413.595733pt;}
.yde{bottom:416.262533pt;}
.y1b{bottom:422.929067pt;}
.y92{bottom:422.929200pt;}
.ybd{bottom:428.262400pt;}
.ydd{bottom:430.929200pt;}
.y1a{bottom:438.929067pt;}
.y72{bottom:438.929200pt;}
.yfb{bottom:441.595733pt;}
.ybc{bottom:442.929067pt;}
.ydc{bottom:445.595867pt;}
.y91{bottom:448.262533pt;}
.y19{bottom:454.929067pt;}
.y71{bottom:454.929200pt;}
.ybb{bottom:457.595733pt;}
.yfa{bottom:460.262400pt;}
.ydb{bottom:460.262533pt;}
.y90{bottom:462.929200pt;}
.y18{bottom:470.929067pt;}
.ye3{bottom:470.929200pt;}
.yba{bottom:472.262400pt;}
.yda{bottom:474.929200pt;}
.y8f{bottom:477.595867pt;}
.y70{bottom:480.262533pt;}
.y17{bottom:486.929067pt;}
.yec{bottom:486.929200pt;}
.yd9{bottom:489.595867pt;}
.y8e{bottom:492.262533pt;}
.y6f{bottom:494.929200pt;}
.yf9{bottom:497.595733pt;}
.yb9{bottom:501.595733pt;}
.y16{bottom:502.929067pt;}
.yeb{bottom:502.929200pt;}
.yd8{bottom:504.262533pt;}
.y8d{bottom:506.929200pt;}
.y6e{bottom:509.595867pt;}
.yb8{bottom:516.262400pt;}
.y15{bottom:518.929067pt;}
.y4b{bottom:518.929200pt;}
.y8c{bottom:521.595867pt;}
.y6d{bottom:524.262533pt;}
.yb7{bottom:530.929067pt;}
.yd7{bottom:533.595867pt;}
.y14{bottom:534.929067pt;}
.y4a{bottom:534.929200pt;}
.y8b{bottom:536.262533pt;}
.y6c{bottom:538.929200pt;}
.yb6{bottom:545.595733pt;}
.yd6{bottom:548.262533pt;}
.y13{bottom:550.929067pt;}
.y49{bottom:550.929200pt;}
.y6b{bottom:553.595867pt;}
.y62{bottom:555.367600pt;}
.yb5{bottom:560.262400pt;}
.yd5{bottom:562.929200pt;}
.y8a{bottom:565.595867pt;}
.y12{bottom:566.929067pt;}
.y48{bottom:566.929200pt;}
.y6a{bottom:568.262533pt;}
.yd4{bottom:577.595867pt;}
.y61{bottom:577.767600pt;}
.y89{bottom:580.262533pt;}
.yb4{bottom:582.929067pt;}
.y47{bottom:582.929200pt;}
.yd3{bottom:592.262533pt;}
.y88{bottom:594.929200pt;}
.y69{bottom:597.595867pt;}
.y11{bottom:598.929067pt;}
.y46{bottom:598.929200pt;}
.y60{bottom:600.167600pt;}
.y87{bottom:609.595867pt;}
.y68{bottom:612.262533pt;}
.y64{bottom:614.929067pt;}
.y4d{bottom:614.929200pt;}
.y5f{bottom:622.567600pt;}
.y86{bottom:624.262533pt;}
.y67{bottom:626.929200pt;}
.y10{bottom:630.929067pt;}
.y45{bottom:630.929200pt;}
.y66{bottom:641.595867pt;}
.yb3{bottom:646.929067pt;}
.y44{bottom:646.929200pt;}
.y65{bottom:656.262533pt;}
.yf{bottom:662.929067pt;}
.y43{bottom:662.929200pt;}
.y2f{bottom:678.929067pt;}
.y42{bottom:678.929200pt;}
.ye{bottom:694.929067pt;}
.y41{bottom:694.929200pt;}
.yb2{bottom:707.370000pt;}
.y2e{bottom:710.929067pt;}
.y40{bottom:710.929200pt;}
.yd2{bottom:714.929067pt;}
.yb1{bottom:723.370000pt;}
.yd{bottom:726.929067pt;}
.y3f{bottom:726.929200pt;}
.yd1{bottom:730.929067pt;}
.yb0{bottom:739.370000pt;}
.yc{bottom:742.929067pt;}
.y3e{bottom:742.929200pt;}
.yd0{bottom:754.929067pt;}
.yaf{bottom:755.370000pt;}
.y63{bottom:758.929067pt;}
.y3d{bottom:758.929200pt;}
.ycf{bottom:769.595733pt;}
.yb{bottom:774.929067pt;}
.y3c{bottom:774.929200pt;}
.yae{bottom:778.929067pt;}
.yce{bottom:784.262400pt;}
.ya{bottom:790.929067pt;}
.y4c{bottom:790.929200pt;}
.yad{bottom:793.595733pt;}
.ycd{bottom:798.929067pt;}
.y9{bottom:806.929067pt;}
.y3b{bottom:806.929200pt;}
.yac{bottom:808.262400pt;}
.ycc{bottom:813.595733pt;}
.yab{bottom:822.929067pt;}
.y3a{bottom:822.929200pt;}
.ycb{bottom:828.262400pt;}
.yaa{bottom:837.595733pt;}
.y8{bottom:838.929067pt;}
.y39{bottom:838.929200pt;}
.yca{bottom:842.929067pt;}
.ya9{bottom:852.262400pt;}
.y7{bottom:854.929067pt;}
.y38{bottom:854.929200pt;}
.yc9{bottom:857.595733pt;}
.ya8{bottom:866.929067pt;}
.y6{bottom:870.929067pt;}
.y37{bottom:870.929200pt;}
.yc8{bottom:872.262400pt;}
.ya7{bottom:881.595733pt;}
.yc7{bottom:886.929067pt;}
.y36{bottom:886.929200pt;}
.ya6{bottom:896.262400pt;}
.yc6{bottom:901.595733pt;}
.y5{bottom:902.929067pt;}
.y35{bottom:902.929200pt;}
.yc5{bottom:916.262400pt;}
.ya5{bottom:918.929067pt;}
.y34{bottom:918.929200pt;}
.y3{bottom:928.284000pt;}
.yc4{bottom:930.929067pt;}
.y4{bottom:934.929067pt;}
.y33{bottom:934.929200pt;}
.yc3{bottom:945.595733pt;}
.ya4{bottom:950.929067pt;}
.y32{bottom:950.929200pt;}
.yc2{bottom:960.262400pt;}
.ya3{bottom:966.929067pt;}
.yea{bottom:966.929200pt;}
.y2{bottom:966.950667pt;}
.ya2{bottom:982.929067pt;}
.ye9{bottom:982.929200pt;}
.ya1{bottom:998.929067pt;}
.y31{bottom:998.929200pt;}
.y1{bottom:1006.950667pt;}
.yc1{bottom:1014.929067pt;}
.ye8{bottom:1014.929200pt;}
.yc0{bottom:1030.929067pt;}
.ye7{bottom:1030.929200pt;}
.y2d{bottom:1074.729867pt;}
.hd{height:24.273008pt;}
.hc{height:24.512000pt;}
.he{height:28.556480pt;}
.h7{height:30.464000pt;}
.h1c{height:33.600000pt;}
.h5{height:36.726562pt;}
.h1a{height:38.072917pt;}
.h1b{height:38.080000pt;}
.h18{height:38.240000pt;}
.h17{height:38.541667pt;}
.hb{height:40.807292pt;}
.h11{height:42.847656pt;}
.h6{height:44.695312pt;}
.h16{height:48.896000pt;}
.h19{height:49.024000pt;}
.h10{height:52.144531pt;}
.hf{height:54.627604pt;}
.h9{height:59.593750pt;}
.h15{height:65.365333pt;}
.h12{height:69.526042pt;}
.h13{height:73.536000pt;}
.h4{height:81.706667pt;}
.h3{height:97.792000pt;}
.ha{height:110.741333pt;}
.h2{height:122.197333pt;}
.h14{height:137.472000pt;}
.h8{height:147.072000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:18.897600pt;}
.x2b{left:69.596533pt;}
.x7{left:72.154533pt;}
.x1b{left:73.783333pt;}
.x4{left:75.590533pt;}
.x14{left:76.913333pt;}
.x29{left:85.417333pt;}
.x1c{left:87.472000pt;}
.x2{left:89.463600pt;}
.x1d{left:99.590533pt;}
.x16{left:102.614133pt;}
.x1{left:113.100400pt;}
.x2c{left:151.205067pt;}
.xc{left:277.350800pt;}
.xb{left:278.656667pt;}
.x13{left:285.709600pt;}
.x12{left:289.284133pt;}
.x2f{left:297.322800pt;}
.x17{left:309.921200pt;}
.x30{left:320.000000pt;}
.x18{left:322.092533pt;}
.x19{left:334.429200pt;}
.x1a{left:349.586667pt;}
.x3{left:353.090800pt;}
.xe{left:364.908533pt;}
.x11{left:370.573067pt;}
.xf{left:373.917600pt;}
.xd{left:375.314000pt;}
.x24{left:384.135067pt;}
.x6{left:407.543467pt;}
.x8{left:408.474267pt;}
.x23{left:413.441333pt;}
.x1f{left:414.472000pt;}
.x1e{left:415.702667pt;}
.x25{left:419.455867pt;}
.x20{left:427.629467pt;}
.x27{left:430.912933pt;}
.x28{left:432.320933pt;}
.x26{left:434.554933pt;}
.x21{left:439.748000pt;}
.x10{left:446.874133pt;}
.xa{left:452.760133pt;}
.x9{left:460.271600pt;}
.x2e{left:482.503467pt;}
.x2d{left:483.678133pt;}
.x2a{left:750.857067pt;}
.x5{left:756.696933pt;}
.x22{left:759.816667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  