
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_85d44b5db3ad465164d4a2ff.woff2')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_0ed5efc7d826fac35741c97e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ccc05f09e90cf04057b191b6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_583d22175ef0a1100dd263b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767090;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_18d89ad9304d86ae9c536ce5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_e8353b205be1ec66bd88db74.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005859;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_56f882aba1b733f1c7b17825.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005859;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_88911e89e41a176a5dda63df.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901855;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_b5cf7123abd75a0190d1a2bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_7ca1043c0a50fe2fceaf43c3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_abc7d16f3bdf089fbc914928.woff2')format("woff");}.fff{font-family:fff;line-height:1.053223;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_8d6ac9e40f8a226a2ff5a3ba.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.195801;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;}
.m2{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);}
.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);}
.v6{vertical-align:-37.740000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls51{letter-spacing:-1.500000px;}
.ls53{letter-spacing:-0.780000px;}
.ls10{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.463800px;}
.ls16{letter-spacing:-0.414000px;}
.ls5a{letter-spacing:-0.326400px;}
.ls56{letter-spacing:-0.303000px;}
.ls47{letter-spacing:-0.298200px;}
.ls36{letter-spacing:-0.272400px;}
.ls3d{letter-spacing:-0.248400px;}
.ls22{letter-spacing:-0.240600px;}
.ls13{letter-spacing:-0.205800px;}
.ls2d{letter-spacing:-0.175800px;}
.ls27{letter-spacing:-0.172200px;}
.ls1d{letter-spacing:-0.115800px;}
.ls52{letter-spacing:-0.109200px;}
.ls20{letter-spacing:-0.107400px;}
.ls2e{letter-spacing:-0.069600px;}
.ls3c{letter-spacing:-0.064800px;}
.ls1e{letter-spacing:-0.058320px;}
.lsd{letter-spacing:-0.020160px;}
.ls55{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.012960px;}
.ls25{letter-spacing:0.014880px;}
.ls37{letter-spacing:0.023760px;}
.ls54{letter-spacing:0.036000px;}
.ls24{letter-spacing:0.038880px;}
.ls34{letter-spacing:0.060480px;}
.lsf{letter-spacing:0.060600px;}
.lse{letter-spacing:0.066000px;}
.ls23{letter-spacing:0.077760px;}
.ls18{letter-spacing:0.092880px;}
.ls61{letter-spacing:0.100800px;}
.ls3a{letter-spacing:0.140400px;}
.ls1b{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.150240px;}
.ls40{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls17{letter-spacing:0.175200px;}
.ls1f{letter-spacing:0.179280px;}
.ls12{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.209400px;}
.ls2b{letter-spacing:0.218400px;}
.ls14{letter-spacing:0.234600px;}
.ls15{letter-spacing:0.243600px;}
.ls43{letter-spacing:0.272880px;}
.ls5b{letter-spacing:0.274800px;}
.ls32{letter-spacing:0.282000px;}
.ls3f{letter-spacing:0.283800px;}
.ls39{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306000px;}
.ls4e{letter-spacing:0.348600px;}
.ls48{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.390240px;}
.ls2f{letter-spacing:0.393600px;}
.ls46{letter-spacing:0.418320px;}
.ls4a{letter-spacing:0.432000px;}
.ls5d{letter-spacing:0.433440px;}
.ls31{letter-spacing:0.447600px;}
.ls29{letter-spacing:0.447840px;}
.ls19{letter-spacing:0.451440px;}
.ls59{letter-spacing:0.479520px;}
.ls49{letter-spacing:0.504000px;}
.ls44{letter-spacing:0.505440px;}
.ls30{letter-spacing:0.547800px;}
.ls58{letter-spacing:0.637200px;}
.ls21{letter-spacing:0.654000px;}
.ls57{letter-spacing:0.660000px;}
.ls41{letter-spacing:0.719280px;}
.ls45{letter-spacing:0.732960px;}
.ls28{letter-spacing:0.758880px;}
.ls3e{letter-spacing:0.780000px;}
.ls1c{letter-spacing:0.858000px;}
.ls35{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls4{letter-spacing:1.614240px;}
.ls1{letter-spacing:2.016000px;}
.ls5{letter-spacing:2.334240px;}
.ls5f{letter-spacing:3.054240px;}
.ls2a{letter-spacing:3.453120px;}
.lsa{letter-spacing:3.774240px;}
.ls3b{letter-spacing:4.494240px;}
.ls9{letter-spacing:5.214240px;}
.ls60{letter-spacing:6.654240px;}
.ls50{letter-spacing:7.374240px;}
.ls5e{letter-spacing:10.254240px;}
.ls4c{letter-spacing:12.186720px;}
.ls38{letter-spacing:12.414240px;}
.ls4f{letter-spacing:15.066720px;}
.ls4d{letter-spacing:16.014240px;}
.ls8{letter-spacing:18.174240px;}
.ls4b{letter-spacing:42.426720px;}
.ls26{letter-spacing:45.306720px;}
.ls33{letter-spacing:154.170720px;}
.ls2c{letter-spacing:172.170720px;}
.ls5c{letter-spacing:197.922720px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-21.641760px;}
.ws20{word-spacing:-18.000000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws2a{word-spacing:-14.165760px;}
.ws16{word-spacing:-14.053560px;}
.ws17{word-spacing:-13.899360px;}
.ws24{word-spacing:-13.854360px;}
.ws1b{word-spacing:-13.811760px;}
.ws19{word-spacing:-13.804560px;}
.ws2b{word-spacing:-13.780560px;}
.wsb{word-spacing:-13.749360px;}
.wsa{word-spacing:-13.740360px;}
.ws14{word-spacing:-13.724160px;}
.ws9{word-spacing:-13.715160px;}
.ws10{word-spacing:-13.685040px;}
.ws18{word-spacing:-13.680960px;}
.wsd{word-spacing:-13.649160px;}
.ws7{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.wse{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.436160px;}
.ws11{word-spacing:-13.398360px;}
.ws26{word-spacing:-13.396560px;}
.ws12{word-spacing:-13.333560px;}
.ws8{word-spacing:-13.299960px;}
.ws1a{word-spacing:-13.257360px;}
.ws29{word-spacing:-13.202760px;}
.ws1d{word-spacing:-13.160160px;}
.wsf{word-spacing:-13.147200px;}
.ws27{word-spacing:-12.725760px;}
.ws28{word-spacing:-12.186000px;}
.ws25{word-spacing:-12.005760px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws1c{word-spacing:-3.078000px;}
.ws1e{word-spacing:-0.478080px;}
.ws1f{word-spacing:-0.358560px;}
.ws23{word-spacing:-0.059904px;}
.ws21{word-spacing:-0.059760px;}
.wsc{word-spacing:0.000000px;}
.ws22{word-spacing:517.865760px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.177760px;}
._23{margin-left:-14.351520px;}
._19{margin-left:-5.773920px;}
._6{margin-left:-3.312000px;}
._a{margin-left:-2.306160px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._7{width:3.141600px;}
._8{width:5.131200px;}
._9{width:6.513840px;}
._b{width:7.661520px;}
._c{width:8.855280px;}
._10{width:10.637280px;}
._d{width:12.310560px;}
._12{width:14.561520px;}
._14{width:16.209600px;}
._f{width:17.510400px;}
._e{width:19.182240px;}
._24{width:21.293520px;}
._1e{width:23.025840px;}
._1f{width:24.071520px;}
._22{width:28.168080px;}
._20{width:29.581200px;}
._21{width:30.904320px;}
._1c{width:39.361920px;}
._1d{width:40.557120px;}
._13{width:80.123040px;}
._11{width:202.638240px;}
._1b{width:287.365680px;}
._18{width:297.505680px;}
._1a{width:306.925440px;}
._17{width:317.365440px;}
._16{width:323.605680px;}
._15{width:343.285440px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs9{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y156{bottom:1.620000px;}
.y154{bottom:1.800000px;}
.yf8{bottom:3.600000px;}
.yfa{bottom:3.780000px;}
.yc3{bottom:6.660000px;}
.y189{bottom:7.020000px;}
.y158{bottom:7.920000px;}
.yc5{bottom:17.460000px;}
.y102{bottom:17.640000px;}
.y114{bottom:21.210000px;}
.y177{bottom:23.835000px;}
.y148{bottom:26.205000px;}
.y13a{bottom:26.355000px;}
.ye5{bottom:26.460000px;}
.y179{bottom:27.105000px;}
.y11b{bottom:27.285000px;}
.yc2{bottom:27.720000px;}
.yc0{bottom:28.080000px;}
.y188{bottom:28.110000px;}
.yec{bottom:33.084000px;}
.y185{bottom:35.490000px;}
.yed{bottom:36.648000px;}
.yc4{bottom:38.520000px;}
.y101{bottom:38.700000px;}
.y10d{bottom:38.805000px;}
.y139{bottom:38.880000px;}
.y11a{bottom:41.325000px;}
.ydb{bottom:44.100000px;}
.y147{bottom:45.210000px;}
.y11c{bottom:49.425000px;}
.y187{bottom:49.530000px;}
.y150{bottom:49.710000px;}
.y13b{bottom:55.080000px;}
.y149{bottom:58.890000px;}
.y6{bottom:60.660000px;}
.ydc{bottom:64.830000px;}
.ye6{bottom:65.805000px;}
.y17a{bottom:66.810000px;}
.y142{bottom:69.510000px;}
.y186{bottom:70.590000px;}
.yee{bottom:71.250000px;}
.y11d{bottom:71.610000px;}
.y10e{bottom:71.640000px;}
.y127{bottom:71.970000px;}
.y181{bottom:74.520000px;}
.y115{bottom:82.050000px;}
.y13c{bottom:83.805000px;}
.ydd{bottom:85.575000px;}
.yf5{bottom:86.010000px;}
.y178{bottom:88.740000px;}
.y14a{bottom:91.590000px;}
.y9f{bottom:92.160000px;}
.yd6{bottom:93.060000px;}
.y11e{bottom:93.750000px;}
.y80{bottom:95.220000px;}
.y183{bottom:95.580000px;}
.y135{bottom:96.660000px;}
.y108{bottom:99.720000px;}
.y31{bottom:104.220000px;}
.y10f{bottom:104.505000px;}
.yef{bottom:105.840000px;}
.yde{bottom:106.305000px;}
.y17b{bottom:106.530000px;}
.yb3{bottom:106.740000px;}
.y62{bottom:107.280000px;}
.ybe{bottom:108.360000px;}
.yd5{bottom:110.160000px;}
.ye9{bottom:110.520000px;}
.y174{bottom:110.700000px;}
.y13d{bottom:112.500000px;}
.y138{bottom:112.755000px;}
.y9e{bottom:113.220000px;}
.y11f{bottom:115.890000px;}
.y7f{bottom:116.280000px;}
.y107{bottom:117.000000px;}
.y134{bottom:117.720000px;}
.y118{bottom:122.760000px;}
.y14b{bottom:124.305000px;}
.y184{bottom:124.920000px;}
.y30{bottom:125.280000px;}
.ydf{bottom:127.050000px;}
.yb2{bottom:127.800000px;}
.y61{bottom:128.340000px;}
.ybd{bottom:129.420000px;}
.y173{bottom:131.760000px;}
.y9d{bottom:134.280000px;}
.y133{bottom:134.820000px;}
.y7e{bottom:137.340000px;}
.y120{bottom:138.030000px;}
.yf0{bottom:140.430000px;}
.y145{bottom:140.760000px;}
.y13e{bottom:141.225000px;}
.yd8{bottom:145.050000px;}
.y17c{bottom:146.235000px;}
.y2f{bottom:146.340000px;}
.ye0{bottom:147.780000px;}
.yb1{bottom:148.860000px;}
.y60{bottom:149.400000px;}
.ybc{bottom:150.480000px;}
.y172{bottom:152.850000px;}
.y9c{bottom:155.370000px;}
.y14c{bottom:156.990000px;}
.y121{bottom:160.170000px;}
.y2e{bottom:167.430000px;}
.ye1{bottom:168.510000px;}
.yb0{bottom:169.950000px;}
.y110{bottom:170.175000px;}
.y5f{bottom:170.490000px;}
.ybb{bottom:171.570000px;}
.y171{bottom:173.910000px;}
.yf1{bottom:175.035000px;}
.y9b{bottom:176.430000px;}
.y10b{bottom:180.000000px;}
.yd9{bottom:181.950000px;}
.y122{bottom:182.310000px;}
.y17d{bottom:185.940000px;}
.y2d{bottom:188.490000px;}
.ye2{bottom:189.255000px;}
.yeb{bottom:189.615000px;}
.y14d{bottom:189.720000px;}
.yaf{bottom:191.010000px;}
.yba{bottom:192.630000px;}
.y10c{bottom:194.145000px;}
.y170{bottom:194.970000px;}
.y9a{bottom:197.490000px;}
.y13f{bottom:198.645000px;}
.y5e{bottom:200.550000px;}
.y111{bottom:203.010000px;}
.y123{bottom:204.450000px;}
.y159{bottom:207.030000px;}
.y2c{bottom:209.550000px;}
.yf2{bottom:209.625000px;}
.ye3{bottom:209.985000px;}
.yae{bottom:212.070000px;}
.yb9{bottom:213.870000px;}
.y16f{bottom:216.030000px;}
.y99{bottom:218.550000px;}
.y5d{bottom:221.610000px;}
.y14e{bottom:222.405000px;}
.y17e{bottom:225.615000px;}
.y124{bottom:226.590000px;}
.y140{bottom:227.370000px;}
.y2b{bottom:230.610000px;}
.ye4{bottom:230.730000px;}
.yad{bottom:233.130000px;}
.yda{bottom:233.535000px;}
.y146{bottom:235.050000px;}
.yb8{bottom:235.650000px;}
.y112{bottom:235.830000px;}
.y16e{bottom:237.090000px;}
.y137{bottom:238.350000px;}
.y98{bottom:239.610000px;}
.y157{bottom:240.510000px;}
.y5c{bottom:242.670000px;}
.y10a{bottom:242.850000px;}
.yf3{bottom:244.230000px;}
.y176{bottom:245.850000px;}
.y125{bottom:248.730000px;}
.ye8{bottom:248.760000px;}
.y2a{bottom:251.670000px;}
.yac{bottom:254.190000px;}
.y14f{bottom:255.090000px;}
.y141{bottom:256.110000px;}
.yb7{bottom:257.430000px;}
.y16d{bottom:258.150000px;}
.y97{bottom:260.670000px;}
.yf9{bottom:262.110000px;}
.y119{bottom:263.310000px;}
.y5b{bottom:263.730000px;}
.y152{bottom:265.035000px;}
.y17f{bottom:265.320000px;}
.y144{bottom:266.220000px;}
.yea{bottom:267.690000px;}
.y113{bottom:268.710000px;}
.ye7{bottom:269.460000px;}
.y126{bottom:270.870000px;}
.y29{bottom:272.730000px;}
.y117{bottom:275.220000px;}
.yab{bottom:275.250000px;}
.yf4{bottom:278.790000px;}
.y16c{bottom:279.210000px;}
.yb6{bottom:279.390000px;}
.y96{bottom:281.730000px;}
.y180{bottom:282.960000px;}
.y5a{bottom:284.790000px;}
.y151{bottom:285.735000px;}
.y143{bottom:286.920000px;}
.y28{bottom:293.790000px;}
.yf7{bottom:294.690000px;}
.y116{bottom:295.920000px;}
.yaa{bottom:296.310000px;}
.y128{bottom:297.000000px;}
.y16b{bottom:300.270000px;}
.yb5{bottom:301.170000px;}
.y95{bottom:302.790000px;}
.y59{bottom:305.850000px;}
.y27{bottom:314.850000px;}
.yf6{bottom:317.415000px;}
.ya9{bottom:317.550000px;}
.y16a{bottom:321.330000px;}
.y182{bottom:322.920000px;}
.yb4{bottom:323.130000px;}
.y94{bottom:323.850000px;}
.y58{bottom:326.910000px;}
.y26{bottom:335.910000px;}
.ya8{bottom:339.330000px;}
.y169{bottom:342.390000px;}
.y93{bottom:344.910000px;}
.y57{bottom:347.970000px;}
.y25{bottom:356.970000px;}
.ya7{bottom:361.290000px;}
.y168{bottom:363.450000px;}
.y92{bottom:365.970000px;}
.y56{bottom:369.030000px;}
.y24{bottom:378.030000px;}
.ya6{bottom:383.070000px;}
.y167{bottom:384.510000px;}
.y91{bottom:387.030000px;}
.y55{bottom:390.090000px;}
.y23{bottom:398.910000px;}
.y7d{bottom:399.090000px;}
.ya5{bottom:404.175000px;}
.y166{bottom:405.615000px;}
.y90{bottom:408.135000px;}
.y54{bottom:411.195000px;}
.y22{bottom:420.015000px;}
.y7c{bottom:420.195000px;}
.ya4{bottom:425.955000px;}
.y165{bottom:426.675000px;}
.y8f{bottom:429.195000px;}
.y53{bottom:432.255000px;}
.y21{bottom:441.075000px;}
.y7b{bottom:441.255000px;}
.ya3{bottom:447.015000px;}
.y164{bottom:447.735000px;}
.y8e{bottom:450.255000px;}
.y52{bottom:453.315000px;}
.y106{bottom:461.235000px;}
.y20{bottom:462.135000px;}
.y7a{bottom:462.315000px;}
.yd4{bottom:464.835000px;}
.y132{bottom:467.895000px;}
.y163{bottom:468.795000px;}
.ya2{bottom:468.975000px;}
.y8d{bottom:471.315000px;}
.y51{bottom:474.375000px;}
.y105{bottom:476.355000px;}
.yd3{bottom:479.955000px;}
.y131{bottom:483.015000px;}
.y1f{bottom:483.195000px;}
.y79{bottom:483.375000px;}
.y162{bottom:489.855000px;}
.ya1{bottom:490.755000px;}
.y8c{bottom:492.375000px;}
.y50{bottom:495.435000px;}
.y104{bottom:498.135000px;}
.yd2{bottom:501.735000px;}
.y1e{bottom:504.255000px;}
.y78{bottom:504.435000px;}
.y130{bottom:504.795000px;}
.y161{bottom:510.915000px;}
.ya0{bottom:512.715000px;}
.y8b{bottom:513.435000px;}
.y4f{bottom:516.495000px;}
.y103{bottom:519.915000px;}
.yd1{bottom:523.695000px;}
.y1d{bottom:525.315000px;}
.y77{bottom:525.495000px;}
.y12f{bottom:526.755000px;}
.y160{bottom:531.975000px;}
.y8a{bottom:534.495000px;}
.y4e{bottom:537.555000px;}
.yff{bottom:541.695000px;}
.ycf{bottom:545.475000px;}
.y1c{bottom:546.375000px;}
.y76{bottom:546.555000px;}
.y12d{bottom:548.535000px;}
.y15f{bottom:553.035000px;}
.y89{bottom:555.555000px;}
.y4d{bottom:558.615000px;}
.y100{bottom:563.475000px;}
.yd0{bottom:567.255000px;}
.y1b{bottom:567.435000px;}
.y75{bottom:567.615000px;}
.y12e{bottom:570.315000px;}
.y15e{bottom:574.095000px;}
.y88{bottom:576.615000px;}
.y4c{bottom:579.675000px;}
.y1a{bottom:588.495000px;}
.y74{bottom:588.675000px;}
.y15d{bottom:595.155000px;}
.y87{bottom:597.675000px;}
.y19{bottom:609.555000px;}
.y4b{bottom:609.735000px;}
.yfe{bottom:613.155000px;}
.y15c{bottom:616.035000px;}
.yce{bottom:616.755000px;}
.y86{bottom:618.735000px;}
.y12c{bottom:619.815000px;}
.y18{bottom:630.615000px;}
.y4a{bottom:630.795000px;}
.yfd{bottom:634.035000px;}
.y15b{bottom:637.095000px;}
.ycd{bottom:637.815000px;}
.y85{bottom:639.795000px;}
.y12b{bottom:640.875000px;}
.y17{bottom:651.705000px;}
.y15a{bottom:654.225000px;}
.y175{bottom:654.480000px;}
.yfc{bottom:655.125000px;}
.ycc{bottom:658.905000px;}
.y84{bottom:660.705000px;}
.y12a{bottom:661.965000px;}
.yfb{bottom:672.225000px;}
.y16{bottom:672.765000px;}
.y109{bottom:676.980000px;}
.y129{bottom:679.065000px;}
.ycb{bottom:679.965000px;}
.y83{bottom:681.765000px;}
.y136{bottom:685.980000px;}
.y49{bottom:693.825000px;}
.y15{bottom:696.345000px;}
.yca{bottom:697.065000px;}
.y82{bottom:702.825000px;}
.yd7{bottom:703.440000px;}
.y48{bottom:714.885000px;}
.y81{bottom:723.885000px;}
.y14{bottom:726.225000px;}
.y73{bottom:735.945000px;}
.y47{bottom:744.945000px;}
.y13{bottom:747.285000px;}
.y72{bottom:757.005000px;}
.y46{bottom:766.005000px;}
.y12{bottom:768.345000px;}
.y71{bottom:778.065000px;}
.y45{bottom:787.065000px;}
.y11{bottom:789.405000px;}
.y70{bottom:799.125000px;}
.y44{bottom:808.125000px;}
.y10{bottom:810.465000px;}
.y6f{bottom:820.185000px;}
.y155{bottom:823.965000px;}
.y43{bottom:829.185000px;}
.yf{bottom:831.525000px;}
.y6e{bottom:841.245000px;}
.y42{bottom:850.245000px;}
.ye{bottom:852.585000px;}
.y153{bottom:857.445000px;}
.y6d{bottom:862.305000px;}
.y41{bottom:871.305000px;}
.yd{bottom:873.645000px;}
.y6c{bottom:883.365000px;}
.y40{bottom:892.365000px;}
.yc{bottom:896.865000px;}
.y6b{bottom:904.470000px;}
.y3f{bottom:913.470000px;}
.yb{bottom:923.190000px;}
.y6a{bottom:925.530000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:939.930000px;}
.y69{bottom:946.590000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:962.250000px;}
.y68{bottom:967.650000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:987.450000px;}
.y67{bottom:988.710000px;}
.y3b{bottom:997.710000px;}
.y66{bottom:1009.770000px;}
.yc9{bottom:1014.270000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1021.110000px;}
.yc8{bottom:1029.390000px;}
.y65{bottom:1030.830000px;}
.y39{bottom:1039.830000px;}
.yc7{bottom:1051.350000px;}
.y64{bottom:1051.890000px;}
.y38{bottom:1060.890000px;}
.y5{bottom:1061.250000px;}
.y63{bottom:1072.950000px;}
.yc6{bottom:1073.130000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1093.470000px;}
.ybf{bottom:1094.910000px;}
.y36{bottom:1103.010000px;}
.yc1{bottom:1116.690000px;}
.y35{bottom:1124.070000px;}
.y3{bottom:1125.510000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1157.760000px;}
.y33{bottom:1166.220000px;}
.y1{bottom:1192.320000px;}
.y32{bottom:1194.120000px;}
.h22{height:2.864531px;}
.h1e{height:15.660000px;}
.h18{height:17.640000px;}
.h19{height:17.820000px;}
.hc{height:21.060000px;}
.h1f{height:21.960000px;}
.h7{height:38.671172px;}
.h11{height:41.726953px;}
.h12{height:41.827500px;}
.hf{height:42.120000px;}
.hb{height:42.156000px;}
.h14{height:42.164648px;}
.h17{height:42.266250px;}
.h13{height:42.281367px;}
.h15{height:50.800781px;}
.hd{height:52.260820px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h9{height:59.551172px;}
.h5{height:61.189805px;}
.he{height:63.900000px;}
.ha{height:63.936000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h21{height:84.996000px;}
.h4{height:98.051133px;}
.h10{height:297.540000px;}
.h1d{height:313.920000px;}
.h1c{height:315.000000px;}
.h1a{height:324.000000px;}
.h1b{height:325.260000px;}
.h16{height:345.600000px;}
.h20{height:351.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:123.300000px;}
.w10{width:123.336000px;}
.w28{width:126.396000px;}
.w5{width:135.036000px;}
.w29{width:138.636000px;}
.w24{width:138.996000px;}
.w1f{width:147.996000px;}
.wa{width:156.090000px;}
.w18{width:156.630000px;}
.w13{width:163.470000px;}
.w3{width:172.830000px;}
.w22{width:178.050000px;}
.w2e{width:179.130000px;}
.w1d{width:189.570000px;}
.w2c{width:198.930000px;}
.w8{width:200.010000px;}
.w16{width:200.730000px;}
.w2d{width:201.495000px;}
.w2a{width:201.810000px;}
.w15{width:204.330000px;}
.w14{width:204.375000px;}
.w11{width:209.370000px;}
.w2f{width:210.810000px;}
.w1a{width:212.070000px;}
.w19{width:212.115000px;}
.wc{width:212.610000px;}
.wb{width:212.655000px;}
.w21{width:221.970000px;}
.w20{width:222.015000px;}
.w26{width:232.230000px;}
.w25{width:232.275000px;}
.w7{width:236.730000px;}
.w6{width:236.955000px;}
.w2b{width:381.165000px;}
.w12{width:409.425000px;}
.w17{width:424.905000px;}
.w9{width:426.165000px;}
.w1e{width:444.705000px;}
.w23{width:465.225000px;}
.w4{width:474.405000px;}
.w30{width:581.010000px;}
.w27{width:612.000000px;}
.w1b{width:612.180000px;}
.wd{width:612.360000px;}
.we{width:612.540000px;}
.w1c{width:612.900000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x24{left:13.500000px;}
.x48{left:14.940000px;}
.x22{left:16.020000px;}
.x47{left:17.460000px;}
.x26{left:21.060000px;}
.x4a{left:22.500000px;}
.x4c{left:23.580000px;}
.x4e{left:28.620000px;}
.x18{left:30.090000px;}
.x20{left:34.170000px;}
.x16{left:37.800000px;}
.x44{left:40.065000px;}
.x1e{left:41.910000px;}
.x15{left:45.285000px;}
.x1f{left:46.875000px;}
.x31{left:49.530000px;}
.x1{left:53.999987px;}
.x34{left:55.410000px;}
.x2f{left:57.240000px;}
.x36{left:60.375000px;}
.x50{left:61.605000px;}
.x2e{left:64.770000px;}
.xb{left:66.779987px;}
.x35{left:67.890000px;}
.x2{left:69.479987px;}
.x19{left:71.430000px;}
.x4{left:74.339987px;}
.x45{left:76.425000px;}
.x37{left:78.330000px;}
.x5{left:80.999987px;}
.x53{left:85.175987px;}
.x32{left:90.285000px;}
.x57{left:97.200000px;}
.x3{left:108.035987px;}
.x17{left:112.245000px;}
.x41{left:125.250000px;}
.x30{left:128.445000px;}
.x56{left:130.215000px;}
.x12{left:135.720000px;}
.x2a{left:139.320000px;}
.x11{left:140.400000px;}
.x1b{left:141.480000px;}
.x29{left:148.355987px;}
.x3f{left:149.970000px;}
.x2b{left:151.950000px;}
.x42{left:154.950000px;}
.x49{left:156.090000px;}
.x25{left:160.950000px;}
.x33{left:164.625000px;}
.x4d{left:166.170000px;}
.x58{left:190.110000px;}
.x7{left:228.270000px;}
.x3c{left:233.490000px;}
.x38{left:245.010000px;}
.xd{left:255.450000px;}
.x4f{left:257.430000px;}
.x27{left:264.810000px;}
.x1a{left:273.960000px;}
.x13{left:310.350000px;}
.x54{left:313.125000px;}
.x40{left:315.360000px;}
.x2c{left:320.040000px;}
.x1c{left:324.570000px;}
.x23{left:326.055000px;}
.x43{left:330.090000px;}
.xc{left:416.594987px;}
.x3e{left:430.094987px;}
.x52{left:459.645000px;}
.x9{left:465.945000px;}
.x3a{left:467.745000px;}
.xf{left:469.005000px;}
.x1d{left:478.080000px;}
.x55{left:482.430000px;}
.x14{left:484.950000px;}
.x2d{left:488.160000px;}
.x4b{left:490.245000px;}
.x21{left:495.285000px;}
.x46{left:502.485000px;}
.x51{left:639.510000px;}
.x28{left:674.970000px;}
.xe{left:682.350000px;}
.x39{left:690.450000px;}
.x3d{left:699.450000px;}
.x8{left:703.410000px;}
.x3b{left:757.049987px;}
.x10{left:758.129987px;}
.xa{left:759.389987px;}
@media print{
.v6{vertical-align:-33.546667pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls51{letter-spacing:-1.333333pt;}
.ls53{letter-spacing:-0.693333pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.412267pt;}
.ls16{letter-spacing:-0.368000pt;}
.ls5a{letter-spacing:-0.290133pt;}
.ls56{letter-spacing:-0.269333pt;}
.ls47{letter-spacing:-0.265067pt;}
.ls36{letter-spacing:-0.242133pt;}
.ls3d{letter-spacing:-0.220800pt;}
.ls22{letter-spacing:-0.213867pt;}
.ls13{letter-spacing:-0.182933pt;}
.ls2d{letter-spacing:-0.156267pt;}
.ls27{letter-spacing:-0.153067pt;}
.ls1d{letter-spacing:-0.102933pt;}
.ls52{letter-spacing:-0.097067pt;}
.ls20{letter-spacing:-0.095467pt;}
.ls2e{letter-spacing:-0.061867pt;}
.ls3c{letter-spacing:-0.057600pt;}
.ls1e{letter-spacing:-0.051840pt;}
.lsd{letter-spacing:-0.017920pt;}
.ls55{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.011520pt;}
.ls25{letter-spacing:0.013227pt;}
.ls37{letter-spacing:0.021120pt;}
.ls54{letter-spacing:0.032000pt;}
.ls24{letter-spacing:0.034560pt;}
.ls34{letter-spacing:0.053760pt;}
.lsf{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.058667pt;}
.ls23{letter-spacing:0.069120pt;}
.ls18{letter-spacing:0.082560pt;}
.ls61{letter-spacing:0.089600pt;}
.ls3a{letter-spacing:0.124800pt;}
.ls1b{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.133547pt;}
.ls40{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls17{letter-spacing:0.155733pt;}
.ls1f{letter-spacing:0.159360pt;}
.ls12{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.186133pt;}
.ls2b{letter-spacing:0.194133pt;}
.ls14{letter-spacing:0.208533pt;}
.ls15{letter-spacing:0.216533pt;}
.ls43{letter-spacing:0.242560pt;}
.ls5b{letter-spacing:0.244267pt;}
.ls32{letter-spacing:0.250667pt;}
.ls3f{letter-spacing:0.252267pt;}
.ls39{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272000pt;}
.ls4e{letter-spacing:0.309867pt;}
.ls48{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.346880pt;}
.ls2f{letter-spacing:0.349867pt;}
.ls46{letter-spacing:0.371840pt;}
.ls4a{letter-spacing:0.384000pt;}
.ls5d{letter-spacing:0.385280pt;}
.ls31{letter-spacing:0.397867pt;}
.ls29{letter-spacing:0.398080pt;}
.ls19{letter-spacing:0.401280pt;}
.ls59{letter-spacing:0.426240pt;}
.ls49{letter-spacing:0.448000pt;}
.ls44{letter-spacing:0.449280pt;}
.ls30{letter-spacing:0.486933pt;}
.ls58{letter-spacing:0.566400pt;}
.ls21{letter-spacing:0.581333pt;}
.ls57{letter-spacing:0.586667pt;}
.ls41{letter-spacing:0.639360pt;}
.ls45{letter-spacing:0.651520pt;}
.ls28{letter-spacing:0.674560pt;}
.ls3e{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:0.762667pt;}
.ls35{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls4{letter-spacing:1.434880pt;}
.ls1{letter-spacing:1.792000pt;}
.ls5{letter-spacing:2.074880pt;}
.ls5f{letter-spacing:2.714880pt;}
.ls2a{letter-spacing:3.069440pt;}
.lsa{letter-spacing:3.354880pt;}
.ls3b{letter-spacing:3.994880pt;}
.ls9{letter-spacing:4.634880pt;}
.ls60{letter-spacing:5.914880pt;}
.ls50{letter-spacing:6.554880pt;}
.ls5e{letter-spacing:9.114880pt;}
.ls4c{letter-spacing:10.832640pt;}
.ls38{letter-spacing:11.034880pt;}
.ls4f{letter-spacing:13.392640pt;}
.ls4d{letter-spacing:14.234880pt;}
.ls8{letter-spacing:16.154880pt;}
.ls4b{letter-spacing:37.712640pt;}
.ls26{letter-spacing:40.272640pt;}
.ls33{letter-spacing:137.040640pt;}
.ls2c{letter-spacing:153.040640pt;}
.ls5c{letter-spacing:175.931307pt;}
.ws15{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.237120pt;}
.ws20{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws2a{word-spacing:-12.591787pt;}
.ws16{word-spacing:-12.492053pt;}
.ws17{word-spacing:-12.354987pt;}
.ws24{word-spacing:-12.314987pt;}
.ws1b{word-spacing:-12.277120pt;}
.ws19{word-spacing:-12.270720pt;}
.ws2b{word-spacing:-12.249387pt;}
.wsb{word-spacing:-12.221653pt;}
.wsa{word-spacing:-12.213653pt;}
.ws14{word-spacing:-12.199253pt;}
.ws9{word-spacing:-12.191253pt;}
.ws10{word-spacing:-12.164480pt;}
.ws18{word-spacing:-12.160853pt;}
.wsd{word-spacing:-12.132587pt;}
.ws7{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.943253pt;}
.ws11{word-spacing:-11.909653pt;}
.ws26{word-spacing:-11.908053pt;}
.ws12{word-spacing:-11.852053pt;}
.ws8{word-spacing:-11.822187pt;}
.ws1a{word-spacing:-11.784320pt;}
.ws29{word-spacing:-11.735787pt;}
.ws1d{word-spacing:-11.697920pt;}
.wsf{word-spacing:-11.686400pt;}
.ws27{word-spacing:-11.311787pt;}
.ws28{word-spacing:-10.832000pt;}
.ws25{word-spacing:-10.671787pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws1c{word-spacing:-2.736000pt;}
.ws1e{word-spacing:-0.424960pt;}
.ws1f{word-spacing:-0.318720pt;}
.ws23{word-spacing:-0.053248pt;}
.ws21{word-spacing:-0.053120pt;}
.wsc{word-spacing:0.000000pt;}
.ws22{word-spacing:460.325120pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-516.602453pt;}
._23{margin-left:-12.756907pt;}
._19{margin-left:-5.132373pt;}
._6{margin-left:-2.944000pt;}
._a{margin-left:-2.049920pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._7{width:2.792533pt;}
._8{width:4.561067pt;}
._9{width:5.790080pt;}
._b{width:6.810240pt;}
._c{width:7.871360pt;}
._10{width:9.455360pt;}
._d{width:10.942720pt;}
._12{width:12.943573pt;}
._14{width:14.408533pt;}
._f{width:15.564800pt;}
._e{width:17.050880pt;}
._24{width:18.927573pt;}
._1e{width:20.467413pt;}
._1f{width:21.396907pt;}
._22{width:25.038293pt;}
._20{width:26.294400pt;}
._21{width:27.470507pt;}
._1c{width:34.988373pt;}
._1d{width:36.050773pt;}
._13{width:71.220480pt;}
._11{width:180.122880pt;}
._1b{width:255.436160pt;}
._18{width:264.449493pt;}
._1a{width:272.822613pt;}
._17{width:282.102613pt;}
._16{width:287.649493pt;}
._15{width:305.142613pt;}
.fs9{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:1.440000pt;}
.y154{bottom:1.600000pt;}
.yf8{bottom:3.200000pt;}
.yfa{bottom:3.360000pt;}
.yc3{bottom:5.920000pt;}
.y189{bottom:6.240000pt;}
.y158{bottom:7.040000pt;}
.yc5{bottom:15.520000pt;}
.y102{bottom:15.680000pt;}
.y114{bottom:18.853333pt;}
.y177{bottom:21.186667pt;}
.y148{bottom:23.293333pt;}
.y13a{bottom:23.426667pt;}
.ye5{bottom:23.520000pt;}
.y179{bottom:24.093333pt;}
.y11b{bottom:24.253333pt;}
.yc2{bottom:24.640000pt;}
.yc0{bottom:24.960000pt;}
.y188{bottom:24.986667pt;}
.yec{bottom:29.408000pt;}
.y185{bottom:31.546667pt;}
.yed{bottom:32.576000pt;}
.yc4{bottom:34.240000pt;}
.y101{bottom:34.400000pt;}
.y10d{bottom:34.493333pt;}
.y139{bottom:34.560000pt;}
.y11a{bottom:36.733333pt;}
.ydb{bottom:39.200000pt;}
.y147{bottom:40.186667pt;}
.y11c{bottom:43.933333pt;}
.y187{bottom:44.026667pt;}
.y150{bottom:44.186667pt;}
.y13b{bottom:48.960000pt;}
.y149{bottom:52.346667pt;}
.y6{bottom:53.920000pt;}
.ydc{bottom:57.626667pt;}
.ye6{bottom:58.493333pt;}
.y17a{bottom:59.386667pt;}
.y142{bottom:61.786667pt;}
.y186{bottom:62.746667pt;}
.yee{bottom:63.333333pt;}
.y11d{bottom:63.653333pt;}
.y10e{bottom:63.680000pt;}
.y127{bottom:63.973333pt;}
.y181{bottom:66.240000pt;}
.y115{bottom:72.933333pt;}
.y13c{bottom:74.493333pt;}
.ydd{bottom:76.066667pt;}
.yf5{bottom:76.453333pt;}
.y178{bottom:78.880000pt;}
.y14a{bottom:81.413333pt;}
.y9f{bottom:81.920000pt;}
.yd6{bottom:82.720000pt;}
.y11e{bottom:83.333333pt;}
.y80{bottom:84.640000pt;}
.y183{bottom:84.960000pt;}
.y135{bottom:85.920000pt;}
.y108{bottom:88.640000pt;}
.y31{bottom:92.640000pt;}
.y10f{bottom:92.893333pt;}
.yef{bottom:94.080000pt;}
.yde{bottom:94.493333pt;}
.y17b{bottom:94.693333pt;}
.yb3{bottom:94.880000pt;}
.y62{bottom:95.360000pt;}
.ybe{bottom:96.320000pt;}
.yd5{bottom:97.920000pt;}
.ye9{bottom:98.240000pt;}
.y174{bottom:98.400000pt;}
.y13d{bottom:100.000000pt;}
.y138{bottom:100.226667pt;}
.y9e{bottom:100.640000pt;}
.y11f{bottom:103.013333pt;}
.y7f{bottom:103.360000pt;}
.y107{bottom:104.000000pt;}
.y134{bottom:104.640000pt;}
.y118{bottom:109.120000pt;}
.y14b{bottom:110.493333pt;}
.y184{bottom:111.040000pt;}
.y30{bottom:111.360000pt;}
.ydf{bottom:112.933333pt;}
.yb2{bottom:113.600000pt;}
.y61{bottom:114.080000pt;}
.ybd{bottom:115.040000pt;}
.y173{bottom:117.120000pt;}
.y9d{bottom:119.360000pt;}
.y133{bottom:119.840000pt;}
.y7e{bottom:122.080000pt;}
.y120{bottom:122.693333pt;}
.yf0{bottom:124.826667pt;}
.y145{bottom:125.120000pt;}
.y13e{bottom:125.533333pt;}
.yd8{bottom:128.933333pt;}
.y17c{bottom:129.986667pt;}
.y2f{bottom:130.080000pt;}
.ye0{bottom:131.360000pt;}
.yb1{bottom:132.320000pt;}
.y60{bottom:132.800000pt;}
.ybc{bottom:133.760000pt;}
.y172{bottom:135.866667pt;}
.y9c{bottom:138.106667pt;}
.y14c{bottom:139.546667pt;}
.y121{bottom:142.373333pt;}
.y2e{bottom:148.826667pt;}
.ye1{bottom:149.786667pt;}
.yb0{bottom:151.066667pt;}
.y110{bottom:151.266667pt;}
.y5f{bottom:151.546667pt;}
.ybb{bottom:152.506667pt;}
.y171{bottom:154.586667pt;}
.yf1{bottom:155.586667pt;}
.y9b{bottom:156.826667pt;}
.y10b{bottom:160.000000pt;}
.yd9{bottom:161.733333pt;}
.y122{bottom:162.053333pt;}
.y17d{bottom:165.280000pt;}
.y2d{bottom:167.546667pt;}
.ye2{bottom:168.226667pt;}
.yeb{bottom:168.546667pt;}
.y14d{bottom:168.640000pt;}
.yaf{bottom:169.786667pt;}
.yba{bottom:171.226667pt;}
.y10c{bottom:172.573333pt;}
.y170{bottom:173.306667pt;}
.y9a{bottom:175.546667pt;}
.y13f{bottom:176.573333pt;}
.y5e{bottom:178.266667pt;}
.y111{bottom:180.453333pt;}
.y123{bottom:181.733333pt;}
.y159{bottom:184.026667pt;}
.y2c{bottom:186.266667pt;}
.yf2{bottom:186.333333pt;}
.ye3{bottom:186.653333pt;}
.yae{bottom:188.506667pt;}
.yb9{bottom:190.106667pt;}
.y16f{bottom:192.026667pt;}
.y99{bottom:194.266667pt;}
.y5d{bottom:196.986667pt;}
.y14e{bottom:197.693333pt;}
.y17e{bottom:200.546667pt;}
.y124{bottom:201.413333pt;}
.y140{bottom:202.106667pt;}
.y2b{bottom:204.986667pt;}
.ye4{bottom:205.093333pt;}
.yad{bottom:207.226667pt;}
.yda{bottom:207.586667pt;}
.y146{bottom:208.933333pt;}
.yb8{bottom:209.466667pt;}
.y112{bottom:209.626667pt;}
.y16e{bottom:210.746667pt;}
.y137{bottom:211.866667pt;}
.y98{bottom:212.986667pt;}
.y157{bottom:213.786667pt;}
.y5c{bottom:215.706667pt;}
.y10a{bottom:215.866667pt;}
.yf3{bottom:217.093333pt;}
.y176{bottom:218.533333pt;}
.y125{bottom:221.093333pt;}
.ye8{bottom:221.120000pt;}
.y2a{bottom:223.706667pt;}
.yac{bottom:225.946667pt;}
.y14f{bottom:226.746667pt;}
.y141{bottom:227.653333pt;}
.yb7{bottom:228.826667pt;}
.y16d{bottom:229.466667pt;}
.y97{bottom:231.706667pt;}
.yf9{bottom:232.986667pt;}
.y119{bottom:234.053333pt;}
.y5b{bottom:234.426667pt;}
.y152{bottom:235.586667pt;}
.y17f{bottom:235.840000pt;}
.y144{bottom:236.640000pt;}
.yea{bottom:237.946667pt;}
.y113{bottom:238.853333pt;}
.ye7{bottom:239.520000pt;}
.y126{bottom:240.773333pt;}
.y29{bottom:242.426667pt;}
.y117{bottom:244.640000pt;}
.yab{bottom:244.666667pt;}
.yf4{bottom:247.813333pt;}
.y16c{bottom:248.186667pt;}
.yb6{bottom:248.346667pt;}
.y96{bottom:250.426667pt;}
.y180{bottom:251.520000pt;}
.y5a{bottom:253.146667pt;}
.y151{bottom:253.986667pt;}
.y143{bottom:255.040000pt;}
.y28{bottom:261.146667pt;}
.yf7{bottom:261.946667pt;}
.y116{bottom:263.040000pt;}
.yaa{bottom:263.386667pt;}
.y128{bottom:264.000000pt;}
.y16b{bottom:266.906667pt;}
.yb5{bottom:267.706667pt;}
.y95{bottom:269.146667pt;}
.y59{bottom:271.866667pt;}
.y27{bottom:279.866667pt;}
.yf6{bottom:282.146667pt;}
.ya9{bottom:282.266667pt;}
.y16a{bottom:285.626667pt;}
.y182{bottom:287.040000pt;}
.yb4{bottom:287.226667pt;}
.y94{bottom:287.866667pt;}
.y58{bottom:290.586667pt;}
.y26{bottom:298.586667pt;}
.ya8{bottom:301.626667pt;}
.y169{bottom:304.346667pt;}
.y93{bottom:306.586667pt;}
.y57{bottom:309.306667pt;}
.y25{bottom:317.306667pt;}
.ya7{bottom:321.146667pt;}
.y168{bottom:323.066667pt;}
.y92{bottom:325.306667pt;}
.y56{bottom:328.026667pt;}
.y24{bottom:336.026667pt;}
.ya6{bottom:340.506667pt;}
.y167{bottom:341.786667pt;}
.y91{bottom:344.026667pt;}
.y55{bottom:346.746667pt;}
.y23{bottom:354.586667pt;}
.y7d{bottom:354.746667pt;}
.ya5{bottom:359.266667pt;}
.y166{bottom:360.546667pt;}
.y90{bottom:362.786667pt;}
.y54{bottom:365.506667pt;}
.y22{bottom:373.346667pt;}
.y7c{bottom:373.506667pt;}
.ya4{bottom:378.626667pt;}
.y165{bottom:379.266667pt;}
.y8f{bottom:381.506667pt;}
.y53{bottom:384.226667pt;}
.y21{bottom:392.066667pt;}
.y7b{bottom:392.226667pt;}
.ya3{bottom:397.346667pt;}
.y164{bottom:397.986667pt;}
.y8e{bottom:400.226667pt;}
.y52{bottom:402.946667pt;}
.y106{bottom:409.986667pt;}
.y20{bottom:410.786667pt;}
.y7a{bottom:410.946667pt;}
.yd4{bottom:413.186667pt;}
.y132{bottom:415.906667pt;}
.y163{bottom:416.706667pt;}
.ya2{bottom:416.866667pt;}
.y8d{bottom:418.946667pt;}
.y51{bottom:421.666667pt;}
.y105{bottom:423.426667pt;}
.yd3{bottom:426.626667pt;}
.y131{bottom:429.346667pt;}
.y1f{bottom:429.506667pt;}
.y79{bottom:429.666667pt;}
.y162{bottom:435.426667pt;}
.ya1{bottom:436.226667pt;}
.y8c{bottom:437.666667pt;}
.y50{bottom:440.386667pt;}
.y104{bottom:442.786667pt;}
.yd2{bottom:445.986667pt;}
.y1e{bottom:448.226667pt;}
.y78{bottom:448.386667pt;}
.y130{bottom:448.706667pt;}
.y161{bottom:454.146667pt;}
.ya0{bottom:455.746667pt;}
.y8b{bottom:456.386667pt;}
.y4f{bottom:459.106667pt;}
.y103{bottom:462.146667pt;}
.yd1{bottom:465.506667pt;}
.y1d{bottom:466.946667pt;}
.y77{bottom:467.106667pt;}
.y12f{bottom:468.226667pt;}
.y160{bottom:472.866667pt;}
.y8a{bottom:475.106667pt;}
.y4e{bottom:477.826667pt;}
.yff{bottom:481.506667pt;}
.ycf{bottom:484.866667pt;}
.y1c{bottom:485.666667pt;}
.y76{bottom:485.826667pt;}
.y12d{bottom:487.586667pt;}
.y15f{bottom:491.586667pt;}
.y89{bottom:493.826667pt;}
.y4d{bottom:496.546667pt;}
.y100{bottom:500.866667pt;}
.yd0{bottom:504.226667pt;}
.y1b{bottom:504.386667pt;}
.y75{bottom:504.546667pt;}
.y12e{bottom:506.946667pt;}
.y15e{bottom:510.306667pt;}
.y88{bottom:512.546667pt;}
.y4c{bottom:515.266667pt;}
.y1a{bottom:523.106667pt;}
.y74{bottom:523.266667pt;}
.y15d{bottom:529.026667pt;}
.y87{bottom:531.266667pt;}
.y19{bottom:541.826667pt;}
.y4b{bottom:541.986667pt;}
.yfe{bottom:545.026667pt;}
.y15c{bottom:547.586667pt;}
.yce{bottom:548.226667pt;}
.y86{bottom:549.986667pt;}
.y12c{bottom:550.946667pt;}
.y18{bottom:560.546667pt;}
.y4a{bottom:560.706667pt;}
.yfd{bottom:563.586667pt;}
.y15b{bottom:566.306667pt;}
.ycd{bottom:566.946667pt;}
.y85{bottom:568.706667pt;}
.y12b{bottom:569.666667pt;}
.y17{bottom:579.293333pt;}
.y15a{bottom:581.533333pt;}
.y175{bottom:581.760000pt;}
.yfc{bottom:582.333333pt;}
.ycc{bottom:585.693333pt;}
.y84{bottom:587.293333pt;}
.y12a{bottom:588.413333pt;}
.yfb{bottom:597.533333pt;}
.y16{bottom:598.013333pt;}
.y109{bottom:601.760000pt;}
.y129{bottom:603.613333pt;}
.ycb{bottom:604.413333pt;}
.y83{bottom:606.013333pt;}
.y136{bottom:609.760000pt;}
.y49{bottom:616.733333pt;}
.y15{bottom:618.973333pt;}
.yca{bottom:619.613333pt;}
.y82{bottom:624.733333pt;}
.yd7{bottom:625.280000pt;}
.y48{bottom:635.453333pt;}
.y81{bottom:643.453333pt;}
.y14{bottom:645.533333pt;}
.y73{bottom:654.173333pt;}
.y47{bottom:662.173333pt;}
.y13{bottom:664.253333pt;}
.y72{bottom:672.893333pt;}
.y46{bottom:680.893333pt;}
.y12{bottom:682.973333pt;}
.y71{bottom:691.613333pt;}
.y45{bottom:699.613333pt;}
.y11{bottom:701.693333pt;}
.y70{bottom:710.333333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:720.413333pt;}
.y6f{bottom:729.053333pt;}
.y155{bottom:732.413333pt;}
.y43{bottom:737.053333pt;}
.yf{bottom:739.133333pt;}
.y6e{bottom:747.773333pt;}
.y42{bottom:755.773333pt;}
.ye{bottom:757.853333pt;}
.y153{bottom:762.173333pt;}
.y6d{bottom:766.493333pt;}
.y41{bottom:774.493333pt;}
.yd{bottom:776.573333pt;}
.y6c{bottom:785.213333pt;}
.y40{bottom:793.213333pt;}
.yc{bottom:797.213333pt;}
.y6b{bottom:803.973333pt;}
.y3f{bottom:811.973333pt;}
.yb{bottom:820.613333pt;}
.y6a{bottom:822.693333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:835.493333pt;}
.y69{bottom:841.413333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:855.333333pt;}
.y68{bottom:860.133333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:877.733333pt;}
.y67{bottom:878.853333pt;}
.y3b{bottom:886.853333pt;}
.y66{bottom:897.573333pt;}
.yc9{bottom:901.573333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:907.653333pt;}
.yc8{bottom:915.013333pt;}
.y65{bottom:916.293333pt;}
.y39{bottom:924.293333pt;}
.yc7{bottom:934.533333pt;}
.y64{bottom:935.013333pt;}
.y38{bottom:943.013333pt;}
.y5{bottom:943.333333pt;}
.y63{bottom:953.733333pt;}
.yc6{bottom:953.893333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:971.973333pt;}
.ybf{bottom:973.253333pt;}
.y36{bottom:980.453333pt;}
.yc1{bottom:992.613333pt;}
.y35{bottom:999.173333pt;}
.y3{bottom:1000.453333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1029.120000pt;}
.y33{bottom:1036.640000pt;}
.y1{bottom:1059.840000pt;}
.y32{bottom:1061.440000pt;}
.h22{height:2.546250pt;}
.h1e{height:13.920000pt;}
.h18{height:15.680000pt;}
.h19{height:15.840000pt;}
.hc{height:18.720000pt;}
.h1f{height:19.520000pt;}
.h7{height:34.374375pt;}
.h11{height:37.090625pt;}
.h12{height:37.180000pt;}
.hf{height:37.440000pt;}
.hb{height:37.472000pt;}
.h14{height:37.479688pt;}
.h17{height:37.570000pt;}
.h13{height:37.583438pt;}
.h15{height:45.156250pt;}
.hd{height:46.454062pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h9{height:52.934375pt;}
.h5{height:54.390938pt;}
.he{height:56.800000pt;}
.ha{height:56.832000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h21{height:75.552000pt;}
.h4{height:87.156562pt;}
.h10{height:264.480000pt;}
.h1d{height:279.040000pt;}
.h1c{height:280.000000pt;}
.h1a{height:288.000000pt;}
.h1b{height:289.120000pt;}
.h16{height:307.200000pt;}
.h20{height:312.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:109.600000pt;}
.w10{width:109.632000pt;}
.w28{width:112.352000pt;}
.w5{width:120.032000pt;}
.w29{width:123.232000pt;}
.w24{width:123.552000pt;}
.w1f{width:131.552000pt;}
.wa{width:138.746667pt;}
.w18{width:139.226667pt;}
.w13{width:145.306667pt;}
.w3{width:153.626667pt;}
.w22{width:158.266667pt;}
.w2e{width:159.226667pt;}
.w1d{width:168.506667pt;}
.w2c{width:176.826667pt;}
.w8{width:177.786667pt;}
.w16{width:178.426667pt;}
.w2d{width:179.106667pt;}
.w2a{width:179.386667pt;}
.w15{width:181.626667pt;}
.w14{width:181.666667pt;}
.w11{width:186.106667pt;}
.w2f{width:187.386667pt;}
.w1a{width:188.506667pt;}
.w19{width:188.546667pt;}
.wc{width:188.986667pt;}
.wb{width:189.026667pt;}
.w21{width:197.306667pt;}
.w20{width:197.346667pt;}
.w26{width:206.426667pt;}
.w25{width:206.466667pt;}
.w7{width:210.426667pt;}
.w6{width:210.626667pt;}
.w2b{width:338.813333pt;}
.w12{width:363.933333pt;}
.w17{width:377.693333pt;}
.w9{width:378.813333pt;}
.w1e{width:395.293333pt;}
.w23{width:413.533333pt;}
.w4{width:421.693333pt;}
.w30{width:516.453333pt;}
.w27{width:544.000000pt;}
.w1b{width:544.160000pt;}
.wd{width:544.320000pt;}
.we{width:544.480000pt;}
.w1c{width:544.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x24{left:12.000000pt;}
.x48{left:13.280000pt;}
.x22{left:14.240000pt;}
.x47{left:15.520000pt;}
.x26{left:18.720000pt;}
.x4a{left:20.000000pt;}
.x4c{left:20.960000pt;}
.x4e{left:25.440000pt;}
.x18{left:26.746667pt;}
.x20{left:30.373333pt;}
.x16{left:33.600000pt;}
.x44{left:35.613333pt;}
.x1e{left:37.253333pt;}
.x15{left:40.253333pt;}
.x1f{left:41.666667pt;}
.x31{left:44.026667pt;}
.x1{left:47.999988pt;}
.x34{left:49.253333pt;}
.x2f{left:50.880000pt;}
.x36{left:53.666667pt;}
.x50{left:54.760000pt;}
.x2e{left:57.573333pt;}
.xb{left:59.359988pt;}
.x35{left:60.346667pt;}
.x2{left:61.759988pt;}
.x19{left:63.493333pt;}
.x4{left:66.079988pt;}
.x45{left:67.933333pt;}
.x37{left:69.626667pt;}
.x5{left:71.999988pt;}
.x53{left:75.711988pt;}
.x32{left:80.253333pt;}
.x57{left:86.400000pt;}
.x3{left:96.031988pt;}
.x17{left:99.773333pt;}
.x41{left:111.333333pt;}
.x30{left:114.173333pt;}
.x56{left:115.746667pt;}
.x12{left:120.640000pt;}
.x2a{left:123.840000pt;}
.x11{left:124.800000pt;}
.x1b{left:125.760000pt;}
.x29{left:131.871988pt;}
.x3f{left:133.306667pt;}
.x2b{left:135.066667pt;}
.x42{left:137.733333pt;}
.x49{left:138.746667pt;}
.x25{left:143.066667pt;}
.x33{left:146.333333pt;}
.x4d{left:147.706667pt;}
.x58{left:168.986667pt;}
.x7{left:202.906667pt;}
.x3c{left:207.546667pt;}
.x38{left:217.786667pt;}
.xd{left:227.066667pt;}
.x4f{left:228.826667pt;}
.x27{left:235.386667pt;}
.x1a{left:243.520000pt;}
.x13{left:275.866667pt;}
.x54{left:278.333333pt;}
.x40{left:280.320000pt;}
.x2c{left:284.480000pt;}
.x1c{left:288.506667pt;}
.x23{left:289.826667pt;}
.x43{left:293.413333pt;}
.xc{left:370.306655pt;}
.x3e{left:382.306655pt;}
.x52{left:408.573333pt;}
.x9{left:414.173333pt;}
.x3a{left:415.773333pt;}
.xf{left:416.893333pt;}
.x1d{left:424.960000pt;}
.x55{left:428.826667pt;}
.x14{left:431.066667pt;}
.x2d{left:433.920000pt;}
.x4b{left:435.773333pt;}
.x21{left:440.253333pt;}
.x46{left:446.653333pt;}
.x51{left:568.453333pt;}
.x28{left:599.973333pt;}
.xe{left:606.533333pt;}
.x39{left:613.733333pt;}
.x3d{left:621.733333pt;}
.x8{left:625.253333pt;}
.x3b{left:672.933322pt;}
.x10{left:673.893322pt;}
.xa{left:675.013322pt;}
}




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