
    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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_078e7b1c41bcc08782788b48.woff')format("woff");}.ff3{font-family:ff3;line-height:1.034000;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_73bf7b62eac4dd9adbc1c1f1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_6f32d04848f0ef1b7d2ee3d7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_4d60736ec820516b6e5a8dcf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_70b18c884ce0cf6e29231330.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_707decd551e2fb4fd1f89331.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_d4525195176a768dfdc9e6c6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.957000;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_234a73bef91289dc33b798c2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.957000;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_6494821e54642de601f7c1d5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.957000;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_406956145f187962f6ca1ca6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.957000;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:ffe;src:url('chunks/assets/font_6ed8d65fcc738622ee67203f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.957000;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:fff;src:url('chunks/assets/font_8ba527c3cf2c064544e62fca.woff')format("woff");}.fff{font-family:fff;line-height:0.957000;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:ff10;src:url('chunks/assets/font_0f5f15441649ec64ddde157d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.957000;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:ff11;src:url('chunks/assets/font_7f9ee19d9d97cb87af3b3298.woff')format("woff");}.ff11{font-family:ff11;line-height:0.957000;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:ff12;src:url('chunks/assets/font_6577af4543fe12d0cb710596.woff')format("woff");}.ff12{font-family:ff12;line-height:0.957000;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:ff13;src:url('chunks/assets/font_28480b5a40695a751258d169.woff')format("woff");}.ff13{font-family:ff13;line-height:0.957000;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:ff14;src:url('chunks/assets/font_30dacfe6e988946b9b409c5e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.957000;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:ff15;src:url('chunks/assets/font_2c38cf0cc2971f12feefed72.woff')format("woff");}.ff15{font-family:ff15;line-height:0.957000;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:ff16;src:url('chunks/assets/font_428b62476f6063f90a236f18.woff')format("woff");}.ff16{font-family:ff16;line-height:0.957000;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:ff17;src:url('chunks/assets/font_fc725f4a50eff106dfa35385.woff')format("woff");}.ff17{font-family:ff17;line-height:0.957000;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:ff18;src:url('chunks/assets/font_07bfffb083f5568161eb0686.woff')format("woff");}.ff18{font-family:ff18;line-height:0.907000;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:ff19;src:url('chunks/assets/font_ee3f42cf9c0e8b1c80493e2e.woff')format("woff");}.ff19{font-family:ff19;line-height:0.957000;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:ff1a;src:url('chunks/assets/font_02b0eb70c4b9d1652762d15d.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.957000;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:ff1b;src:url('chunks/assets/font_a88be152ecf0294dcf3cbd14.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.957000;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:ff1c;src:url('chunks/assets/font_09dddb9e3c9d84d1a52a3b7e.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.690918;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:ff1d;src:url('chunks/assets/font_bf0b26f5e61b9324be0d7f95.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.700195;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:ff1e;src:url('chunks/assets/font_4109b3d51c7c5c764f3c9ed3.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.957000;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;}
.mf{transform:matrix(0.000000,-0.249807,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249807,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249807,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249841,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249841,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249841,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{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);}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249984,0.002786,-0.002795,0.249984,0,0);-ms-transform:matrix(0.249984,0.002786,-0.002795,0.249984,0,0);-webkit-transform:matrix(0.249984,0.002786,-0.002795,0.249984,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);}
.mb{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-37.726200px;}
.v3{vertical-align:-35.579702px;}
.v2{vertical-align:-8.639400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls25{letter-spacing:-2.484000px;}
.ls29{letter-spacing:-1.620000px;}
.ls21{letter-spacing:-1.080000px;}
.ls2b{letter-spacing:-1.026000px;}
.ls2e{letter-spacing:-0.810000px;}
.ls15{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.432000px;}
.ls2d{letter-spacing:-0.378000px;}
.ls24{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.005400px;}
.ls31{letter-spacing:0.017400px;}
.lsa{letter-spacing:0.027000px;}
.ls18{letter-spacing:0.031482px;}
.ls23{letter-spacing:0.053400px;}
.ls3{letter-spacing:0.054000px;}
.ls22{letter-spacing:0.081000px;}
.ls33{letter-spacing:0.102000px;}
.ls0{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.117600px;}
.ls1b{letter-spacing:0.130800px;}
.lsf{letter-spacing:0.135000px;}
.ls16{letter-spacing:0.157410px;}
.ls5{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.189000px;}
.ls1a{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.243000px;}
.ls1c{letter-spacing:0.246600px;}
.ls4{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.297000px;}
.ls1e{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.351000px;}
.ls9{letter-spacing:0.378000px;}
.ls13{letter-spacing:0.405000px;}
.ls2{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.486000px;}
.ls1f{letter-spacing:0.513000px;}
.ls14{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.648000px;}
.ls32{letter-spacing:0.675000px;}
.ls20{letter-spacing:0.702000px;}
.ls2a{letter-spacing:0.756000px;}
.lsd{letter-spacing:0.810000px;}
.ls26{letter-spacing:0.864000px;}
.ls34{letter-spacing:1.026000px;}
.ls12{letter-spacing:1.080000px;}
.lse{letter-spacing:1.134000px;}
.ls6{letter-spacing:1.215000px;}
.ls7{letter-spacing:1.215600px;}
.ls2f{letter-spacing:3.780000px;}
.ls27{letter-spacing:4.644000px;}
.ls28{letter-spacing:296.526568px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(4,208,232),0 0.015em rgb(4,208,232),0.015em 0 rgb(4,208,232),0 -0.015em  rgb(4,208,232);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(4,208,232);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-48.003000px;}
.ws32{word-spacing:-24.516000px;}
.ws31{word-spacing:-16.962000px;}
.ws4{word-spacing:-13.878000px;}
.ws27{word-spacing:-13.338000px;}
.ws2d{word-spacing:-13.068000px;}
.ws1a{word-spacing:-12.336771px;}
.ws28{word-spacing:-11.969158px;}
.ws17{word-spacing:-11.730611px;}
.ws10{word-spacing:-10.908000px;}
.ws15{word-spacing:-10.368000px;}
.ws2a{word-spacing:-10.098000px;}
.ws0{word-spacing:-9.828000px;}
.ws14{word-spacing:-8.248284px;}
.ws18{word-spacing:-8.122356px;}
.ws1{word-spacing:-8.090874px;}
.ws13{word-spacing:-5.886000px;}
.ws22{word-spacing:-4.644000px;}
.ws2f{word-spacing:-3.780000px;}
.wsf{word-spacing:-3.672000px;}
.wse{word-spacing:-1.134000px;}
.ws33{word-spacing:-1.026000px;}
.ws21{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.810000px;}
.ws26{word-spacing:-0.756000px;}
.ws1d{word-spacing:-0.702000px;}
.wsb{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.594000px;}
.ws1b{word-spacing:-0.540000px;}
.wsc{word-spacing:-0.486000px;}
.ws5{word-spacing:-0.432000px;}
.wsa{word-spacing:-0.378000px;}
.ws9{word-spacing:-0.324000px;}
.ws7{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.162000px;}
.ws3{word-spacing:-0.108000px;}
.ws6{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws1f{word-spacing:0.270000px;}
.ws2c{word-spacing:0.378000px;}
.ws30{word-spacing:0.432000px;}
.ws16{word-spacing:0.540000px;}
.ws2e{word-spacing:0.810000px;}
.ws29{word-spacing:1.026000px;}
.ws1e{word-spacing:1.080000px;}
.ws25{word-spacing:1.620000px;}
.ws20{word-spacing:2.484000px;}
.ws2b{word-spacing:17.820000px;}
.ws23{word-spacing:184.775703px;}
.ws24{word-spacing:187.657685px;}
.ws1c{word-spacing:269.892452px;}
._10{margin-left:-795.033654px;}
._1c{margin-left:-17.560800px;}
._17{margin-left:-15.676200px;}
._13{margin-left:-14.425200px;}
._7{margin-left:-13.269600px;}
._18{margin-left:-6.100200px;}
._11{margin-left:-4.365000px;}
._3{margin-left:-3.290400px;}
._1{margin-left:-1.872000px;}
._0{width:1.170000px;}
._5{width:2.255400px;}
._4{width:3.331800px;}
._2{width:4.665600px;}
._6{width:5.983200px;}
._8{width:7.047000px;}
._19{width:8.802000px;}
._1d{width:10.432800px;}
._12{width:14.482800px;}
._14{width:17.539200px;}
._9{width:23.371200px;}
._1b{width:28.198800px;}
._16{width:29.602800px;}
._b{width:31.006800px;}
._f{width:33.976800px;}
._e{width:35.920800px;}
._d{width:38.016000px;}
._a{width:39.754800px;}
._c{width:69.676200px;}
._1a{width:163.593811px;}
._15{width:207.173389px;}
.fc3{color:transparent;}
.fc2{color:rgb(4,208,232);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.190800px;}
.fs5{font-size:45.644400px;}
.fs10{font-size:45.646200px;}
.fsc{font-size:46.572600px;}
.fsd{font-size:46.581000px;}
.fsb{font-size:47.995200px;}
.fsa{font-size:47.997600px;}
.fs7{font-size:47.998200px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:48.002400px;}
.fs6{font-size:48.003000px;}
.fse{font-size:51.246000px;}
.fsf{font-size:51.249203px;}
.fs2{font-size:54.000000px;}
.fs11{font-size:60.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:1.137900px;}
.yf7{bottom:6.462300px;}
.y85{bottom:6.537600px;}
.ydd{bottom:6.799800px;}
.yc7{bottom:8.634000px;}
.yb0{bottom:11.218890px;}
.y11d{bottom:11.735550px;}
.y108{bottom:12.756900px;}
.yf3{bottom:13.016850px;}
.y96{bottom:13.018290px;}
.yc8{bottom:15.073950px;}
.yc6{bottom:17.107275px;}
.yf6{bottom:18.105450px;}
.y9d{bottom:19.138050px;}
.y84{bottom:20.938500px;}
.y60{bottom:20.939880px;}
.yf0{bottom:21.911776px;}
.ya5{bottom:22.738200px;}
.y6e{bottom:23.097450px;}
.y11c{bottom:23.147100px;}
.yc5{bottom:25.580550px;}
.yaf{bottom:25.618350px;}
.y109{bottom:27.098400px;}
.y95{bottom:27.417750px;}
.yf5{bottom:29.748600px;}
.y11b{bottom:34.558650px;}
.y5f{bottom:34.633200px;}
.y110{bottom:36.424050px;}
.y111{bottom:36.424500px;}
.y6d{bottom:37.497450px;}
.ybf{bottom:38.133900px;}
.y100{bottom:40.839732px;}
.y8f{bottom:43.977900px;}
.yb3{bottom:44.337780px;}
.y1{bottom:45.610500px;}
.ya3{bottom:45.777750px;}
.yef{bottom:47.037263px;}
.y9c{bottom:52.977600px;}
.yca{bottom:58.684800px;}
.yb2{bottom:58.737240px;}
.ybe{bottom:59.381940px;}
.y77{bottom:62.818500px;}
.yc4{bottom:63.203400px;}
.yfe{bottom:64.824339px;}
.yff{bottom:64.859550px;}
.y10f{bottom:66.422925px;}
.y107{bottom:66.604500px;}
.ydc{bottom:66.967530px;}
.y104{bottom:67.809300px;}
.y94{bottom:69.178140px;}
.yc9{bottom:69.982500px;}
.yf2{bottom:70.970850px;}
.yed{bottom:72.145127px;}
.yee{bottom:72.162750px;}
.y5d{bottom:73.108350px;}
.yb1{bottom:73.136700px;}
.ybd{bottom:73.781400px;}
.y8a{bottom:74.097300px;}
.y76{bottom:74.818500px;}
.y105{bottom:75.014850px;}
.y68{bottom:76.057800px;}
.y1e{bottom:76.110150px;}
.y4c{bottom:76.110300px;}
.y11e{bottom:76.592250px;}
.ye5{bottom:78.056400px;}
.ye4{bottom:79.176300px;}
.y83{bottom:79.618350px;}
.ydb{bottom:81.366810px;}
.y117{bottom:81.576750px;}
.y106{bottom:83.083500px;}
.y93{bottom:83.577600px;}
.y89{bottom:86.098050px;}
.y75{bottom:86.818500px;}
.y9b{bottom:86.818650px;}
.y5c{bottom:87.508350px;}
.yfd{bottom:88.844158px;}
.ya6{bottom:90.418050px;}
.ybc{bottom:90.765990px;}
.y103{bottom:91.224600px;}
.y116{bottom:92.988300px;}
.y1d{bottom:94.110150px;}
.y4b{bottom:94.110300px;}
.yae{bottom:95.458890px;}
.yda{bottom:95.766090px;}
.y10e{bottom:96.421800px;}
.yec{bottom:97.270614px;}
.y74{bottom:98.818500px;}
.y8e{bottom:100.498200px;}
.ye6{bottom:101.349000px;}
.ycd{bottom:103.649700px;}
.y5e{bottom:104.194500px;}
.y115{bottom:104.399850px;}
.ybb{bottom:105.165450px;}
.yad{bottom:109.858350px;}
.y65{bottom:109.952160px;}
.yd9{bottom:110.165370px;}
.y73{bottom:110.818500px;}
.y82{bottom:112.016850px;}
.y1c{bottom:112.110150px;}
.y4a{bottom:112.110300px;}
.yfc{bottom:112.863976px;}
.ycc{bottom:114.947400px;}
.ya8{bottom:117.057390px;}
.ya2{bottom:119.218650px;}
.y9a{bottom:120.298800px;}
.y25{bottom:121.196400px;}
.y3{bottom:121.375050px;}
.y88{bottom:121.855950px;}
.yeb{bottom:122.396101px;}
.y72{bottom:122.818500px;}
.y64{bottom:123.645480px;}
.yd7{bottom:124.564620px;}
.yd8{bottom:124.564650px;}
.y92{bottom:125.339130px;}
.ycb{bottom:126.245100px;}
.y10d{bottom:126.420675px;}
.yba{bottom:128.626350px;}
.y1b{bottom:130.110150px;}
.y49{bottom:130.110300px;}
.ya7{bottom:131.456850px;}
.yb5{bottom:132.538440px;}
.y87{bottom:133.856700px;}
.ye3{bottom:133.894800px;}
.y71{bottom:136.498500px;}
.yfb{bottom:136.883795px;}
.y63{bottom:137.338800px;}
.yd6{bottom:138.963900px;}
.y91{bottom:139.738590px;}
.y7a{bottom:141.896550px;}
.y86{bottom:145.857450px;}
.yb4{bottom:146.937900px;}
.yea{bottom:147.521588px;}
.y1a{bottom:148.110150px;}
.y48{bottom:148.110300px;}
.ye2{bottom:148.656300px;}
.y70{bottom:150.898500px;}
.yd5{bottom:153.363180px;}
.y99{bottom:153.418050px;}
.y90{bottom:154.138050px;}
.y10c{bottom:156.419550px;}
.y11a{bottom:156.551100px;}
.yfa{bottom:160.903613px;}
.yb9{bottom:161.227200px;}
.ye1{bottom:162.694200px;}
.y6f{bottom:165.298500px;}
.y19{bottom:166.110150px;}
.y47{bottom:166.110300px;}
.yd4{bottom:167.762460px;}
.y119{bottom:167.962650px;}
.y8d{bottom:169.256850px;}
.yac{bottom:169.618140px;}
.y114{bottom:170.890350px;}
.y67{bottom:171.577530px;}
.ye9{bottom:172.647076px;}
.yc3{bottom:173.016450px;}
.y7f{bottom:173.576100px;}
.y102{bottom:175.060500px;}
.ye0{bottom:177.096300px;}
.y118{bottom:179.374200px;}
.y7b{bottom:181.137450px;}
.y6c{bottom:181.137900px;}
.yd3{bottom:182.161740px;}
.yab{bottom:184.017600px;}
.y59{bottom:184.110150px;}
.y46{bottom:184.110300px;}
.yf9{bottom:184.923432px;}
.y66{bottom:185.270850px;}
.y10b{bottom:186.418425px;}
.y7e{bottom:187.977000px;}
.y81{bottom:187.977450px;}
.ydf{bottom:191.855550px;}
.y6b{bottom:195.537900px;}
.yb8{bottom:196.266450px;}
.yd2{bottom:196.561020px;}
.ye8{bottom:197.772563px;}
.ya4{bottom:198.418350px;}
.y5b{bottom:202.110150px;}
.y45{bottom:202.110300px;}
.y80{bottom:202.378350px;}
.y101{bottom:204.052500px;}
.ya1{bottom:204.177000px;}
.yde{bottom:205.895700px;}
.yc1{bottom:208.102650px;}
.yf8{bottom:208.943250px;}
.yd1{bottom:210.960300px;}
.y10a{bottom:216.417300px;}
.y62{bottom:216.425430px;}
.ya9{bottom:218.787600px;}
.y18{bottom:220.110150px;}
.y44{bottom:220.110300px;}
.yc0{bottom:222.502650px;}
.ye7{bottom:222.898050px;}
.y61{bottom:230.118750px;}
.y7d{bottom:236.576700px;}
.y17{bottom:238.110150px;}
.y43{bottom:238.110300px;}
.yc2{bottom:240.973500px;}
.y69{bottom:241.568550px;}
.yaa{bottom:243.747000px;}
.y7c{bottom:250.977600px;}
.y16{bottom:256.110150px;}
.y42{bottom:256.110300px;}
.y6a{bottom:269.797500px;}
.y58{bottom:274.110150px;}
.y41{bottom:274.110300px;}
.y15{bottom:292.110150px;}
.y40{bottom:292.110300px;}
.y5a{bottom:310.110150px;}
.y3f{bottom:310.110300px;}
.y14{bottom:328.110150px;}
.y3e{bottom:328.110300px;}
.y112{bottom:338.249100px;}
.y13{bottom:346.110150px;}
.y3d{bottom:346.110300px;}
.y113{bottom:354.375000px;}
.y12{bottom:364.110150px;}
.y3c{bottom:364.110300px;}
.y11{bottom:382.110150px;}
.y3b{bottom:382.110300px;}
.y97{bottom:385.517550px;}
.y10{bottom:400.110150px;}
.y3a{bottom:400.110300px;}
.y9f{bottom:402.387450px;}
.y98{bottom:402.567000px;}
.y9e{bottom:416.787450px;}
.yf{bottom:418.110150px;}
.y39{bottom:418.110300px;}
.ya0{bottom:435.259500px;}
.ye{bottom:436.110150px;}
.y38{bottom:436.110300px;}
.yd{bottom:454.110150px;}
.y37{bottom:454.110300px;}
.y78{bottom:458.135550px;}
.yc{bottom:472.110150px;}
.y36{bottom:472.110300px;}
.yf4{bottom:484.629000px;}
.y79{bottom:484.951500px;}
.yb{bottom:490.110150px;}
.y35{bottom:490.110300px;}
.ycf{bottom:498.391200px;}
.y8b{bottom:499.521300px;}
.ya{bottom:508.110150px;}
.y34{bottom:508.110300px;}
.yb6{bottom:508.515600px;}
.yce{bottom:512.791200px;}
.y8c{bottom:522.516000px;}
.yb7{bottom:524.547000px;}
.y9{bottom:526.110150px;}
.y33{bottom:526.110300px;}
.yd0{bottom:531.648000px;}
.y8{bottom:544.110150px;}
.y32{bottom:544.110300px;}
.y57{bottom:562.110150px;}
.y31{bottom:562.110300px;}
.y7{bottom:580.110150px;}
.y30{bottom:580.110300px;}
.y56{bottom:598.110150px;}
.y2f{bottom:598.110300px;}
.y55{bottom:616.110150px;}
.y2e{bottom:616.110300px;}
.y6{bottom:624.268650px;}
.y54{bottom:634.110150px;}
.y2d{bottom:634.110300px;}
.y5{bottom:642.268650px;}
.y53{bottom:652.110150px;}
.y2c{bottom:652.110300px;}
.y4{bottom:660.268650px;}
.y52{bottom:670.110150px;}
.y2b{bottom:670.110300px;}
.y51{bottom:688.110150px;}
.y2a{bottom:688.110300px;}
.y2{bottom:704.520150px;}
.y50{bottom:706.110150px;}
.y29{bottom:706.110300px;}
.y4f{bottom:724.110150px;}
.y28{bottom:724.110300px;}
.y22{bottom:741.339600px;}
.y4e{bottom:742.110150px;}
.y27{bottom:742.110300px;}
.y21{bottom:754.839600px;}
.y4d{bottom:760.110150px;}
.y26{bottom:760.110300px;}
.y20{bottom:768.339600px;}
.y24{bottom:784.747950px;}
.y1f{bottom:795.339600px;}
.y23{bottom:796.747950px;}
.h7{height:33.978000px;}
.h15{height:34.435390px;}
.ha{height:34.781033px;}
.h21{height:34.782404px;}
.h1c{height:35.488321px;}
.h1d{height:35.494722px;}
.h19{height:36.572342px;}
.h17{height:36.574171px;}
.h10{height:36.574628px;}
.hc{height:36.576000px;}
.h12{height:36.577829px;}
.he{height:36.578286px;}
.h2{height:38.304000px;}
.h8{height:38.832000px;}
.h1e{height:39.049452px;}
.h1f{height:39.051893px;}
.h22{height:41.148000px;}
.h4{height:43.092000px;}
.h5{height:43.686000px;}
.h6{height:47.068938px;}
.h1a{height:48.546000px;}
.h3{height:62.244000px;}
.h11{height:177.841500px;}
.h14{height:198.210000px;}
.h20{height:202.332000px;}
.hb{height:222.840000px;}
.h1b{height:227.050500px;}
.h16{height:227.520000px;}
.hf{height:234.000000px;}
.h13{height:234.001500px;}
.h18{height:241.845000px;}
.h9{height:262.930500px;}
.hd{height:274.680000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w6{width:212.760000px;}
.wf{width:216.027000px;}
.w4{width:241.198500px;}
.wa{width:246.405000px;}
.w5{width:249.480000px;}
.w2{width:264.984000px;}
.w8{width:273.598500px;}
.w3{width:277.920000px;}
.w9{width:297.358500px;}
.wb{width:300.598500px;}
.w7{width:329.400000px;}
.wd{width:374.808000px;}
.we{width:376.920000px;}
.wc{width:411.480000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x46{left:5.346750px;}
.x47{left:8.442750px;}
.x41{left:9.867000px;}
.x5d{left:11.193450px;}
.x30{left:12.415950px;}
.x52{left:14.780250px;}
.x42{left:17.067900px;}
.x1f{left:19.331550px;}
.x53{left:20.979364px;}
.x33{left:22.137600px;}
.x43{left:23.436300px;}
.x1e{left:26.511450px;}
.x19{left:33.298200px;}
.x3{left:36.097500px;}
.x14{left:38.555400px;}
.x35{left:39.765600px;}
.x63{left:45.870791px;}
.x26{left:47.391750px;}
.x34{left:49.486200px;}
.x2e{left:57.055500px;}
.x2a{left:58.127700px;}
.x17{left:60.417865px;}
.x2f{left:62.456700px;}
.x5{left:63.779550px;}
.x56{left:65.829876px;}
.x3f{left:69.220650px;}
.xa{left:70.438050px;}
.x32{left:71.457600px;}
.x3b{left:76.747650px;}
.x2d{left:78.589650px;}
.x2c{left:80.376600px;}
.x3d{left:82.689600px;}
.x6{left:85.039350px;}
.x40{left:88.348950px;}
.x48{left:91.400700px;}
.x1b{left:92.733654px;}
.x45{left:94.108168px;}
.x24{left:95.117130px;}
.x23{left:96.604200px;}
.x2{left:99.705450px;}
.x11{left:102.026550px;}
.x49{left:103.400700px;}
.x12{left:105.185721px;}
.x4{left:106.299150px;}
.x1a{left:107.579998px;}
.x3a{left:111.134363px;}
.x10{left:116.818661px;}
.x1c{left:118.145126px;}
.xf{left:119.213700px;}
.x3c{left:121.405486px;}
.x67{left:123.131783px;}
.x55{left:124.651500px;}
.x39{left:126.289041px;}
.x38{left:127.368150px;}
.x5c{left:128.721600px;}
.x25{left:130.951800px;}
.x64{left:134.326350px;}
.x1d{left:135.965535px;}
.x4a{left:138.682200px;}
.x61{left:141.350400px;}
.x66{left:143.107668px;}
.x65{left:145.502518px;}
.x27{left:146.507400px;}
.x21{left:147.859522px;}
.x20{left:153.651900px;}
.x29{left:155.321887px;}
.x28{left:159.015577px;}
.x4b{left:161.242050px;}
.x36{left:163.513500px;}
.x3e{left:165.402000px;}
.x16{left:173.122500px;}
.xb{left:175.670250px;}
.xe{left:177.952500px;}
.x18{left:181.012497px;}
.x22{left:184.064400px;}
.x2b{left:185.128500px;}
.x44{left:186.623550px;}
.xd{left:189.133950px;}
.x15{left:190.509150px;}
.x13{left:192.191400px;}
.x4c{left:195.080700px;}
.x62{left:196.188000px;}
.x60{left:202.192800px;}
.x31{left:205.368000px;}
.x4d{left:207.080700px;}
.x50{left:217.703850px;}
.x37{left:228.044100px;}
.x4e{left:240.922200px;}
.x58{left:249.777900px;}
.x51{left:254.425050px;}
.x59{left:258.072942px;}
.x5f{left:263.031450px;}
.x4f{left:268.881000px;}
.x54{left:272.615850px;}
.x1{left:300.911850px;}
.x9{left:309.181800px;}
.x8{left:310.747350px;}
.x5a{left:317.715600px;}
.x5b{left:322.625148px;}
.x5e{left:323.870100px;}
.x57{left:327.120600px;}
.x7{left:382.719000px;}
.xc{left:592.254900px;}
@media print{
.v4{vertical-align:-33.534400pt;}
.v3{vertical-align:-31.626402pt;}
.v2{vertical-align:-7.679467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls25{letter-spacing:-2.208000pt;}
.ls29{letter-spacing:-1.440000pt;}
.ls21{letter-spacing:-0.960000pt;}
.ls2b{letter-spacing:-0.912000pt;}
.ls2e{letter-spacing:-0.720000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls2d{letter-spacing:-0.336000pt;}
.ls24{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.004800pt;}
.ls31{letter-spacing:0.015467pt;}
.lsa{letter-spacing:0.024000pt;}
.ls18{letter-spacing:0.027984pt;}
.ls23{letter-spacing:0.047467pt;}
.ls3{letter-spacing:0.048000pt;}
.ls22{letter-spacing:0.072000pt;}
.ls33{letter-spacing:0.090667pt;}
.ls0{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.104533pt;}
.ls1b{letter-spacing:0.116267pt;}
.lsf{letter-spacing:0.120000pt;}
.ls16{letter-spacing:0.139920pt;}
.ls5{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.168000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.216000pt;}
.ls1c{letter-spacing:0.219200pt;}
.ls4{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.264000pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.312000pt;}
.ls9{letter-spacing:0.336000pt;}
.ls13{letter-spacing:0.360000pt;}
.ls2{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.432000pt;}
.ls1f{letter-spacing:0.456000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.576000pt;}
.ls32{letter-spacing:0.600000pt;}
.ls20{letter-spacing:0.624000pt;}
.ls2a{letter-spacing:0.672000pt;}
.lsd{letter-spacing:0.720000pt;}
.ls26{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.912000pt;}
.ls12{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.008000pt;}
.ls6{letter-spacing:1.080000pt;}
.ls7{letter-spacing:1.080533pt;}
.ls2f{letter-spacing:3.360000pt;}
.ls27{letter-spacing:4.128000pt;}
.ls28{letter-spacing:263.579171pt;}
.ws19{word-spacing:-42.669333pt;}
.ws32{word-spacing:-21.792000pt;}
.ws31{word-spacing:-15.077333pt;}
.ws4{word-spacing:-12.336000pt;}
.ws27{word-spacing:-11.856000pt;}
.ws2d{word-spacing:-11.616000pt;}
.ws1a{word-spacing:-10.966019pt;}
.ws28{word-spacing:-10.639252pt;}
.ws17{word-spacing:-10.427210pt;}
.ws10{word-spacing:-9.696000pt;}
.ws15{word-spacing:-9.216000pt;}
.ws2a{word-spacing:-8.976000pt;}
.ws0{word-spacing:-8.736000pt;}
.ws14{word-spacing:-7.331808pt;}
.ws18{word-spacing:-7.219872pt;}
.ws1{word-spacing:-7.191888pt;}
.ws13{word-spacing:-5.232000pt;}
.ws22{word-spacing:-4.128000pt;}
.ws2f{word-spacing:-3.360000pt;}
.wsf{word-spacing:-3.264000pt;}
.wse{word-spacing:-1.008000pt;}
.ws33{word-spacing:-0.912000pt;}
.ws21{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.720000pt;}
.ws26{word-spacing:-0.672000pt;}
.ws1d{word-spacing:-0.624000pt;}
.wsb{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.528000pt;}
.ws1b{word-spacing:-0.480000pt;}
.wsc{word-spacing:-0.432000pt;}
.ws5{word-spacing:-0.384000pt;}
.wsa{word-spacing:-0.336000pt;}
.ws9{word-spacing:-0.288000pt;}
.ws7{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.144000pt;}
.ws3{word-spacing:-0.096000pt;}
.ws6{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.240000pt;}
.ws2c{word-spacing:0.336000pt;}
.ws30{word-spacing:0.384000pt;}
.ws16{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.720000pt;}
.ws29{word-spacing:0.912000pt;}
.ws1e{word-spacing:0.960000pt;}
.ws25{word-spacing:1.440000pt;}
.ws20{word-spacing:2.208000pt;}
.ws2b{word-spacing:15.840000pt;}
.ws23{word-spacing:164.245070pt;}
.ws24{word-spacing:166.806831pt;}
.ws1c{word-spacing:239.904402pt;}
._10{margin-left:-706.696581pt;}
._1c{margin-left:-15.609600pt;}
._17{margin-left:-13.934400pt;}
._13{margin-left:-12.822400pt;}
._7{margin-left:-11.795200pt;}
._18{margin-left:-5.422400pt;}
._11{margin-left:-3.880000pt;}
._3{margin-left:-2.924800pt;}
._1{margin-left:-1.664000pt;}
._0{width:1.040000pt;}
._5{width:2.004800pt;}
._4{width:2.961600pt;}
._2{width:4.147200pt;}
._6{width:5.318400pt;}
._8{width:6.264000pt;}
._19{width:7.824000pt;}
._1d{width:9.273600pt;}
._12{width:12.873600pt;}
._14{width:15.590400pt;}
._9{width:20.774400pt;}
._1b{width:25.065600pt;}
._16{width:26.313600pt;}
._b{width:27.561600pt;}
._f{width:30.201600pt;}
._e{width:31.929600pt;}
._d{width:33.792000pt;}
._a{width:35.337600pt;}
._c{width:61.934400pt;}
._1a{width:145.416721pt;}
._15{width:184.154123pt;}
.fs3{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.169600pt;}
.fs5{font-size:40.572800pt;}
.fs10{font-size:40.574400pt;}
.fsc{font-size:41.397867pt;}
.fsd{font-size:41.405333pt;}
.fsb{font-size:42.662400pt;}
.fsa{font-size:42.664533pt;}
.fs7{font-size:42.665067pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:42.668800pt;}
.fs6{font-size:42.669333pt;}
.fse{font-size:45.552000pt;}
.fsf{font-size:45.554847pt;}
.fs2{font-size:48.000000pt;}
.fs11{font-size:53.333333pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:1.011467pt;}
.yf7{bottom:5.744267pt;}
.y85{bottom:5.811200pt;}
.ydd{bottom:6.044267pt;}
.yc7{bottom:7.674667pt;}
.yb0{bottom:9.972347pt;}
.y11d{bottom:10.431600pt;}
.y108{bottom:11.339467pt;}
.yf3{bottom:11.570533pt;}
.y96{bottom:11.571813pt;}
.yc8{bottom:13.399067pt;}
.yc6{bottom:15.206467pt;}
.yf6{bottom:16.093733pt;}
.y9d{bottom:17.011600pt;}
.y84{bottom:18.612000pt;}
.y60{bottom:18.613227pt;}
.yf0{bottom:19.477134pt;}
.ya5{bottom:20.211733pt;}
.y6e{bottom:20.531067pt;}
.y11c{bottom:20.575200pt;}
.yc5{bottom:22.738267pt;}
.yaf{bottom:22.771867pt;}
.y109{bottom:24.087467pt;}
.y95{bottom:24.371333pt;}
.yf5{bottom:26.443200pt;}
.y11b{bottom:30.718800pt;}
.y5f{bottom:30.785067pt;}
.y110{bottom:32.376933pt;}
.y111{bottom:32.377333pt;}
.y6d{bottom:33.331067pt;}
.ybf{bottom:33.896800pt;}
.y100{bottom:36.301984pt;}
.y8f{bottom:39.091467pt;}
.yb3{bottom:39.411360pt;}
.y1{bottom:40.542667pt;}
.ya3{bottom:40.691333pt;}
.yef{bottom:41.810900pt;}
.y9c{bottom:47.091200pt;}
.yca{bottom:52.164267pt;}
.yb2{bottom:52.210880pt;}
.ybe{bottom:52.783947pt;}
.y77{bottom:55.838667pt;}
.yc4{bottom:56.180800pt;}
.yfe{bottom:57.621635pt;}
.yff{bottom:57.652933pt;}
.y10f{bottom:59.042600pt;}
.y107{bottom:59.204000pt;}
.ydc{bottom:59.526693pt;}
.y104{bottom:60.274933pt;}
.y94{bottom:61.491680pt;}
.yc9{bottom:62.206667pt;}
.yf2{bottom:63.085200pt;}
.yed{bottom:64.129002pt;}
.yee{bottom:64.144667pt;}
.y5d{bottom:64.985200pt;}
.yb1{bottom:65.010400pt;}
.ybd{bottom:65.583467pt;}
.y8a{bottom:65.864267pt;}
.y76{bottom:66.505333pt;}
.y105{bottom:66.679867pt;}
.y68{bottom:67.606933pt;}
.y1e{bottom:67.653467pt;}
.y4c{bottom:67.653600pt;}
.y11e{bottom:68.082000pt;}
.ye5{bottom:69.383467pt;}
.ye4{bottom:70.378933pt;}
.y83{bottom:70.771867pt;}
.ydb{bottom:72.326053pt;}
.y117{bottom:72.512667pt;}
.y106{bottom:73.852000pt;}
.y93{bottom:74.291200pt;}
.y89{bottom:76.531600pt;}
.y75{bottom:77.172000pt;}
.y9b{bottom:77.172133pt;}
.y5c{bottom:77.785200pt;}
.yfd{bottom:78.972585pt;}
.ya6{bottom:80.371600pt;}
.ybc{bottom:80.680880pt;}
.y103{bottom:81.088533pt;}
.y116{bottom:82.656267pt;}
.y1d{bottom:83.653467pt;}
.y4b{bottom:83.653600pt;}
.yae{bottom:84.852347pt;}
.yda{bottom:85.125413pt;}
.y10e{bottom:85.708267pt;}
.yec{bottom:86.462768pt;}
.y74{bottom:87.838667pt;}
.y8e{bottom:89.331733pt;}
.ye6{bottom:90.088000pt;}
.ycd{bottom:92.133067pt;}
.y5e{bottom:92.617333pt;}
.y115{bottom:92.799867pt;}
.ybb{bottom:93.480400pt;}
.yad{bottom:97.651867pt;}
.y65{bottom:97.735253pt;}
.yd9{bottom:97.924773pt;}
.y73{bottom:98.505333pt;}
.y82{bottom:99.570533pt;}
.y1c{bottom:99.653467pt;}
.y4a{bottom:99.653600pt;}
.yfc{bottom:100.323534pt;}
.ycc{bottom:102.175467pt;}
.ya8{bottom:104.051013pt;}
.ya2{bottom:105.972133pt;}
.y9a{bottom:106.932267pt;}
.y25{bottom:107.730133pt;}
.y3{bottom:107.888933pt;}
.y88{bottom:108.316400pt;}
.yeb{bottom:108.796534pt;}
.y72{bottom:109.172000pt;}
.y64{bottom:109.907093pt;}
.yd7{bottom:110.724107pt;}
.yd8{bottom:110.724133pt;}
.y92{bottom:111.412560pt;}
.ycb{bottom:112.217867pt;}
.y10d{bottom:112.373933pt;}
.yba{bottom:114.334533pt;}
.y1b{bottom:115.653467pt;}
.y49{bottom:115.653600pt;}
.ya7{bottom:116.850533pt;}
.yb5{bottom:117.811947pt;}
.y87{bottom:118.983733pt;}
.ye3{bottom:119.017600pt;}
.y71{bottom:121.332000pt;}
.yfb{bottom:121.674484pt;}
.y63{bottom:122.078933pt;}
.yd6{bottom:123.523467pt;}
.y91{bottom:124.212080pt;}
.y7a{bottom:126.130267pt;}
.y86{bottom:129.651067pt;}
.yb4{bottom:130.611467pt;}
.yea{bottom:131.130301pt;}
.y1a{bottom:131.653467pt;}
.y48{bottom:131.653600pt;}
.ye2{bottom:132.138933pt;}
.y70{bottom:134.132000pt;}
.yd5{bottom:136.322827pt;}
.y99{bottom:136.371600pt;}
.y90{bottom:137.011600pt;}
.y10c{bottom:139.039600pt;}
.y11a{bottom:139.156533pt;}
.yfa{bottom:143.025434pt;}
.yb9{bottom:143.313067pt;}
.ye1{bottom:144.617067pt;}
.y6f{bottom:146.932000pt;}
.y19{bottom:147.653467pt;}
.y47{bottom:147.653600pt;}
.yd4{bottom:149.122187pt;}
.y119{bottom:149.300133pt;}
.y8d{bottom:150.450533pt;}
.yac{bottom:150.771680pt;}
.y114{bottom:151.902533pt;}
.y67{bottom:152.513360pt;}
.ye9{bottom:153.464067pt;}
.yc3{bottom:153.792400pt;}
.y7f{bottom:154.289867pt;}
.y102{bottom:155.609333pt;}
.ye0{bottom:157.418933pt;}
.y118{bottom:159.443733pt;}
.y7b{bottom:161.011067pt;}
.y6c{bottom:161.011467pt;}
.yd3{bottom:161.921547pt;}
.yab{bottom:163.571200pt;}
.y59{bottom:163.653467pt;}
.y46{bottom:163.653600pt;}
.yf9{bottom:164.376384pt;}
.y66{bottom:164.685200pt;}
.y10b{bottom:165.705267pt;}
.y7e{bottom:167.090667pt;}
.y81{bottom:167.091067pt;}
.ydf{bottom:170.538267pt;}
.y6b{bottom:173.811467pt;}
.yb8{bottom:174.459067pt;}
.yd2{bottom:174.720907pt;}
.ye8{bottom:175.797834pt;}
.ya4{bottom:176.371867pt;}
.y5b{bottom:179.653467pt;}
.y45{bottom:179.653600pt;}
.y80{bottom:179.891867pt;}
.y101{bottom:181.380000pt;}
.ya1{bottom:181.490667pt;}
.yde{bottom:183.018400pt;}
.yc1{bottom:184.980133pt;}
.yf8{bottom:185.727333pt;}
.yd1{bottom:187.520267pt;}
.y10a{bottom:192.370933pt;}
.y62{bottom:192.378160pt;}
.ya9{bottom:194.477867pt;}
.y18{bottom:195.653467pt;}
.y44{bottom:195.653600pt;}
.yc0{bottom:197.780133pt;}
.ye7{bottom:198.131600pt;}
.y61{bottom:204.550000pt;}
.y7d{bottom:210.290400pt;}
.y17{bottom:211.653467pt;}
.y43{bottom:211.653600pt;}
.yc2{bottom:214.198667pt;}
.y69{bottom:214.727600pt;}
.yaa{bottom:216.664000pt;}
.y7c{bottom:223.091200pt;}
.y16{bottom:227.653467pt;}
.y42{bottom:227.653600pt;}
.y6a{bottom:239.820000pt;}
.y58{bottom:243.653467pt;}
.y41{bottom:243.653600pt;}
.y15{bottom:259.653467pt;}
.y40{bottom:259.653600pt;}
.y5a{bottom:275.653467pt;}
.y3f{bottom:275.653600pt;}
.y14{bottom:291.653467pt;}
.y3e{bottom:291.653600pt;}
.y112{bottom:300.665867pt;}
.y13{bottom:307.653467pt;}
.y3d{bottom:307.653600pt;}
.y113{bottom:315.000000pt;}
.y12{bottom:323.653467pt;}
.y3c{bottom:323.653600pt;}
.y11{bottom:339.653467pt;}
.y3b{bottom:339.653600pt;}
.y97{bottom:342.682267pt;}
.y10{bottom:355.653467pt;}
.y3a{bottom:355.653600pt;}
.y9f{bottom:357.677733pt;}
.y98{bottom:357.837333pt;}
.y9e{bottom:370.477733pt;}
.yf{bottom:371.653467pt;}
.y39{bottom:371.653600pt;}
.ya0{bottom:386.897333pt;}
.ye{bottom:387.653467pt;}
.y38{bottom:387.653600pt;}
.yd{bottom:403.653467pt;}
.y37{bottom:403.653600pt;}
.y78{bottom:407.231600pt;}
.yc{bottom:419.653467pt;}
.y36{bottom:419.653600pt;}
.yf4{bottom:430.781333pt;}
.y79{bottom:431.068000pt;}
.yb{bottom:435.653467pt;}
.y35{bottom:435.653600pt;}
.ycf{bottom:443.014400pt;}
.y8b{bottom:444.018933pt;}
.ya{bottom:451.653467pt;}
.y34{bottom:451.653600pt;}
.yb6{bottom:452.013867pt;}
.yce{bottom:455.814400pt;}
.y8c{bottom:464.458667pt;}
.yb7{bottom:466.264000pt;}
.y9{bottom:467.653467pt;}
.y33{bottom:467.653600pt;}
.yd0{bottom:472.576000pt;}
.y8{bottom:483.653467pt;}
.y32{bottom:483.653600pt;}
.y57{bottom:499.653467pt;}
.y31{bottom:499.653600pt;}
.y7{bottom:515.653467pt;}
.y30{bottom:515.653600pt;}
.y56{bottom:531.653467pt;}
.y2f{bottom:531.653600pt;}
.y55{bottom:547.653467pt;}
.y2e{bottom:547.653600pt;}
.y6{bottom:554.905467pt;}
.y54{bottom:563.653467pt;}
.y2d{bottom:563.653600pt;}
.y5{bottom:570.905467pt;}
.y53{bottom:579.653467pt;}
.y2c{bottom:579.653600pt;}
.y4{bottom:586.905467pt;}
.y52{bottom:595.653467pt;}
.y2b{bottom:595.653600pt;}
.y51{bottom:611.653467pt;}
.y2a{bottom:611.653600pt;}
.y2{bottom:626.240133pt;}
.y50{bottom:627.653467pt;}
.y29{bottom:627.653600pt;}
.y4f{bottom:643.653467pt;}
.y28{bottom:643.653600pt;}
.y22{bottom:658.968533pt;}
.y4e{bottom:659.653467pt;}
.y27{bottom:659.653600pt;}
.y21{bottom:670.968533pt;}
.y4d{bottom:675.653467pt;}
.y26{bottom:675.653600pt;}
.y20{bottom:682.968533pt;}
.y24{bottom:697.553733pt;}
.y1f{bottom:706.968533pt;}
.y23{bottom:708.220400pt;}
.h7{height:30.202667pt;}
.h15{height:30.609235pt;}
.ha{height:30.916474pt;}
.h21{height:30.917693pt;}
.h1c{height:31.545174pt;}
.h1d{height:31.550864pt;}
.h19{height:32.508749pt;}
.h17{height:32.510374pt;}
.h10{height:32.510781pt;}
.hc{height:32.512000pt;}
.h12{height:32.513626pt;}
.he{height:32.514032pt;}
.h2{height:34.048000pt;}
.h8{height:34.517333pt;}
.h1e{height:34.710624pt;}
.h1f{height:34.712794pt;}
.h22{height:36.576000pt;}
.h4{height:38.304000pt;}
.h5{height:38.832000pt;}
.h6{height:41.839056pt;}
.h1a{height:43.152000pt;}
.h3{height:55.328000pt;}
.h11{height:158.081333pt;}
.h14{height:176.186667pt;}
.h20{height:179.850667pt;}
.hb{height:198.080000pt;}
.h1b{height:201.822667pt;}
.h16{height:202.240000pt;}
.hf{height:208.000000pt;}
.h13{height:208.001333pt;}
.h18{height:214.973333pt;}
.h9{height:233.716000pt;}
.hd{height:244.160000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w6{width:189.120000pt;}
.wf{width:192.024000pt;}
.w4{width:214.398667pt;}
.wa{width:219.026667pt;}
.w5{width:221.760000pt;}
.w2{width:235.541333pt;}
.w8{width:243.198667pt;}
.w3{width:247.040000pt;}
.w9{width:264.318667pt;}
.wb{width:267.198667pt;}
.w7{width:292.800000pt;}
.wd{width:333.162667pt;}
.we{width:335.040000pt;}
.wc{width:365.760000pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x46{left:4.752667pt;}
.x47{left:7.504667pt;}
.x41{left:8.770667pt;}
.x5d{left:9.949733pt;}
.x30{left:11.036400pt;}
.x52{left:13.138000pt;}
.x42{left:15.171467pt;}
.x1f{left:17.183600pt;}
.x53{left:18.648324pt;}
.x33{left:19.677867pt;}
.x43{left:20.832267pt;}
.x1e{left:23.565733pt;}
.x19{left:29.598400pt;}
.x3{left:32.086667pt;}
.x14{left:34.271467pt;}
.x35{left:35.347200pt;}
.x63{left:40.774037pt;}
.x26{left:42.126000pt;}
.x34{left:43.987733pt;}
.x2e{left:50.716000pt;}
.x2a{left:51.669067pt;}
.x17{left:53.704769pt;}
.x2f{left:55.517067pt;}
.x5{left:56.692933pt;}
.x56{left:58.515445pt;}
.x3f{left:61.529467pt;}
.xa{left:62.611600pt;}
.x32{left:63.517867pt;}
.x3b{left:68.220133pt;}
.x2d{left:69.857467pt;}
.x2c{left:71.445867pt;}
.x3d{left:73.501867pt;}
.x6{left:75.590533pt;}
.x40{left:78.532400pt;}
.x48{left:81.245067pt;}
.x1b{left:82.429915pt;}
.x45{left:83.651705pt;}
.x24{left:84.548560pt;}
.x23{left:85.870400pt;}
.x2{left:88.627067pt;}
.x11{left:90.690267pt;}
.x49{left:91.911733pt;}
.x12{left:93.498419pt;}
.x4{left:94.488133pt;}
.x1a{left:95.626665pt;}
.x3a{left:98.786101pt;}
.x10{left:103.838809pt;}
.x1c{left:105.017890pt;}
.xf{left:105.967733pt;}
.x3c{left:107.915987pt;}
.x67{left:109.450474pt;}
.x55{left:110.801333pt;}
.x39{left:112.256925pt;}
.x38{left:113.216133pt;}
.x5c{left:114.419200pt;}
.x25{left:116.401600pt;}
.x64{left:119.401200pt;}
.x1d{left:120.858253pt;}
.x4a{left:123.273067pt;}
.x61{left:125.644800pt;}
.x66{left:127.206816pt;}
.x65{left:129.335572pt;}
.x27{left:130.228800pt;}
.x21{left:131.430687pt;}
.x20{left:136.579467pt;}
.x29{left:138.063900pt;}
.x28{left:141.347180pt;}
.x4b{left:143.326267pt;}
.x36{left:145.345333pt;}
.x3e{left:147.024000pt;}
.x16{left:153.886667pt;}
.xb{left:156.151333pt;}
.xe{left:158.180000pt;}
.x18{left:160.899997pt;}
.x22{left:163.612800pt;}
.x2b{left:164.558667pt;}
.x44{left:165.887600pt;}
.xd{left:168.119067pt;}
.x15{left:169.341467pt;}
.x13{left:170.836800pt;}
.x4c{left:173.405067pt;}
.x62{left:174.389333pt;}
.x60{left:179.726933pt;}
.x31{left:182.549333pt;}
.x4d{left:184.071733pt;}
.x50{left:193.514533pt;}
.x37{left:202.705867pt;}
.x4e{left:214.153067pt;}
.x58{left:222.024800pt;}
.x51{left:226.155600pt;}
.x59{left:229.398171pt;}
.x5f{left:233.805733pt;}
.x4f{left:239.005333pt;}
.x54{left:242.325200pt;}
.x1{left:267.477200pt;}
.x9{left:274.828267pt;}
.x8{left:276.219867pt;}
.x5a{left:282.413867pt;}
.x5b{left:286.777909pt;}
.x5e{left:287.884533pt;}
.x57{left:290.773867pt;}
.x7{left:340.194667pt;}
.xc{left:526.448800pt;}
}




    .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; }
  