
    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_2d78648f5eb2133be0be0321.woff')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_d574e23d8ecb6508a66065d8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_74561be0e8f8d8b8ec658252.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_a8524c0d96f29b3945acb647.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_ab7727eb9eb34f3ecd51f72b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_5ca51b8ea62d7b55f40f1a73.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_e98c52e42305af5c47dbe15e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_adbc1e4402daaeb378487f9c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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_99cb9bc4e2fe83069f4b79b0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.039000;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_0ff526c39e63e1eb0af2eb5a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.098000;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_96c1a64646f83ab6268ceb31.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_193f77217387e891a53d8b96.woff')format("woff");}.ffc{font-family:ffc;line-height:0.983398;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_2f143c5b5d9e28cba05cd3f4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_6cfa4b2951377528cec7cf1a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.052734;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_a08ab4e7867351b4562eacc6.woff')format("woff");}.fff{font-family:fff;line-height:1.052734;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_74fd8d6d4c486fa63fa0f445.woff')format("woff");}.ff10{font-family:ff10;line-height:0.979980;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_d24ad442e0cf3de5ccf81e78.woff')format("woff");}.ff11{font-family:ff11;line-height:0.979004;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;}
.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);}
.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);}
.v1{vertical-align:-10.950000px;}
.vc{vertical-align:-4.350000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.180000px;}
.v6{vertical-align:13.500000px;}
.v5{vertical-align:64.680000px;}
.va{vertical-align:79.200000px;}
.v3{vertical-align:82.800000px;}
.vd{vertical-align:87.600000px;}
.v2{vertical-align:98.550000px;}
.vb{vertical-align:132.000000px;}
.v9{vertical-align:147.300000px;}
.v8{vertical-align:158.400000px;}
.v7{vertical-align:184.740000px;}
.ls3a{letter-spacing:-3.288000px;}
.ls2{letter-spacing:-3.222000px;}
.ls1{letter-spacing:-3.072000px;}
.ls23{letter-spacing:-2.190000px;}
.ls1d{letter-spacing:-1.956000px;}
.ls34{letter-spacing:-1.734000px;}
.ls3b{letter-spacing:-1.482000px;}
.lsb{letter-spacing:-1.200000px;}
.ls14{letter-spacing:-1.164000px;}
.ls1e{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.354000px;}
.ls2a{letter-spacing:-0.140400px;}
.ls24{letter-spacing:-0.137400px;}
.ls20{letter-spacing:-0.131400px;}
.ls2b{letter-spacing:-0.009420px;}
.ls2c{letter-spacing:-0.006300px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.009480px;}
.ls26{letter-spacing:0.012600px;}
.ls1f{letter-spacing:0.018420px;}
.ls3d{letter-spacing:0.021300px;}
.ls28{letter-spacing:0.140400px;}
.ls37{letter-spacing:0.141300px;}
.ls3e{letter-spacing:0.141600px;}
.lsd{letter-spacing:0.370800px;}
.ls39{letter-spacing:0.393300px;}
.ls40{letter-spacing:0.426000px;}
.ls12{letter-spacing:0.439200px;}
.lse{letter-spacing:0.473100px;}
.lsa{letter-spacing:0.523200px;}
.ls11{letter-spacing:0.533100px;}
.ls4{letter-spacing:0.543000px;}
.ls7{letter-spacing:0.557100px;}
.ls2f{letter-spacing:0.578400px;}
.ls8{letter-spacing:0.583200px;}
.ls16{letter-spacing:0.587100px;}
.ls10{letter-spacing:0.593100px;}
.ls6{letter-spacing:0.617100px;}
.ls9{letter-spacing:0.703200px;}
.ls15{letter-spacing:0.737100px;}
.ls36{letter-spacing:0.834000px;}
.ls19{letter-spacing:0.846000px;}
.ls3{letter-spacing:0.939000px;}
.ls38{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.026000px;}
.ls1a{letter-spacing:1.113600px;}
.lsf{letter-spacing:1.161750px;}
.ls33{letter-spacing:1.164000px;}
.ls3f{letter-spacing:1.325100px;}
.ls41{letter-spacing:1.434000px;}
.ls17{letter-spacing:1.551750px;}
.ls35{letter-spacing:1.704000px;}
.ls5{letter-spacing:1.740000px;}
.ls3c{letter-spacing:2.196000px;}
.lsc{letter-spacing:2.556000px;}
.ls29{letter-spacing:11.361300px;}
.ls27{letter-spacing:17.721300px;}
.ls25{letter-spacing:17.781300px;}
.ls31{letter-spacing:34.017600px;}
.ls32{letter-spacing:34.092300px;}
.ls2d{letter-spacing:49.770000px;}
.ls2e{letter-spacing:49.822500px;}
.ls30{letter-spacing:52.822500px;}
.ls1c{letter-spacing:65.520000px;}
.ls1b{letter-spacing:65.572500px;}
.sc_{text-shadow:none;}
.sc7{text-shadow:-0.015em 0 rgb(255,155,51),0 0.015em rgb(255,155,51),0.015em 0 rgb(255,155,51),0 -0.015em  rgb(255,155,51);}
.sc6{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc4{text-shadow:-0.015em 0 rgb(239,206,145),0 0.015em rgb(239,206,145),0.015em 0 rgb(239,206,145),0 -0.015em  rgb(239,206,145);}
.sc3{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.sc5{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(112,48,160),0 0.015em rgb(112,48,160),0.015em 0 rgb(112,48,160),0 -0.015em  rgb(112,48,160);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc7{-webkit-text-stroke:0.015em rgb(255,155,51);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(239,206,145);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(112,48,160);text-shadow:none;}
}
.ws40{word-spacing:-265.950000px;}
.ws15{word-spacing:-166.800000px;}
.ws14{word-spacing:-166.650000px;}
.ws16{word-spacing:-157.800000px;}
.ws1a{word-spacing:-157.650000px;}
.ws19{word-spacing:-130.650000px;}
.ws1c{word-spacing:-81.461700px;}
.ws3f{word-spacing:-80.417100px;}
.ws6{word-spacing:-65.189700px;}
.wsd{word-spacing:-60.070800px;}
.wsa{word-spacing:-53.968800px;}
.wsb{word-spacing:-48.883800px;}
.wse{word-spacing:-45.811800px;}
.wsf{word-spacing:-45.661800px;}
.ws5{word-spacing:-44.815800px;}
.ws7{word-spacing:-43.798800px;}
.ws46{word-spacing:-43.764900px;}
.ws4b{word-spacing:-40.073700px;}
.ws49{word-spacing:-39.730800px;}
.ws3a{word-spacing:-37.696800px;}
.ws11{word-spacing:-37.662900px;}
.ws17{word-spacing:-35.662800px;}
.ws18{word-spacing:-35.628900px;}
.ws35{word-spacing:-33.959100px;}
.ws34{word-spacing:-33.831300px;}
.ws31{word-spacing:-33.828180px;}
.ws33{word-spacing:-33.818700px;}
.ws39{word-spacing:-33.812400px;}
.ws38{word-spacing:-33.809280px;}
.ws32{word-spacing:-33.681300px;}
.ws36{word-spacing:-33.678300px;}
.ws3e{word-spacing:-33.628800px;}
.ws3d{word-spacing:-33.594900px;}
.ws21{word-spacing:-33.360000px;}
.ws9{word-spacing:-32.611800px;}
.ws8{word-spacing:-32.577900px;}
.ws30{word-spacing:-31.628700px;}
.ws4c{word-spacing:-30.065700px;}
.ws42{word-spacing:-29.289900px;}
.ws4{word-spacing:-28.509900px;}
.ws4d{word-spacing:-27.637800px;}
.ws23{word-spacing:-27.526800px;}
.ws1d{word-spacing:-27.492900px;}
.ws45{word-spacing:-26.637900px;}
.ws2a{word-spacing:-26.312700px;}
.ws43{word-spacing:-26.010900px;}
.ws22{word-spacing:-25.536900px;}
.ws1b{word-spacing:-25.458900px;}
.ws41{word-spacing:-25.449900px;}
.ws2b{word-spacing:-25.061700px;}
.ws47{word-spacing:-24.583500px;}
.wsc{word-spacing:-24.441900px;}
.ws0{word-spacing:-23.424900px;}
.ws13{word-spacing:-23.097000px;}
.ws3{word-spacing:-21.390900px;}
.ws12{word-spacing:-21.357000px;}
.ws26{word-spacing:-20.016000px;}
.ws48{word-spacing:-19.356900px;}
.ws2{word-spacing:-16.305900px;}
.ws2f{word-spacing:-16.272000px;}
.ws2e{word-spacing:-15.918000px;}
.ws27{word-spacing:-5.453100px;}
.ws2d{word-spacing:-4.503600px;}
.ws44{word-spacing:-3.108450px;}
.ws2c{word-spacing:-1.160100px;}
.ws25{word-spacing:-0.513300px;}
.ws1{word-spacing:0.000000px;}
.ws24{word-spacing:0.287790px;}
.ws28{word-spacing:0.737250px;}
.ws1f{word-spacing:2.672400px;}
.ws1e{word-spacing:2.697600px;}
.ws20{word-spacing:3.376800px;}
.ws37{word-spacing:9.338700px;}
.ws10{word-spacing:175.081200px;}
.ws3c{word-spacing:437.948550px;}
.ws3b{word-spacing:468.846600px;}
.ws29{word-spacing:1046.523900px;}
.ws4a{word-spacing:1628.763600px;}
._d{margin-left:-1717.448100px;}
._f{margin-left:-21.730800px;}
._13{margin-left:-15.355200px;}
._12{margin-left:-14.060100px;}
._10{margin-left:-12.842700px;}
._b{margin-left:-11.163600px;}
._6{margin-left:-9.950400px;}
._2{margin-left:-8.425200px;}
._17{margin-left:-7.401000px;}
._5{margin-left:-6.195000px;}
._0{margin-left:-4.460400px;}
._1{margin-left:-2.973600px;}
._3{margin-left:-1.239000px;}
._7{width:1.747500px;}
._4{width:2.973600px;}
._9{width:4.027500px;}
._11{width:5.477700px;}
._a{width:6.837450px;}
._23{width:8.101800px;}
._1f{width:10.604850px;}
._21{width:11.626350px;}
._1a{width:14.533800px;}
._1d{width:17.411250px;}
._1e{width:18.504450px;}
._8{width:21.403200px;}
._16{width:25.410000px;}
._24{width:36.848700px;}
._15{width:41.145300px;}
._20{width:45.217350px;}
._18{width:51.347100px;}
._26{width:308.479500px;}
._2a{width:315.893700px;}
._2b{width:339.960450px;}
._14{width:493.187550px;}
._29{width:523.884750px;}
._28{width:538.595700px;}
._19{width:897.311700px;}
._c{width:1016.149200px;}
._2c{width:1073.869200px;}
._27{width:1084.091100px;}
._22{width:1189.039950px;}
._1c{width:1405.227600px;}
._e{width:1637.965200px;}
._25{width:1727.585400px;}
._1b{width:3010.811400px;}
.fc14{color:rgb(31,73,125);}
.fc13{color:rgb(237,125,49);}
.fc12{color:rgb(0,176,80);}
.fce{color:rgb(137,137,137);}
.fcd{color:rgb(0,112,192);}
.fcf{color:rgb(255,155,51);}
.fc5{color:rgb(255,255,0);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(62,82,144);}
.fc10{color:rgb(68,84,106);}
.fc0{color:rgb(112,48,160);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc11{color:rgb(84,130,53);}
.fc7{color:rgb(255,0,0);}
.fc8{color:rgb(5,99,193);}
.fcb{color:rgb(0,151,167);}
.fc9{color:rgb(68,114,196);}
.fcc{color:rgb(91,155,213);}
.fca{color:rgb(239,206,145);}
.fs28{font-size:67.650000px;}
.fs22{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fs15{font-size:85.500000px;}
.fs14{font-size:85.650000px;}
.fs24{font-size:90.150000px;}
.fs19{font-size:94.500000px;}
.fs7{font-size:94.650000px;}
.fs2{font-size:103.650000px;}
.fs3{font-size:108.150000px;}
.fs20{font-size:112.650000px;}
.fs16{font-size:121.650000px;}
.fs23{font-size:121.800000px;}
.fs9{font-size:126.150000px;}
.fs1d{font-size:130.650000px;}
.fs1e{font-size:130.800000px;}
.fsd{font-size:144.150000px;}
.fse{font-size:144.300000px;}
.fs26{font-size:148.650000px;}
.fs25{font-size:148.800000px;}
.fs1c{font-size:157.650000px;}
.fs1b{font-size:157.800000px;}
.fs18{font-size:166.650000px;}
.fs17{font-size:166.800000px;}
.fs6{font-size:171.150000px;}
.fs8{font-size:175.800000px;}
.fs13{font-size:193.650000px;}
.fsc{font-size:193.800000px;}
.fsa{font-size:198.300000px;}
.fs10{font-size:216.300000px;}
.fs5{font-size:234.300000px;}
.fsf{font-size:238.800000px;}
.fs1a{font-size:238.950000px;}
.fs0{font-size:247.800000px;}
.fs1{font-size:247.950000px;}
.fs27{font-size:256.800000px;}
.fs12{font-size:265.800000px;}
.fs11{font-size:265.950000px;}
.fsb{font-size:288.450000px;}
.fs1f{font-size:324.450000px;}
.fs21{font-size:360.450000px;}
.y0{bottom:0.000000px;}
.y11{bottom:0.870000px;}
.ya2{bottom:1.875000px;}
.y47{bottom:10.800000px;}
.y1c{bottom:12.375000px;}
.y74{bottom:14.175000px;}
.y4f{bottom:14.287500px;}
.yb{bottom:14.475000px;}
.y7{bottom:16.575000px;}
.y1e{bottom:16.612500px;}
.ybf{bottom:18.150000px;}
.y153{bottom:20.250000px;}
.y15f{bottom:21.412500px;}
.yf9{bottom:23.925000px;}
.ya8{bottom:24.862500px;}
.y2f{bottom:27.862500px;}
.y81{bottom:30.225000px;}
.y77{bottom:30.525000px;}
.yb2{bottom:36.712500px;}
.y16c{bottom:38.062500px;}
.y46{bottom:40.087500px;}
.ya0{bottom:49.237500px;}
.ya{bottom:51.675000px;}
.ybd{bottom:53.100000px;}
.y2e{bottom:54.900000px;}
.y162{bottom:60.675000px;}
.y15e{bottom:60.862500px;}
.y13e{bottom:66.037500px;}
.ydf{bottom:69.450000px;}
.y28{bottom:70.987500px;}
.yb1{bottom:72.750000px;}
.yaf{bottom:74.025000px;}
.ybc{bottom:74.512500px;}
.y128{bottom:79.612500px;}
.y2d{bottom:80.812500px;}
.y19f{bottom:81.712500px;}
.ybe{bottom:84.000000px;}
.y80{bottom:87.675000px;}
.yf4{bottom:90.825000px;}
.ya1{bottom:92.925000px;}
.y1a0{bottom:94.425000px;}
.yf{bottom:95.775000px;}
.y6b{bottom:96.450000px;}
.y13d{bottom:98.700000px;}
.y15a{bottom:99.937500px;}
.y161{bottom:100.125000px;}
.y15d{bottom:100.275000px;}
.y62{bottom:100.950000px;}
.yb6{bottom:103.650000px;}
.yf6{bottom:105.450000px;}
.y6{bottom:106.575000px;}
.y19e{bottom:107.625000px;}
.y17a{bottom:118.012500px;}
.y27{bottom:121.200000px;}
.y139{bottom:122.025000px;}
.yf3{bottom:123.487500px;}
.yae{bottom:123.600000px;}
.y105{bottom:127.650000px;}
.yc7{bottom:130.162500px;}
.y57{bottom:133.612500px;}
.y170{bottom:134.775000px;}
.y94{bottom:136.087500px;}
.y11d{bottom:136.312500px;}
.y168{bottom:137.212500px;}
.y160{bottom:139.537500px;}
.y15c{bottom:139.725000px;}
.y61{bottom:143.775000px;}
.y7f{bottom:144.000000px;}
.y5{bottom:146.025000px;}
.y130{bottom:146.850000px;}
.ye{bottom:148.725000px;}
.y6a{bottom:149.400000px;}
.y179{bottom:150.705000px;}
.y138{bottom:154.680000px;}
.yf2{bottom:156.150000px;}
.y152{bottom:157.500000px;}
.yf5{bottom:160.650000px;}
.yac{bottom:160.830000px;}
.y149{bottom:166.500000px;}
.y16f{bottom:168.555000px;}
.y175{bottom:168.675000px;}
.y45{bottom:169.350000px;}
.y167{bottom:169.875000px;}
.y4{bottom:170.805000px;}
.yde{bottom:170.925000px;}
.y115{bottom:176.370000px;}
.y15b{bottom:179.130000px;}
.y56{bottom:179.805000px;}
.y104{bottom:182.850000px;}
.y178{bottom:184.500000px;}
.yc6{bottom:185.370000px;}
.y60{bottom:186.555000px;}
.y137{bottom:187.350000px;}
.y127{bottom:187.755000px;}
.y184{bottom:190.845000px;}
.y12f{bottom:194.175000px;}
.y88{bottom:196.725000px;}
.y93{bottom:196.920000px;}
.y39{bottom:199.875000px;}
.y16e{bottom:201.255000px;}
.y174{bottom:201.330000px;}
.y7e{bottom:201.450000px;}
.y166{bottom:202.530000px;}
.y148{bottom:204.780000px;}
.y24{bottom:207.405000px;}
.y186{bottom:208.125000px;}
.y3{bottom:210.225000px;}
.ydd{bottom:212.595000px;}
.y44{bottom:214.425000px;}
.y177{bottom:217.170000px;}
.y151{bottom:217.200000px;}
.ya5{bottom:221.250000px;}
.y114{bottom:221.400000px;}
.y182{bottom:224.280000px;}
.y183{bottom:224.625000px;}
.ye9{bottom:226.425000px;}
.yd0{bottom:226.650000px;}
.y9d{bottom:228.375000px;}
.y5f{bottom:229.380000px;}
.yeb{bottom:230.850000px;}
.yad{bottom:231.525000px;}
.y1b{bottom:232.950000px;}
.y16d{bottom:233.925000px;}
.y173{bottom:234.045000px;}
.y103{bottom:238.050000px;}
.y69{bottom:239.505000px;}
.y11c{bottom:240.300000px;}
.yc5{bottom:240.570000px;}
.y185{bottom:240.795000px;}
.y55{bottom:241.755000px;}
.y126{bottom:241.830000px;}
.y92{bottom:241.980000px;}
.y38{bottom:242.655000px;}
.y87{bottom:244.050000px;}
.y7d{bottom:244.275000px;}
.yd3{bottom:249.720000px;}
.y176{bottom:249.825000px;}
.y19d{bottom:254.100000px;}
.ydc{bottom:255.405000px;}
.y147{bottom:256.620000px;}
.y187{bottom:257.295000px;}
.y43{bottom:260.625000px;}
.y23{bottom:264.870000px;}
.y113{bottom:266.475000px;}
.y5e{bottom:272.205000px;}
.yd4{bottom:272.820000px;}
.ycf{bottom:272.850000px;}
.ye8{bottom:274.875000px;}
.y9c{bottom:275.655000px;}
.y150{bottom:278.025000px;}
.y102{bottom:278.595000px;}
.y125{bottom:280.125000px;}
.ycb{bottom:280.275000px;}
.y37{bottom:285.480000px;}
.y17{bottom:289.620000px;}
.y136{bottom:291.000000px;}
.y68{bottom:291.345000px;}
.y146{bottom:293.820000px;}
.yd2{bottom:295.905000px;}
.yc4{bottom:296.880000px;}
.ydb{bottom:297.075000px;}
.y70{bottom:298.095000px;}
.y10c{bottom:299.625000px;}
.y7c{bottom:300.600000px;}
.y2{bottom:301.545000px;}
.y91{bottom:301.695000px;}
.yea{bottom:301.845000px;}
.y54{bottom:303.750000px;}
.y29{bottom:304.800000px;}
.y86{bottom:304.875000px;}
.y2c{bottom:305.070000px;}
.y9b{bottom:308.370000px;}
.yaa{bottom:308.445000px;}
.y4e{bottom:311.625000px;}
.y112{bottom:312.675000px;}
.y165{bottom:313.170000px;}
.y5d{bottom:315.000000px;}
.y13c{bottom:315.780000px;}
.y159{bottom:315.900000px;}
.y1aa{bottom:318.300000px;}
.yce{bottom:319.005000px;}
.y101{bottom:319.155000px;}
.y12e{bottom:319.200000px;}
.yb5{bottom:319.605000px;}
.y42{bottom:320.325000px;}
.ye7{bottom:322.155000px;}
.y22{bottom:322.320000px;}
.y36{bottom:329.400000px;}
.y16{bottom:333.570000px;}
.y124{bottom:334.200000px;}
.y158{bottom:335.520000px;}
.y8a{bottom:336.825000px;}
.y135{bottom:338.325000px;}
.y14f{bottom:338.850000px;}
.yd1{bottom:342.120000px;}
.y10b{bottom:343.545000px;}
.y53{bottom:351.030000px;}
.y73{bottom:353.205000px;}
.yda{bottom:354.525000px;}
.y9a{bottom:355.650000px;}
.yca{bottom:355.770000px;}
.y111{bottom:357.720000px;}
.y5c{bottom:357.825000px;}
.y6f{bottom:358.950000px;}
.y11b{bottom:360.870000px;}
.y90{bottom:362.520000px;}
.ycd{bottom:365.205000px;}
.y7b{bottom:365.925000px;}
.y41{bottom:366.525000px;}
.y85{bottom:366.825000px;}
.y1{bottom:367.995000px;}
.y1a1{bottom:370.875000px;}
.y35{bottom:372.225000px;}
.y21{bottom:379.770000px;}
.y4d{bottom:381.495000px;}
.y17f{bottom:382.500000px;}
.y2b{bottom:382.800000px;}
.y164{bottom:385.275000px;}
.y10a{bottom:386.355000px;}
.y123{bottom:388.275000px;}
.yd{bottom:388.320000px;}
.yd9{bottom:396.225000px;}
.y67{bottom:397.230000px;}
.y145{bottom:399.720000px;}
.yee{bottom:400.245000px;}
.y1a9{bottom:400.530000px;}
.y110{bottom:402.780000px;}
.yc3{bottom:407.280000px;}
.y40{bottom:411.570000px;}
.ya9{bottom:412.275000px;}
.ye6{bottom:412.500000px;}
.y52{bottom:413.025000px;}
.y89{bottom:413.445000px;}
.yab{bottom:413.775000px;}
.y84{bottom:414.150000px;}
.y181{bottom:414.825000px;}
.y12d{bottom:414.975000px;}
.y17e{bottom:415.155000px;}
.y34{bottom:416.175000px;}
.yf1{bottom:419.325000px;}
.y6e{bottom:419.775000px;}
.y15{bottom:420.300000px;}
.y99{bottom:421.005000px;}
.y11a{bottom:421.695000px;}
.y122{bottom:427.695000px;}
.y100{bottom:429.570000px;}
.y7a{bottom:435.780000px;}
.y13b{bottom:436.320000px;}
.y144{bottom:436.875000px;}
.y20{bottom:437.250000px;}
.yd8{bottom:439.005000px;}
.y1a8{bottom:442.200000px;}
.y134{bottom:443.100000px;}
.y5b{bottom:443.445000px;}
.y16b{bottom:444.675000px;}
.yc9{bottom:445.875000px;}
.ye2{bottom:446.625000px;}
.y17d{bottom:447.870000px;}
.y17b{bottom:448.320000px;}
.y180{bottom:448.650000px;}
.y10f{bottom:448.995000px;}
.y66{bottom:449.070000px;}
.y1b2{bottom:450.375000px;}
.yf0{bottom:451.995000px;}
.y4c{bottom:452.445000px;}
.y76{bottom:452.625000px;}
.y3f{bottom:456.630000px;}
.ybb{bottom:456.675000px;}
.y163{bottom:457.380000px;}
.yed{bottom:458.820000px;}
.y14e{bottom:459.405000px;}
.y2a{bottom:460.545000px;}
.y12c{bottom:462.255000px;}
.yc2{bottom:462.495000px;}
.y14{bottom:463.125000px;}
.ye5{bottom:465.450000px;}
.y98{bottom:468.300000px;}
.yff{bottom:470.130000px;}
.y83{bottom:476.100000px;}
.y172{bottom:476.595000px;}
.yb4{bottom:478.755000px;}
.y1b1{bottom:479.655000px;}
.y119{bottom:481.380000px;}
.yfa{bottom:481.650000px;}
.y1a7{bottom:482.775000px;}
.y8f{bottom:484.200000px;}
.y195{bottom:484.320000px;}
.yef{bottom:484.695000px;}
.y143{bottom:489.825000px;}
.y33{bottom:493.875000px;}
.y10e{bottom:494.025000px;}
.ye1{bottom:495.075000px;}
.yd7{bottom:495.345000px;}
.y133{bottom:499.425000px;}
.y65{bottom:502.005000px;}
.y16a{bottom:502.125000px;}
.yc1{bottom:503.070000px;}
.y97{bottom:504.375000px;}
.y14d{bottom:504.495000px;}
.y13{bottom:505.920000px;}
.y18c{bottom:507.405000px;}
.y194{bottom:507.975000px;}
.y12b{bottom:509.595000px;}
.yfe{bottom:510.675000px;}
.y109{bottom:513.780000px;}
.y17c{bottom:514.320000px;}
.y1a{bottom:514.725000px;}
.yec{bottom:517.425000px;}
.y3e{bottom:517.455000px;}
.ye4{bottom:518.400000px;}
.y19b{bottom:519.525000px;}
.y79{bottom:521.400000px;}
.y4b{bottom:522.300000px;}
.yc8{bottom:522.495000px;}
.y11e{bottom:522.870000px;}
.y1a6{bottom:524.445000px;}
.y5a{bottom:529.050000px;}
.y8e{bottom:529.245000px;}
.y32{bottom:529.950000px;}
.y18f{bottom:530.475000px;}
.y193{bottom:530.505000px;}
.y18b{bottom:531.075000px;}
.y157{bottom:531.870000px;}
.y171{bottom:534.030000px;}
.y121{bottom:534.720000px;}
.y51{bottom:536.925000px;}
.y1b0{bottom:537.120000px;}
.y82{bottom:538.050000px;}
.y6d{bottom:540.300000px;}
.y96{bottom:540.405000px;}
.y142{bottom:541.650000px;}
.y19a{bottom:542.070000px;}
.y118{bottom:542.220000px;}
.ye0{bottom:542.400000px;}
.y197{bottom:542.595000px;}
.y75{bottom:550.650000px;}
.yfd{bottom:551.250000px;}
.yd6{bottom:552.825000px;}
.y18a{bottom:553.620000px;}
.y64{bottom:553.830000px;}
.y18e{bottom:554.130000px;}
.y192{bottom:554.175000px;}
.y108{bottom:554.370000px;}
.y10d{bottom:554.880000px;}
.y12a{bottom:556.905000px;}
.y1f{bottom:557.775000px;}
.yc0{bottom:558.255000px;}
.y169{bottom:559.575000px;}
.y3d{bottom:562.545000px;}
.y14c{bottom:565.320000px;}
.y199{bottom:565.695000px;}
.y31{bottom:565.995000px;}
.y196{bottom:566.250000px;}
.y1a5{bottom:568.380000px;}
.yb3{bottom:569.025000px;}
.y155{bottom:571.125000px;}
.y156{bottom:571.275000px;}
.ye3{bottom:571.350000px;}
.y59{bottom:571.875000px;}
.y8d{bottom:574.320000px;}
.ya4{bottom:575.580000px;}
.y95{bottom:576.450000px;}
.ya7{bottom:576.720000px;}
.y189{bottom:577.245000px;}
.y18d{bottom:577.800000px;}
.y141{bottom:578.820000px;}
.ya6{bottom:582.075000px;}
.y1b5{bottom:585.900000px;}
.y120{bottom:588.795000px;}
.y198{bottom:589.350000px;}
.y78{bottom:591.255000px;}
.y4a{bottom:593.250000px;}
.y1af{bottom:594.600000px;}
.yd5{bottom:595.620000px;}
.y12{bottom:596.070000px;}
.y50{bottom:597.780000px;}
.y6c{bottom:600.030000px;}
.y191{bottom:600.345000px;}
.y188{bottom:600.900000px;}
.y117{bottom:603.030000px;}
.y30{bottom:603.150000px;}
.yfc{bottom:606.450000px;}
.y63{bottom:606.780000px;}
.y132{bottom:608.700000px;}
.y3c{bottom:608.745000px;}
.y107{bottom:609.570000px;}
.y1a4{bottom:613.470000px;}
.y58{bottom:614.655000px;}
.y8c{bottom:620.505000px;}
.y129{bottom:621.630000px;}
.y71{bottom:622.425000px;}
.y1ae{bottom:623.880000px;}
.y190{bottom:624.000000px;}
.yba{bottom:626.025000px;}
.y14b{bottom:626.130000px;}
.y140{bottom:631.755000px;}
.y9f{bottom:634.755000px;}
.y11f{bottom:642.870000px;}
.y9{bottom:645.300000px;}
.y1b4{bottom:646.725000px;}
.y1ad{bottom:652.050000px;}
.yf8{bottom:655.125000px;}
.y1a3{bottom:657.375000px;}
.ycc{bottom:658.530000px;}
.yb9{bottom:662.070000px;}
.yfb{bottom:662.505000px;}
.y13a{bottom:663.225000px;}
.y49{bottom:665.280000px;}
.y106{bottom:666.375000px;}
.y26{bottom:669.405000px;}
.y1d{bottom:670.050000px;}
.ya3{bottom:673.845000px;}
.y131{bottom:674.475000px;}
.y10{bottom:677.250000px;}
.y1ac{bottom:681.345000px;}
.y3b{bottom:695.820000px;}
.yb8{bottom:698.130000px;}
.y1a2{bottom:703.575000px;}
.y9e{bottom:705.720000px;}
.y1b3{bottom:707.595000px;}
.y8b{bottom:708.675000px;}
.y14a{bottom:709.500000px;}
.y13f{bottom:709.755000px;}
.y1ab{bottom:710.625000px;}
.y116{bottom:711.825000px;}
.y154{bottom:713.220000px;}
.y72{bottom:716.025000px;}
.yc{bottom:719.745000px;}
.y18{bottom:721.245000px;}
.yf7{bottom:727.245000px;}
.y25{bottom:728.025000px;}
.y19{bottom:728.775000px;}
.y48{bottom:729.525000px;}
.y3a{bottom:730.095000px;}
.y19c{bottom:731.850000px;}
.yb0{bottom:738.975000px;}
.yb7{bottom:748.275000px;}
.y8{bottom:787.695000px;}
.hc{height:47.250000px;}
.h37{height:52.628906px;}
.h38{height:52.738550px;}
.h3a{height:65.895776px;}
.h4d{height:67.286646px;}
.h5d{height:69.075439px;}
.h36{height:69.185083px;}
.h5e{height:71.172363px;}
.h2d{height:71.613281px;}
.h5{height:71.762476px;}
.h39{height:78.365083px;}
.h5c{height:81.112500px;}
.h1a{height:85.040771px;}
.h3f{height:85.113281px;}
.h19{height:85.189966px;}
.h35{height:87.026953px;}
.h58{height:87.545654px;}
.h57{height:87.699243px;}
.h3e{height:88.920923px;}
.h4a{height:89.665796px;}
.h21{height:93.992432px;}
.h8{height:94.141626px;}
.h5a{height:96.914575px;}
.h3{height:103.093286px;}
.h4{height:107.569116px;}
.h5b{height:108.112500px;}
.h50{height:110.737573px;}
.h3b{height:117.418550px;}
.h1c{height:120.996606px;}
.h2e{height:121.145801px;}
.h3d{height:121.813989px;}
.h3c{height:121.923633px;}
.h2f{height:124.560571px;}
.h30{height:124.714160px;}
.ha{height:125.472437px;}
.h28{height:129.948267px;}
.h27{height:130.097461px;}
.h26{height:133.775903px;}
.h32{height:142.485750px;}
.hf{height:143.375757px;}
.h10{height:143.524951px;}
.h41{height:145.615723px;}
.h31{height:145.728516px;}
.h33{height:145.783200px;}
.h1b{height:147.598901px;}
.h1d{height:147.752490px;}
.h47{height:147.851587px;}
.h48{height:148.000781px;}
.h45{height:152.206567px;}
.h44{height:152.360156px;}
.h25{height:156.803247px;}
.h24{height:156.952441px;}
.h43{height:161.421899px;}
.h29{height:161.575488px;}
.h20{height:165.754907px;}
.h1f{height:165.904102px;}
.h59{height:167.387695px;}
.h7{height:170.230737px;}
.h23{height:170.637231px;}
.h2a{height:170.790820px;}
.h9{height:174.855762px;}
.hb{height:188.811035px;}
.h15{height:192.609888px;}
.he{height:192.759082px;}
.h46{height:198.283228px;}
.h4f{height:198.436816px;}
.h40{height:199.981934px;}
.h16{height:205.949707px;}
.h4c{height:212.458301px;}
.h4b{height:212.578198px;}
.h12{height:215.138232px;}
.h4e{height:221.475146px;}
.h53{height:222.575757px;}
.h1e{height:227.373047px;}
.h22{height:227.515869px;}
.h6{height:233.041553px;}
.h1{height:235.942383px;}
.h2{height:236.085205px;}
.h11{height:237.517383px;}
.h54{height:237.666577px;}
.h55{height:252.996606px;}
.h56{height:253.056606px;}
.h34{height:253.081055px;}
.h13{height:253.223877px;}
.h49{height:255.420703px;}
.h14{height:264.372363px;}
.h18{height:274.647217px;}
.hd{height:286.900708px;}
.h51{height:301.924951px;}
.h2b{height:308.924561px;}
.h17{height:325.117383px;}
.h52{height:339.909888px;}
.h2c{height:343.201904px;}
.h42{height:350.644102px;}
.h0{height:810.000000px;}
.w2{width:138.375000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.xc{left:-5.550000px;}
.x0{left:0.000000px;}
.x3{left:10.799979px;}
.x5{left:22.124979px;}
.x30{left:33.112479px;}
.x7c{left:40.274979px;}
.x37{left:42.562479px;}
.x1e{left:44.137479px;}
.xcb{left:48.112479px;}
.x7a{left:55.349979px;}
.x8b{left:57.187479px;}
.x2e{left:58.499979px;}
.x8c{left:64.274979px;}
.x1{left:67.312479px;}
.x97{left:69.712479px;}
.x17{left:71.812479px;}
.x2f{left:73.199979px;}
.x4{left:79.162479px;}
.x48{left:80.399979px;}
.x5b{left:83.062479px;}
.x36{left:88.874979px;}
.x6{left:89.962479px;}
.x32{left:91.874979px;}
.x98{left:96.149979px;}
.xb4{left:97.912479px;}
.x57{left:98.924979px;}
.x33{left:100.574979px;}
.xb5{left:106.049979px;}
.x65{left:107.587479px;}
.x18{left:109.874979px;}
.x5d{left:113.137479px;}
.x7d{left:114.149979px;}
.x31{left:118.874979px;}
.x7b{left:123.299979px;}
.x99{left:126.262479px;}
.x16{left:131.849979px;}
.x3f{left:136.912479px;}
.x39{left:140.324979px;}
.x40{left:141.337479px;}
.x3b{left:142.762479px;}
.x9f{left:144.749979px;}
.x5c{left:146.324979px;}
.x9d{left:147.712479px;}
.x43{left:152.654979px;}
.x11{left:162.554979px;}
.x5e{left:164.249979px;}
.x7f{left:176.699979px;}
.x69{left:179.849979px;}
.x67{left:185.579979px;}
.x9e{left:189.149979px;}
.x9{left:190.424979px;}
.x4e{left:194.969979px;}
.x49{left:200.474979px;}
.x34{left:207.749979px;}
.x4a{left:209.444979px;}
.x68{left:213.344979px;}
.x79{left:217.049979px;}
.x66{left:218.549979px;}
.x44{left:220.874979px;}
.x19{left:223.274979px;}
.x22{left:229.004979px;}
.x53{left:231.119979px;}
.x82{left:236.849979px;}
.x12{left:246.404979px;}
.x58{left:252.149979px;}
.x54{left:256.124979px;}
.x3e{left:257.219979px;}
.xd{left:266.999979px;}
.xb7{left:277.424979px;}
.xb6{left:287.849979px;}
.x10{left:291.224979px;}
.x1c{left:295.949979px;}
.x21{left:299.969979px;}
.xe{left:309.449979px;}
.xf{left:311.924979px;}
.x7e{left:346.244979px;}
.x38{left:347.774979px;}
.x41{left:361.244979px;}
.x59{left:363.749979px;}
.x56{left:364.949979px;}
.x42{left:377.444979px;}
.xc8{left:386.969979px;}
.x60{left:388.199979px;}
.x3c{left:389.894979px;}
.x1d{left:391.094979px;}
.x5f{left:398.129979px;}
.x1b{left:405.029979px;}
.x72{left:408.254979px;}
.xa7{left:409.574979px;}
.x3d{left:415.199979px;}
.xa8{left:418.994979px;}
.x50{left:423.899979px;}
.xae{left:428.849979px;}
.x6a{left:433.874979px;}
.x6b{left:436.469979px;}
.xa9{left:444.599979px;}
.xa{left:446.474979px;}
.x84{left:449.444979px;}
.x86{left:454.454979px;}
.x73{left:458.594979px;}
.xb9{left:470.174979px;}
.xcc{left:473.174979px;}
.x6c{left:478.694979px;}
.x85{left:496.049979px;}
.xb8{left:498.074979px;}
.xaa{left:517.724979px;}
.x87{left:527.069979px;}
.x23{left:532.124979px;}
.x3a{left:536.249979px;}
.x2{left:548.819979px;}
.x8d{left:550.424979px;}
.x4f{left:551.594979px;}
.x93{left:557.969979px;}
.x55{left:571.499979px;}
.x9a{left:576.374979px;}
.x13{left:578.249979px;}
.x8e{left:585.224979px;}
.x7{left:586.379979px;}
.x8f{left:587.849979px;}
.x80{left:592.829979px;}
.x47{left:596.474979px;}
.xa1{left:600.974979px;}
.x94{left:607.094979px;}
.x45{left:613.574979px;}
.xa0{left:615.419979px;}
.x1a{left:624.449979px;}
.x62{left:646.379979px;}
.xbb{left:655.094979px;}
.xb{left:661.500000px;}
.xbd{left:665.549979px;}
.x61{left:667.994979px;}
.xbe{left:674.519979px;}
.xc9{left:675.974979px;}
.x81{left:677.669979px;}
.xba{left:679.544979px;}
.xbc{left:686.249979px;}
.xa2{left:739.274979px;}
.x95{left:740.969979px;}
.xca{left:748.454979px;}
.x9b{left:750.974979px;}
.xaf{left:752.474979px;}
.xab{left:770.744979px;}
.x8{left:797.849979px;}
.xb0{left:804.824979px;}
.x74{left:806.204979px;}
.x6e{left:810.824979px;}
.x6d{left:816.329979px;}
.x89{left:821.924979px;}
.x75{left:845.279979px;}
.xbf{left:847.499979px;}
.x5a{left:849.149979px;}
.xc0{left:857.324979px;}
.x88{left:865.124979px;}
.x25{left:884.099979px;}
.x26{left:890.024979px;}
.x8a{left:891.194979px;}
.x2b{left:893.849979px;}
.x2a{left:899.474979px;}
.x6f{left:909.974979px;}
.x29{left:920.774979px;}
.x27{left:928.874979px;}
.x2c{left:934.229979px;}
.x63{left:940.724979px;}
.x2d{left:956.099979px;}
.x14{left:962.324979px;}
.x83{left:976.379979px;}
.x24{left:1002.749979px;}
.xa5{left:1011.944979px;}
.x28{left:1029.224979px;}
.x15{left:1033.049979px;}
.xa4{left:1039.274979px;}
.x90{left:1040.369979px;}
.x52{left:1041.749979px;}
.xc2{left:1045.319979px;}
.xc3{left:1052.474979px;}
.xa6{left:1053.719979px;}
.xc1{left:1058.879979px;}
.xa3{left:1062.824979px;}
.xcd{left:1072.154979px;}
.x96{left:1073.624979px;}
.x4d{left:1075.379979px;}
.x20{left:1077.749979px;}
.x4b{left:1087.754979px;}
.x91{left:1090.619979px;}
.x76{left:1094.219979px;}
.x4c{left:1110.749979px;}
.x1f{left:1114.319979px;}
.x70{left:1116.749979px;}
.xac{left:1118.444979px;}
.x46{left:1128.074979px;}
.xb2{left:1129.694979px;}
.x92{left:1133.624979px;}
.xb1{left:1137.419979px;}
.xb3{left:1138.829979px;}
.x9c{left:1151.699979px;}
.x64{left:1167.329979px;}
.x77{left:1177.379979px;}
.x71{left:1218.869979px;}
.xad{left:1221.329979px;}
.xc4{left:1254.044979px;}
.xc5{left:1257.254979px;}
.xc6{left:1258.274979px;}
.xc7{left:1262.594979px;}
.x51{left:1287.329979px;}
.x35{left:1312.694979px;}
.x78{left:1403.279979px;}
@media print{
.v1{vertical-align:-9.733333pt;}
.vc{vertical-align:-3.866667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.160000pt;}
.v6{vertical-align:12.000000pt;}
.v5{vertical-align:57.493333pt;}
.va{vertical-align:70.400000pt;}
.v3{vertical-align:73.600000pt;}
.vd{vertical-align:77.866667pt;}
.v2{vertical-align:87.600000pt;}
.vb{vertical-align:117.333333pt;}
.v9{vertical-align:130.933333pt;}
.v8{vertical-align:140.800000pt;}
.v7{vertical-align:164.213333pt;}
.ls3a{letter-spacing:-2.922667pt;}
.ls2{letter-spacing:-2.864000pt;}
.ls1{letter-spacing:-2.730667pt;}
.ls23{letter-spacing:-1.946667pt;}
.ls1d{letter-spacing:-1.738667pt;}
.ls34{letter-spacing:-1.541333pt;}
.ls3b{letter-spacing:-1.317333pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls14{letter-spacing:-1.034667pt;}
.ls1e{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.314667pt;}
.ls2a{letter-spacing:-0.124800pt;}
.ls24{letter-spacing:-0.122133pt;}
.ls20{letter-spacing:-0.116800pt;}
.ls2b{letter-spacing:-0.008373pt;}
.ls2c{letter-spacing:-0.005600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.008427pt;}
.ls26{letter-spacing:0.011200pt;}
.ls1f{letter-spacing:0.016373pt;}
.ls3d{letter-spacing:0.018933pt;}
.ls28{letter-spacing:0.124800pt;}
.ls37{letter-spacing:0.125600pt;}
.ls3e{letter-spacing:0.125867pt;}
.lsd{letter-spacing:0.329600pt;}
.ls39{letter-spacing:0.349600pt;}
.ls40{letter-spacing:0.378667pt;}
.ls12{letter-spacing:0.390400pt;}
.lse{letter-spacing:0.420533pt;}
.lsa{letter-spacing:0.465067pt;}
.ls11{letter-spacing:0.473867pt;}
.ls4{letter-spacing:0.482667pt;}
.ls7{letter-spacing:0.495200pt;}
.ls2f{letter-spacing:0.514133pt;}
.ls8{letter-spacing:0.518400pt;}
.ls16{letter-spacing:0.521867pt;}
.ls10{letter-spacing:0.527200pt;}
.ls6{letter-spacing:0.548533pt;}
.ls9{letter-spacing:0.625067pt;}
.ls15{letter-spacing:0.655200pt;}
.ls36{letter-spacing:0.741333pt;}
.ls19{letter-spacing:0.752000pt;}
.ls3{letter-spacing:0.834667pt;}
.ls38{letter-spacing:0.896000pt;}
.ls13{letter-spacing:0.912000pt;}
.ls1a{letter-spacing:0.989867pt;}
.lsf{letter-spacing:1.032667pt;}
.ls33{letter-spacing:1.034667pt;}
.ls3f{letter-spacing:1.177867pt;}
.ls41{letter-spacing:1.274667pt;}
.ls17{letter-spacing:1.379333pt;}
.ls35{letter-spacing:1.514667pt;}
.ls5{letter-spacing:1.546667pt;}
.ls3c{letter-spacing:1.952000pt;}
.lsc{letter-spacing:2.272000pt;}
.ls29{letter-spacing:10.098933pt;}
.ls27{letter-spacing:15.752267pt;}
.ls25{letter-spacing:15.805600pt;}
.ls31{letter-spacing:30.237867pt;}
.ls32{letter-spacing:30.304267pt;}
.ls2d{letter-spacing:44.240000pt;}
.ls2e{letter-spacing:44.286667pt;}
.ls30{letter-spacing:46.953333pt;}
.ls1c{letter-spacing:58.240000pt;}
.ls1b{letter-spacing:58.286667pt;}
.ws40{word-spacing:-236.400000pt;}
.ws15{word-spacing:-148.266667pt;}
.ws14{word-spacing:-148.133333pt;}
.ws16{word-spacing:-140.266667pt;}
.ws1a{word-spacing:-140.133333pt;}
.ws19{word-spacing:-116.133333pt;}
.ws1c{word-spacing:-72.410400pt;}
.ws3f{word-spacing:-71.481867pt;}
.ws6{word-spacing:-57.946400pt;}
.wsd{word-spacing:-53.396267pt;}
.wsa{word-spacing:-47.972267pt;}
.wsb{word-spacing:-43.452267pt;}
.wse{word-spacing:-40.721600pt;}
.wsf{word-spacing:-40.588267pt;}
.ws5{word-spacing:-39.836267pt;}
.ws7{word-spacing:-38.932267pt;}
.ws46{word-spacing:-38.902133pt;}
.ws4b{word-spacing:-35.621067pt;}
.ws49{word-spacing:-35.316267pt;}
.ws3a{word-spacing:-33.508267pt;}
.ws11{word-spacing:-33.478133pt;}
.ws17{word-spacing:-31.700267pt;}
.ws18{word-spacing:-31.670133pt;}
.ws35{word-spacing:-30.185867pt;}
.ws34{word-spacing:-30.072267pt;}
.ws31{word-spacing:-30.069493pt;}
.ws33{word-spacing:-30.061067pt;}
.ws39{word-spacing:-30.055467pt;}
.ws38{word-spacing:-30.052693pt;}
.ws32{word-spacing:-29.938933pt;}
.ws36{word-spacing:-29.936267pt;}
.ws3e{word-spacing:-29.892267pt;}
.ws3d{word-spacing:-29.862133pt;}
.ws21{word-spacing:-29.653333pt;}
.ws9{word-spacing:-28.988267pt;}
.ws8{word-spacing:-28.958133pt;}
.ws30{word-spacing:-28.114400pt;}
.ws4c{word-spacing:-26.725067pt;}
.ws42{word-spacing:-26.035467pt;}
.ws4{word-spacing:-25.342133pt;}
.ws4d{word-spacing:-24.566933pt;}
.ws23{word-spacing:-24.468267pt;}
.ws1d{word-spacing:-24.438133pt;}
.ws45{word-spacing:-23.678133pt;}
.ws2a{word-spacing:-23.389067pt;}
.ws43{word-spacing:-23.120800pt;}
.ws22{word-spacing:-22.699467pt;}
.ws1b{word-spacing:-22.630133pt;}
.ws41{word-spacing:-22.622133pt;}
.ws2b{word-spacing:-22.277067pt;}
.ws47{word-spacing:-21.852000pt;}
.wsc{word-spacing:-21.726133pt;}
.ws0{word-spacing:-20.822133pt;}
.ws13{word-spacing:-20.530667pt;}
.ws3{word-spacing:-19.014133pt;}
.ws12{word-spacing:-18.984000pt;}
.ws26{word-spacing:-17.792000pt;}
.ws48{word-spacing:-17.206133pt;}
.ws2{word-spacing:-14.494133pt;}
.ws2f{word-spacing:-14.464000pt;}
.ws2e{word-spacing:-14.149333pt;}
.ws27{word-spacing:-4.847200pt;}
.ws2d{word-spacing:-4.003200pt;}
.ws44{word-spacing:-2.763067pt;}
.ws2c{word-spacing:-1.031200pt;}
.ws25{word-spacing:-0.456267pt;}
.ws1{word-spacing:0.000000pt;}
.ws24{word-spacing:0.255813pt;}
.ws28{word-spacing:0.655333pt;}
.ws1f{word-spacing:2.375467pt;}
.ws1e{word-spacing:2.397867pt;}
.ws20{word-spacing:3.001600pt;}
.ws37{word-spacing:8.301067pt;}
.ws10{word-spacing:155.627733pt;}
.ws3c{word-spacing:389.287600pt;}
.ws3b{word-spacing:416.752533pt;}
.ws29{word-spacing:930.243467pt;}
.ws4a{word-spacing:1447.789867pt;}
._d{margin-left:-1526.620533pt;}
._f{margin-left:-19.316267pt;}
._13{margin-left:-13.649067pt;}
._12{margin-left:-12.497867pt;}
._10{margin-left:-11.415733pt;}
._b{margin-left:-9.923200pt;}
._6{margin-left:-8.844800pt;}
._2{margin-left:-7.489067pt;}
._17{margin-left:-6.578667pt;}
._5{margin-left:-5.506667pt;}
._0{margin-left:-3.964800pt;}
._1{margin-left:-2.643200pt;}
._3{margin-left:-1.101333pt;}
._7{width:1.553333pt;}
._4{width:2.643200pt;}
._9{width:3.580000pt;}
._11{width:4.869067pt;}
._a{width:6.077733pt;}
._23{width:7.201600pt;}
._1f{width:9.426533pt;}
._21{width:10.334533pt;}
._1a{width:12.918933pt;}
._1d{width:15.476667pt;}
._1e{width:16.448400pt;}
._8{width:19.025067pt;}
._16{width:22.586667pt;}
._24{width:32.754400pt;}
._15{width:36.573600pt;}
._20{width:40.193200pt;}
._18{width:45.641867pt;}
._26{width:274.204000pt;}
._2a{width:280.794400pt;}
._2b{width:302.187067pt;}
._14{width:438.388933pt;}
._29{width:465.675333pt;}
._28{width:478.751733pt;}
._19{width:797.610400pt;}
._c{width:903.243733pt;}
._2c{width:954.550400pt;}
._27{width:963.636533pt;}
._22{width:1056.924400pt;}
._1c{width:1249.091200pt;}
._e{width:1455.969067pt;}
._25{width:1535.631467pt;}
._1b{width:2676.276800pt;}
.fs28{font-size:60.133333pt;}
.fs22{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fs15{font-size:76.000000pt;}
.fs14{font-size:76.133333pt;}
.fs24{font-size:80.133333pt;}
.fs19{font-size:84.000000pt;}
.fs7{font-size:84.133333pt;}
.fs2{font-size:92.133333pt;}
.fs3{font-size:96.133333pt;}
.fs20{font-size:100.133333pt;}
.fs16{font-size:108.133333pt;}
.fs23{font-size:108.266667pt;}
.fs9{font-size:112.133333pt;}
.fs1d{font-size:116.133333pt;}
.fs1e{font-size:116.266667pt;}
.fsd{font-size:128.133333pt;}
.fse{font-size:128.266667pt;}
.fs26{font-size:132.133333pt;}
.fs25{font-size:132.266667pt;}
.fs1c{font-size:140.133333pt;}
.fs1b{font-size:140.266667pt;}
.fs18{font-size:148.133333pt;}
.fs17{font-size:148.266667pt;}
.fs6{font-size:152.133333pt;}
.fs8{font-size:156.266667pt;}
.fs13{font-size:172.133333pt;}
.fsc{font-size:172.266667pt;}
.fsa{font-size:176.266667pt;}
.fs10{font-size:192.266667pt;}
.fs5{font-size:208.266667pt;}
.fsf{font-size:212.266667pt;}
.fs1a{font-size:212.400000pt;}
.fs0{font-size:220.266667pt;}
.fs1{font-size:220.400000pt;}
.fs27{font-size:228.266667pt;}
.fs12{font-size:236.266667pt;}
.fs11{font-size:236.400000pt;}
.fsb{font-size:256.400000pt;}
.fs1f{font-size:288.400000pt;}
.fs21{font-size:320.400000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:0.773333pt;}
.ya2{bottom:1.666667pt;}
.y47{bottom:9.600000pt;}
.y1c{bottom:11.000000pt;}
.y74{bottom:12.600000pt;}
.y4f{bottom:12.700000pt;}
.yb{bottom:12.866667pt;}
.y7{bottom:14.733333pt;}
.y1e{bottom:14.766667pt;}
.ybf{bottom:16.133333pt;}
.y153{bottom:18.000000pt;}
.y15f{bottom:19.033333pt;}
.yf9{bottom:21.266667pt;}
.ya8{bottom:22.100000pt;}
.y2f{bottom:24.766667pt;}
.y81{bottom:26.866667pt;}
.y77{bottom:27.133333pt;}
.yb2{bottom:32.633333pt;}
.y16c{bottom:33.833333pt;}
.y46{bottom:35.633333pt;}
.ya0{bottom:43.766667pt;}
.ya{bottom:45.933333pt;}
.ybd{bottom:47.200000pt;}
.y2e{bottom:48.800000pt;}
.y162{bottom:53.933333pt;}
.y15e{bottom:54.100000pt;}
.y13e{bottom:58.700000pt;}
.ydf{bottom:61.733333pt;}
.y28{bottom:63.100000pt;}
.yb1{bottom:64.666667pt;}
.yaf{bottom:65.800000pt;}
.ybc{bottom:66.233333pt;}
.y128{bottom:70.766667pt;}
.y2d{bottom:71.833333pt;}
.y19f{bottom:72.633333pt;}
.ybe{bottom:74.666667pt;}
.y80{bottom:77.933333pt;}
.yf4{bottom:80.733333pt;}
.ya1{bottom:82.600000pt;}
.y1a0{bottom:83.933333pt;}
.yf{bottom:85.133333pt;}
.y6b{bottom:85.733333pt;}
.y13d{bottom:87.733333pt;}
.y15a{bottom:88.833333pt;}
.y161{bottom:89.000000pt;}
.y15d{bottom:89.133333pt;}
.y62{bottom:89.733333pt;}
.yb6{bottom:92.133333pt;}
.yf6{bottom:93.733333pt;}
.y6{bottom:94.733333pt;}
.y19e{bottom:95.666667pt;}
.y17a{bottom:104.900000pt;}
.y27{bottom:107.733333pt;}
.y139{bottom:108.466667pt;}
.yf3{bottom:109.766667pt;}
.yae{bottom:109.866667pt;}
.y105{bottom:113.466667pt;}
.yc7{bottom:115.700000pt;}
.y57{bottom:118.766667pt;}
.y170{bottom:119.800000pt;}
.y94{bottom:120.966667pt;}
.y11d{bottom:121.166667pt;}
.y168{bottom:121.966667pt;}
.y160{bottom:124.033333pt;}
.y15c{bottom:124.200000pt;}
.y61{bottom:127.800000pt;}
.y7f{bottom:128.000000pt;}
.y5{bottom:129.800000pt;}
.y130{bottom:130.533333pt;}
.ye{bottom:132.200000pt;}
.y6a{bottom:132.800000pt;}
.y179{bottom:133.960000pt;}
.y138{bottom:137.493333pt;}
.yf2{bottom:138.800000pt;}
.y152{bottom:140.000000pt;}
.yf5{bottom:142.800000pt;}
.yac{bottom:142.960000pt;}
.y149{bottom:148.000000pt;}
.y16f{bottom:149.826667pt;}
.y175{bottom:149.933333pt;}
.y45{bottom:150.533333pt;}
.y167{bottom:151.000000pt;}
.y4{bottom:151.826667pt;}
.yde{bottom:151.933333pt;}
.y115{bottom:156.773333pt;}
.y15b{bottom:159.226667pt;}
.y56{bottom:159.826667pt;}
.y104{bottom:162.533333pt;}
.y178{bottom:164.000000pt;}
.yc6{bottom:164.773333pt;}
.y60{bottom:165.826667pt;}
.y137{bottom:166.533333pt;}
.y127{bottom:166.893333pt;}
.y184{bottom:169.640000pt;}
.y12f{bottom:172.600000pt;}
.y88{bottom:174.866667pt;}
.y93{bottom:175.040000pt;}
.y39{bottom:177.666667pt;}
.y16e{bottom:178.893333pt;}
.y174{bottom:178.960000pt;}
.y7e{bottom:179.066667pt;}
.y166{bottom:180.026667pt;}
.y148{bottom:182.026667pt;}
.y24{bottom:184.360000pt;}
.y186{bottom:185.000000pt;}
.y3{bottom:186.866667pt;}
.ydd{bottom:188.973333pt;}
.y44{bottom:190.600000pt;}
.y177{bottom:193.040000pt;}
.y151{bottom:193.066667pt;}
.ya5{bottom:196.666667pt;}
.y114{bottom:196.800000pt;}
.y182{bottom:199.360000pt;}
.y183{bottom:199.666667pt;}
.ye9{bottom:201.266667pt;}
.yd0{bottom:201.466667pt;}
.y9d{bottom:203.000000pt;}
.y5f{bottom:203.893333pt;}
.yeb{bottom:205.200000pt;}
.yad{bottom:205.800000pt;}
.y1b{bottom:207.066667pt;}
.y16d{bottom:207.933333pt;}
.y173{bottom:208.040000pt;}
.y103{bottom:211.600000pt;}
.y69{bottom:212.893333pt;}
.y11c{bottom:213.600000pt;}
.yc5{bottom:213.840000pt;}
.y185{bottom:214.040000pt;}
.y55{bottom:214.893333pt;}
.y126{bottom:214.960000pt;}
.y92{bottom:215.093333pt;}
.y38{bottom:215.693333pt;}
.y87{bottom:216.933333pt;}
.y7d{bottom:217.133333pt;}
.yd3{bottom:221.973333pt;}
.y176{bottom:222.066667pt;}
.y19d{bottom:225.866667pt;}
.ydc{bottom:227.026667pt;}
.y147{bottom:228.106667pt;}
.y187{bottom:228.706667pt;}
.y43{bottom:231.666667pt;}
.y23{bottom:235.440000pt;}
.y113{bottom:236.866667pt;}
.y5e{bottom:241.960000pt;}
.yd4{bottom:242.506667pt;}
.ycf{bottom:242.533333pt;}
.ye8{bottom:244.333333pt;}
.y9c{bottom:245.026667pt;}
.y150{bottom:247.133333pt;}
.y102{bottom:247.640000pt;}
.y125{bottom:249.000000pt;}
.ycb{bottom:249.133333pt;}
.y37{bottom:253.760000pt;}
.y17{bottom:257.440000pt;}
.y136{bottom:258.666667pt;}
.y68{bottom:258.973333pt;}
.y146{bottom:261.173333pt;}
.yd2{bottom:263.026667pt;}
.yc4{bottom:263.893333pt;}
.ydb{bottom:264.066667pt;}
.y70{bottom:264.973333pt;}
.y10c{bottom:266.333333pt;}
.y7c{bottom:267.200000pt;}
.y2{bottom:268.040000pt;}
.y91{bottom:268.173333pt;}
.yea{bottom:268.306667pt;}
.y54{bottom:270.000000pt;}
.y29{bottom:270.933333pt;}
.y86{bottom:271.000000pt;}
.y2c{bottom:271.173333pt;}
.y9b{bottom:274.106667pt;}
.yaa{bottom:274.173333pt;}
.y4e{bottom:277.000000pt;}
.y112{bottom:277.933333pt;}
.y165{bottom:278.373333pt;}
.y5d{bottom:280.000000pt;}
.y13c{bottom:280.693333pt;}
.y159{bottom:280.800000pt;}
.y1aa{bottom:282.933333pt;}
.yce{bottom:283.560000pt;}
.y101{bottom:283.693333pt;}
.y12e{bottom:283.733333pt;}
.yb5{bottom:284.093333pt;}
.y42{bottom:284.733333pt;}
.ye7{bottom:286.360000pt;}
.y22{bottom:286.506667pt;}
.y36{bottom:292.800000pt;}
.y16{bottom:296.506667pt;}
.y124{bottom:297.066667pt;}
.y158{bottom:298.240000pt;}
.y8a{bottom:299.400000pt;}
.y135{bottom:300.733333pt;}
.y14f{bottom:301.200000pt;}
.yd1{bottom:304.106667pt;}
.y10b{bottom:305.373333pt;}
.y53{bottom:312.026667pt;}
.y73{bottom:313.960000pt;}
.yda{bottom:315.133333pt;}
.y9a{bottom:316.133333pt;}
.yca{bottom:316.240000pt;}
.y111{bottom:317.973333pt;}
.y5c{bottom:318.066667pt;}
.y6f{bottom:319.066667pt;}
.y11b{bottom:320.773333pt;}
.y90{bottom:322.240000pt;}
.ycd{bottom:324.626667pt;}
.y7b{bottom:325.266667pt;}
.y41{bottom:325.800000pt;}
.y85{bottom:326.066667pt;}
.y1{bottom:327.106667pt;}
.y1a1{bottom:329.666667pt;}
.y35{bottom:330.866667pt;}
.y21{bottom:337.573333pt;}
.y4d{bottom:339.106667pt;}
.y17f{bottom:340.000000pt;}
.y2b{bottom:340.266667pt;}
.y164{bottom:342.466667pt;}
.y10a{bottom:343.426667pt;}
.y123{bottom:345.133333pt;}
.yd{bottom:345.173333pt;}
.yd9{bottom:352.200000pt;}
.y67{bottom:353.093333pt;}
.y145{bottom:355.306667pt;}
.yee{bottom:355.773333pt;}
.y1a9{bottom:356.026667pt;}
.y110{bottom:358.026667pt;}
.yc3{bottom:362.026667pt;}
.y40{bottom:365.840000pt;}
.ya9{bottom:366.466667pt;}
.ye6{bottom:366.666667pt;}
.y52{bottom:367.133333pt;}
.y89{bottom:367.506667pt;}
.yab{bottom:367.800000pt;}
.y84{bottom:368.133333pt;}
.y181{bottom:368.733333pt;}
.y12d{bottom:368.866667pt;}
.y17e{bottom:369.026667pt;}
.y34{bottom:369.933333pt;}
.yf1{bottom:372.733333pt;}
.y6e{bottom:373.133333pt;}
.y15{bottom:373.600000pt;}
.y99{bottom:374.226667pt;}
.y11a{bottom:374.840000pt;}
.y122{bottom:380.173333pt;}
.y100{bottom:381.840000pt;}
.y7a{bottom:387.360000pt;}
.y13b{bottom:387.840000pt;}
.y144{bottom:388.333333pt;}
.y20{bottom:388.666667pt;}
.yd8{bottom:390.226667pt;}
.y1a8{bottom:393.066667pt;}
.y134{bottom:393.866667pt;}
.y5b{bottom:394.173333pt;}
.y16b{bottom:395.266667pt;}
.yc9{bottom:396.333333pt;}
.ye2{bottom:397.000000pt;}
.y17d{bottom:398.106667pt;}
.y17b{bottom:398.506667pt;}
.y180{bottom:398.800000pt;}
.y10f{bottom:399.106667pt;}
.y66{bottom:399.173333pt;}
.y1b2{bottom:400.333333pt;}
.yf0{bottom:401.773333pt;}
.y4c{bottom:402.173333pt;}
.y76{bottom:402.333333pt;}
.y3f{bottom:405.893333pt;}
.ybb{bottom:405.933333pt;}
.y163{bottom:406.560000pt;}
.yed{bottom:407.840000pt;}
.y14e{bottom:408.360000pt;}
.y2a{bottom:409.373333pt;}
.y12c{bottom:410.893333pt;}
.yc2{bottom:411.106667pt;}
.y14{bottom:411.666667pt;}
.ye5{bottom:413.733333pt;}
.y98{bottom:416.266667pt;}
.yff{bottom:417.893333pt;}
.y83{bottom:423.200000pt;}
.y172{bottom:423.640000pt;}
.yb4{bottom:425.560000pt;}
.y1b1{bottom:426.360000pt;}
.y119{bottom:427.893333pt;}
.yfa{bottom:428.133333pt;}
.y1a7{bottom:429.133333pt;}
.y8f{bottom:430.400000pt;}
.y195{bottom:430.506667pt;}
.yef{bottom:430.840000pt;}
.y143{bottom:435.400000pt;}
.y33{bottom:439.000000pt;}
.y10e{bottom:439.133333pt;}
.ye1{bottom:440.066667pt;}
.yd7{bottom:440.306667pt;}
.y133{bottom:443.933333pt;}
.y65{bottom:446.226667pt;}
.y16a{bottom:446.333333pt;}
.yc1{bottom:447.173333pt;}
.y97{bottom:448.333333pt;}
.y14d{bottom:448.440000pt;}
.y13{bottom:449.706667pt;}
.y18c{bottom:451.026667pt;}
.y194{bottom:451.533333pt;}
.y12b{bottom:452.973333pt;}
.yfe{bottom:453.933333pt;}
.y109{bottom:456.693333pt;}
.y17c{bottom:457.173333pt;}
.y1a{bottom:457.533333pt;}
.yec{bottom:459.933333pt;}
.y3e{bottom:459.960000pt;}
.ye4{bottom:460.800000pt;}
.y19b{bottom:461.800000pt;}
.y79{bottom:463.466667pt;}
.y4b{bottom:464.266667pt;}
.yc8{bottom:464.440000pt;}
.y11e{bottom:464.773333pt;}
.y1a6{bottom:466.173333pt;}
.y5a{bottom:470.266667pt;}
.y8e{bottom:470.440000pt;}
.y32{bottom:471.066667pt;}
.y18f{bottom:471.533333pt;}
.y193{bottom:471.560000pt;}
.y18b{bottom:472.066667pt;}
.y157{bottom:472.773333pt;}
.y171{bottom:474.693333pt;}
.y121{bottom:475.306667pt;}
.y51{bottom:477.266667pt;}
.y1b0{bottom:477.440000pt;}
.y82{bottom:478.266667pt;}
.y6d{bottom:480.266667pt;}
.y96{bottom:480.360000pt;}
.y142{bottom:481.466667pt;}
.y19a{bottom:481.840000pt;}
.y118{bottom:481.973333pt;}
.ye0{bottom:482.133333pt;}
.y197{bottom:482.306667pt;}
.y75{bottom:489.466667pt;}
.yfd{bottom:490.000000pt;}
.yd6{bottom:491.400000pt;}
.y18a{bottom:492.106667pt;}
.y64{bottom:492.293333pt;}
.y18e{bottom:492.560000pt;}
.y192{bottom:492.600000pt;}
.y108{bottom:492.773333pt;}
.y10d{bottom:493.226667pt;}
.y12a{bottom:495.026667pt;}
.y1f{bottom:495.800000pt;}
.yc0{bottom:496.226667pt;}
.y169{bottom:497.400000pt;}
.y3d{bottom:500.040000pt;}
.y14c{bottom:502.506667pt;}
.y199{bottom:502.840000pt;}
.y31{bottom:503.106667pt;}
.y196{bottom:503.333333pt;}
.y1a5{bottom:505.226667pt;}
.yb3{bottom:505.800000pt;}
.y155{bottom:507.666667pt;}
.y156{bottom:507.800000pt;}
.ye3{bottom:507.866667pt;}
.y59{bottom:508.333333pt;}
.y8d{bottom:510.506667pt;}
.ya4{bottom:511.626667pt;}
.y95{bottom:512.400000pt;}
.ya7{bottom:512.640000pt;}
.y189{bottom:513.106667pt;}
.y18d{bottom:513.600000pt;}
.y141{bottom:514.506667pt;}
.ya6{bottom:517.400000pt;}
.y1b5{bottom:520.800000pt;}
.y120{bottom:523.373333pt;}
.y198{bottom:523.866667pt;}
.y78{bottom:525.560000pt;}
.y4a{bottom:527.333333pt;}
.y1af{bottom:528.533333pt;}
.yd5{bottom:529.440000pt;}
.y12{bottom:529.840000pt;}
.y50{bottom:531.360000pt;}
.y6c{bottom:533.360000pt;}
.y191{bottom:533.640000pt;}
.y188{bottom:534.133333pt;}
.y117{bottom:536.026667pt;}
.y30{bottom:536.133333pt;}
.yfc{bottom:539.066667pt;}
.y63{bottom:539.360000pt;}
.y132{bottom:541.066667pt;}
.y3c{bottom:541.106667pt;}
.y107{bottom:541.840000pt;}
.y1a4{bottom:545.306667pt;}
.y58{bottom:546.360000pt;}
.y8c{bottom:551.560000pt;}
.y129{bottom:552.560000pt;}
.y71{bottom:553.266667pt;}
.y1ae{bottom:554.560000pt;}
.y190{bottom:554.666667pt;}
.yba{bottom:556.466667pt;}
.y14b{bottom:556.560000pt;}
.y140{bottom:561.560000pt;}
.y9f{bottom:564.226667pt;}
.y11f{bottom:571.440000pt;}
.y9{bottom:573.600000pt;}
.y1b4{bottom:574.866667pt;}
.y1ad{bottom:579.600000pt;}
.yf8{bottom:582.333333pt;}
.y1a3{bottom:584.333333pt;}
.ycc{bottom:585.360000pt;}
.yb9{bottom:588.506667pt;}
.yfb{bottom:588.893333pt;}
.y13a{bottom:589.533333pt;}
.y49{bottom:591.360000pt;}
.y106{bottom:592.333333pt;}
.y26{bottom:595.026667pt;}
.y1d{bottom:595.600000pt;}
.ya3{bottom:598.973333pt;}
.y131{bottom:599.533333pt;}
.y10{bottom:602.000000pt;}
.y1ac{bottom:605.640000pt;}
.y3b{bottom:618.506667pt;}
.yb8{bottom:620.560000pt;}
.y1a2{bottom:625.400000pt;}
.y9e{bottom:627.306667pt;}
.y1b3{bottom:628.973333pt;}
.y8b{bottom:629.933333pt;}
.y14a{bottom:630.666667pt;}
.y13f{bottom:630.893333pt;}
.y1ab{bottom:631.666667pt;}
.y116{bottom:632.733333pt;}
.y154{bottom:633.973333pt;}
.y72{bottom:636.466667pt;}
.yc{bottom:639.773333pt;}
.y18{bottom:641.106667pt;}
.yf7{bottom:646.440000pt;}
.y25{bottom:647.133333pt;}
.y19{bottom:647.800000pt;}
.y48{bottom:648.466667pt;}
.y3a{bottom:648.973333pt;}
.y19c{bottom:650.533333pt;}
.yb0{bottom:656.866667pt;}
.yb7{bottom:665.133333pt;}
.y8{bottom:700.173333pt;}
.hc{height:42.000000pt;}
.h37{height:46.781250pt;}
.h38{height:46.878711pt;}
.h3a{height:58.574023pt;}
.h4d{height:59.810352pt;}
.h5d{height:61.400391pt;}
.h36{height:61.497852pt;}
.h5e{height:63.264323pt;}
.h2d{height:63.656250pt;}
.h5{height:63.788867pt;}
.h39{height:69.657852pt;}
.h5c{height:72.100000pt;}
.h1a{height:75.591797pt;}
.h3f{height:75.656250pt;}
.h19{height:75.724414pt;}
.h35{height:77.357292pt;}
.h58{height:77.818359pt;}
.h57{height:77.954883pt;}
.h3e{height:79.040820pt;}
.h4a{height:79.702930pt;}
.h21{height:83.548828pt;}
.h8{height:83.681445pt;}
.h5a{height:86.146289pt;}
.h3{height:91.638477pt;}
.h4{height:95.616992pt;}
.h5b{height:96.100000pt;}
.h50{height:98.433398pt;}
.h3b{height:104.372044pt;}
.h1c{height:107.552539pt;}
.h2e{height:107.685156pt;}
.h3d{height:108.279102pt;}
.h3c{height:108.376562pt;}
.h2f{height:110.720508pt;}
.h30{height:110.857031pt;}
.ha{height:111.531055pt;}
.h28{height:115.509570pt;}
.h27{height:115.642188pt;}
.h26{height:118.911914pt;}
.h32{height:126.654000pt;}
.hf{height:127.445117pt;}
.h10{height:127.577734pt;}
.h41{height:129.436198pt;}
.h31{height:129.536458pt;}
.h33{height:129.585067pt;}
.h1b{height:131.199023pt;}
.h1d{height:131.335547pt;}
.h47{height:131.423633pt;}
.h48{height:131.556250pt;}
.h45{height:135.294727pt;}
.h44{height:135.431250pt;}
.h25{height:139.380664pt;}
.h24{height:139.513281pt;}
.h43{height:143.486133pt;}
.h29{height:143.622656pt;}
.h20{height:147.337695pt;}
.h1f{height:147.470313pt;}
.h59{height:148.789062pt;}
.h7{height:151.316211pt;}
.h23{height:151.677539pt;}
.h2a{height:151.814063pt;}
.h9{height:155.427344pt;}
.hb{height:167.832031pt;}
.h15{height:171.208789pt;}
.he{height:171.341406pt;}
.h46{height:176.251758pt;}
.h4f{height:176.388281pt;}
.h40{height:177.761719pt;}
.h16{height:183.066406pt;}
.h4c{height:188.851823pt;}
.h4b{height:188.958398pt;}
.h12{height:191.233984pt;}
.h4e{height:196.866797pt;}
.h53{height:197.845117pt;}
.h1e{height:202.109375pt;}
.h22{height:202.236328pt;}
.h6{height:207.148047pt;}
.h1{height:209.726562pt;}
.h2{height:209.853516pt;}
.h11{height:211.126562pt;}
.h54{height:211.259180pt;}
.h55{height:224.885872pt;}
.h56{height:224.939206pt;}
.h34{height:224.960937pt;}
.h13{height:225.087891pt;}
.h49{height:227.040625pt;}
.h14{height:234.997656pt;}
.h18{height:244.130859pt;}
.hd{height:255.022852pt;}
.h51{height:268.377734pt;}
.h2b{height:274.599609pt;}
.h17{height:288.993229pt;}
.h52{height:302.142122pt;}
.h2c{height:305.068359pt;}
.h42{height:311.683646pt;}
.h0{height:720.000000pt;}
.w2{width:123.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.xc{left:-4.933333pt;}
.x0{left:0.000000pt;}
.x3{left:9.599981pt;}
.x5{left:19.666648pt;}
.x30{left:29.433314pt;}
.x7c{left:35.799981pt;}
.x37{left:37.833314pt;}
.x1e{left:39.233314pt;}
.xcb{left:42.766648pt;}
.x7a{left:49.199981pt;}
.x8b{left:50.833314pt;}
.x2e{left:51.999981pt;}
.x8c{left:57.133314pt;}
.x1{left:59.833314pt;}
.x97{left:61.966648pt;}
.x17{left:63.833314pt;}
.x2f{left:65.066648pt;}
.x4{left:70.366648pt;}
.x48{left:71.466648pt;}
.x5b{left:73.833314pt;}
.x36{left:78.999981pt;}
.x6{left:79.966648pt;}
.x32{left:81.666648pt;}
.x98{left:85.466648pt;}
.xb4{left:87.033314pt;}
.x57{left:87.933314pt;}
.x33{left:89.399981pt;}
.xb5{left:94.266648pt;}
.x65{left:95.633314pt;}
.x18{left:97.666648pt;}
.x5d{left:100.566648pt;}
.x7d{left:101.466648pt;}
.x31{left:105.666648pt;}
.x7b{left:109.599981pt;}
.x99{left:112.233314pt;}
.x16{left:117.199981pt;}
.x3f{left:121.699981pt;}
.x39{left:124.733314pt;}
.x40{left:125.633314pt;}
.x3b{left:126.899981pt;}
.x9f{left:128.666648pt;}
.x5c{left:130.066648pt;}
.x9d{left:131.299981pt;}
.x43{left:135.693314pt;}
.x11{left:144.493314pt;}
.x5e{left:145.999981pt;}
.x7f{left:157.066648pt;}
.x69{left:159.866648pt;}
.x67{left:164.959981pt;}
.x9e{left:168.133314pt;}
.x9{left:169.266648pt;}
.x4e{left:173.306648pt;}
.x49{left:178.199981pt;}
.x34{left:184.666648pt;}
.x4a{left:186.173314pt;}
.x68{left:189.639981pt;}
.x79{left:192.933314pt;}
.x66{left:194.266648pt;}
.x44{left:196.333314pt;}
.x19{left:198.466648pt;}
.x22{left:203.559981pt;}
.x53{left:205.439981pt;}
.x82{left:210.533314pt;}
.x12{left:219.026648pt;}
.x58{left:224.133314pt;}
.x54{left:227.666648pt;}
.x3e{left:228.639981pt;}
.xd{left:237.333314pt;}
.xb7{left:246.599981pt;}
.xb6{left:255.866648pt;}
.x10{left:258.866648pt;}
.x1c{left:263.066648pt;}
.x21{left:266.639981pt;}
.xe{left:275.066648pt;}
.xf{left:277.266648pt;}
.x7e{left:307.773314pt;}
.x38{left:309.133314pt;}
.x41{left:321.106648pt;}
.x59{left:323.333314pt;}
.x56{left:324.399981pt;}
.x42{left:335.506648pt;}
.xc8{left:343.973314pt;}
.x60{left:345.066648pt;}
.x3c{left:346.573314pt;}
.x1d{left:347.639981pt;}
.x5f{left:353.893314pt;}
.x1b{left:360.026648pt;}
.x72{left:362.893314pt;}
.xa7{left:364.066648pt;}
.x3d{left:369.066648pt;}
.xa8{left:372.439981pt;}
.x50{left:376.799981pt;}
.xae{left:381.199981pt;}
.x6a{left:385.666648pt;}
.x6b{left:387.973314pt;}
.xa9{left:395.199981pt;}
.xa{left:396.866648pt;}
.x84{left:399.506648pt;}
.x86{left:403.959981pt;}
.x73{left:407.639981pt;}
.xb9{left:417.933314pt;}
.xcc{left:420.599981pt;}
.x6c{left:425.506648pt;}
.x85{left:440.933314pt;}
.xb8{left:442.733314pt;}
.xaa{left:460.199981pt;}
.x87{left:468.506648pt;}
.x23{left:472.999981pt;}
.x3a{left:476.666648pt;}
.x2{left:487.839981pt;}
.x8d{left:489.266648pt;}
.x4f{left:490.306648pt;}
.x93{left:495.973314pt;}
.x55{left:507.999981pt;}
.x9a{left:512.333314pt;}
.x13{left:513.999981pt;}
.x8e{left:520.199981pt;}
.x7{left:521.226648pt;}
.x8f{left:522.533314pt;}
.x80{left:526.959981pt;}
.x47{left:530.199981pt;}
.xa1{left:534.199981pt;}
.x94{left:539.639981pt;}
.x45{left:545.399981pt;}
.xa0{left:547.039981pt;}
.x1a{left:555.066648pt;}
.x62{left:574.559981pt;}
.xbb{left:582.306648pt;}
.xb{left:588.000000pt;}
.xbd{left:591.599981pt;}
.x61{left:593.773314pt;}
.xbe{left:599.573314pt;}
.xc9{left:600.866648pt;}
.x81{left:602.373314pt;}
.xba{left:604.039981pt;}
.xbc{left:609.999981pt;}
.xa2{left:657.133314pt;}
.x95{left:658.639981pt;}
.xca{left:665.293314pt;}
.x9b{left:667.533314pt;}
.xaf{left:668.866648pt;}
.xab{left:685.106648pt;}
.x8{left:709.199981pt;}
.xb0{left:715.399981pt;}
.x74{left:716.626648pt;}
.x6e{left:720.733314pt;}
.x6d{left:725.626648pt;}
.x89{left:730.599981pt;}
.x75{left:751.359981pt;}
.xbf{left:753.333314pt;}
.x5a{left:754.799981pt;}
.xc0{left:762.066648pt;}
.x88{left:768.999981pt;}
.x25{left:785.866648pt;}
.x26{left:791.133314pt;}
.x8a{left:792.173314pt;}
.x2b{left:794.533314pt;}
.x2a{left:799.533314pt;}
.x6f{left:808.866648pt;}
.x29{left:818.466648pt;}
.x27{left:825.666648pt;}
.x2c{left:830.426648pt;}
.x63{left:836.199981pt;}
.x2d{left:849.866648pt;}
.x14{left:855.399981pt;}
.x83{left:867.893314pt;}
.x24{left:891.333314pt;}
.xa5{left:899.506648pt;}
.x28{left:914.866648pt;}
.x15{left:918.266648pt;}
.xa4{left:923.799981pt;}
.x90{left:924.773314pt;}
.x52{left:925.999981pt;}
.xc2{left:929.173314pt;}
.xc3{left:935.533314pt;}
.xa6{left:936.639981pt;}
.xc1{left:941.226648pt;}
.xa3{left:944.733314pt;}
.xcd{left:953.026648pt;}
.x96{left:954.333314pt;}
.x4d{left:955.893314pt;}
.x20{left:957.999981pt;}
.x4b{left:966.893314pt;}
.x91{left:969.439981pt;}
.x76{left:972.639981pt;}
.x4c{left:987.333314pt;}
.x1f{left:990.506648pt;}
.x70{left:992.666648pt;}
.xac{left:994.173314pt;}
.x46{left:1002.733314pt;}
.xb2{left:1004.173314pt;}
.x92{left:1007.666648pt;}
.xb1{left:1011.039981pt;}
.xb3{left:1012.293314pt;}
.x9c{left:1023.733314pt;}
.x64{left:1037.626648pt;}
.x77{left:1046.559981pt;}
.x71{left:1083.439981pt;}
.xad{left:1085.626648pt;}
.xc4{left:1114.706648pt;}
.xc5{left:1117.559981pt;}
.xc6{left:1118.466648pt;}
.xc7{left:1122.306648pt;}
.x51{left:1144.293314pt;}
.x35{left:1166.839981pt;}
.x78{left:1247.359981pt;}
}




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