
    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_c5bf74ea3aa58315b0eac837.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166504;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_ff6f7c1b46a350ac8bc32c3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.166504;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_938a0ce90e91d04b0be756c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_fa9fe279085d1d3a4a63b42d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.879395;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_d552bf873d246e41a020eb58.woff2')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_e6e309d08cf440f6fcb0e56b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_4558ff6af29dc3aa652fc433.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_288f82e06774793a9124f303.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_84fdd61f5986097e22a1a5fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_a8bb605adfdfd70882dc1ffd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_ca465fbe17c2139e48b8d5d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.080566;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_a3b1a29c7cade1d5ac614023.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.928223;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_0107ba87eb66df0a14056b20.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.928223;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960449;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_64a1e505f0bf81eb57ad9b45.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;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_94a4f2681316bb4344b8247e.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_23d79f5d042026cba8ab2963.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.943848;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;}
.m1{transform:matrix(0.117022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117022,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);}
.m2{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:-78.480000px;}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-0.900000px;}
.ls25{letter-spacing:-0.756000px;}
.ls26{letter-spacing:-0.684000px;}
.ls19{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.501000px;}
.ls1c{letter-spacing:-0.450600px;}
.ls21{letter-spacing:-0.385800px;}
.ls28{letter-spacing:-0.378600px;}
.ls18{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.334200px;}
.ls5{letter-spacing:-0.324000px;}
.ls33{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.187200px;}
.ls27{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.025920px;}
.ls17{letter-spacing:-0.018720px;}
.ls3{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.025920px;}
.ls24{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.126000px;}
.ls31{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.lsb{letter-spacing:0.181440px;}
.ls1{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.269400px;}
.ls22{letter-spacing:0.334200px;}
.ls2c{letter-spacing:0.350400px;}
.ls7{letter-spacing:0.360000px;}
.lse{letter-spacing:0.361440px;}
.ls11{letter-spacing:0.617760px;}
.ls4{letter-spacing:0.666000px;}
.ls32{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.721920px;}
.ls2a{letter-spacing:2.106720px;}
.lsf{letter-spacing:4.500000px;}
.ls12{letter-spacing:15.017760px;}
.ls1f{letter-spacing:15.840000px;}
.lsc{letter-spacing:16.740000px;}
.ls13{letter-spacing:17.429760px;}
.ls10{letter-spacing:17.897760px;}
.lsd{letter-spacing:20.340000px;}
.ls2b{letter-spacing:20.448000px;}
.ls2f{letter-spacing:123.840000px;}
.ls2d{letter-spacing:163.440000px;}
.ls2e{letter-spacing:346.320000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws21{word-spacing:-59.760000px;}
.ws0{word-spacing:-54.000000px;}
.ws14{word-spacing:-25.920000px;}
.ws15{word-spacing:-25.911360px;}
.ws13{word-spacing:-25.868160px;}
.ws5{word-spacing:-23.921280px;}
.ws1e{word-spacing:-21.420000px;}
.ws23{word-spacing:-21.410400px;}
.ws1d{word-spacing:-21.060000px;}
.ws1f{word-spacing:-20.700000px;}
.ws20{word-spacing:-20.681400px;}
.ws1c{word-spacing:-20.304000px;}
.ws24{word-spacing:-18.720000px;}
.ws22{word-spacing:-18.000000px;}
.ws25{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.488000px;}
.ws19{word-spacing:-16.174200px;}
.ws16{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.505800px;}
.ws18{word-spacing:-15.454200px;}
.ws1a{word-spacing:-15.339000px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.626000px;}
.ws6{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.870000px;}
.wsd{word-spacing:-12.329400px;}
.wsf{word-spacing:-12.241200px;}
.ws11{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.wse{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.609400px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-14.448480px;}
._16{margin-left:-12.900480px;}
._14{margin-left:-10.924320px;}
._2d{margin-left:-9.315120px;}
._1d{margin-left:-7.967040px;}
._4d{margin-left:-6.876000px;}
._20{margin-left:-5.758080px;}
._13{margin-left:-4.324800px;}
._10{margin-left:-2.880960px;}
._0{margin-left:-1.548000px;}
._c{width:1.015920px;}
._2{width:2.021760px;}
._1{width:3.702240px;}
._b{width:5.472000px;}
._45{width:6.868320px;}
._e{width:8.007360px;}
._d{width:9.090480px;}
._48{width:10.620720px;}
._3b{width:11.748960px;}
._11{width:13.715040px;}
._12{width:14.784480px;}
._5{width:16.146000px;}
._f{width:17.224080px;}
._8{width:18.780000px;}
._7{width:20.442000px;}
._6{width:21.600000px;}
._42{width:23.597280px;}
._25{width:25.398720px;}
._1c{width:27.046080px;}
._4f{width:28.415520px;}
._18{width:29.643840px;}
._17{width:30.669120px;}
._19{width:32.028000px;}
._44{width:33.698880px;}
._2e{width:35.703360px;}
._21{width:36.776160px;}
._22{width:37.908000px;}
._2a{width:39.483360px;}
._28{width:41.211360px;}
._27{width:42.922080px;}
._34{width:44.089920px;}
._1f{width:47.079840px;}
._15{width:48.624480px;}
._9{width:50.166000px;}
._1b{width:52.263360px;}
._39{width:53.580240px;}
._26{width:54.776160px;}
._50{width:56.640720px;}
._4e{width:57.872880px;}
._41{width:59.114880px;}
._35{width:60.220800px;}
._2f{width:61.269120px;}
._30{width:63.013440px;}
._49{width:64.458000px;}
._3e{width:65.478240px;}
._3f{width:66.872160px;}
._40{width:68.365440px;}
._37{width:69.632640px;}
._23{width:70.737120px;}
._24{width:71.748720px;}
._4b{width:75.563280px;}
._4c{width:77.479920px;}
._3a{width:81.698400px;}
._31{width:86.232960px;}
._36{width:88.668000px;}
._4{width:94.818000px;}
._4a{width:99.234720px;}
._a{width:104.124000px;}
._3d{width:107.252160px;}
._1e{width:108.393840px;}
._3c{width:109.730880px;}
._55{width:121.270320px;}
._38{width:129.028320px;}
._32{width:136.604160px;}
._33{width:137.736000px;}
._43{width:140.686560px;}
._2b{width:158.617440px;}
._2c{width:160.138320px;}
._53{width:186.996000px;}
._52{width:194.633760px;}
._54{width:196.220160px;}
._29{width:416.337600px;}
._47{width:843.240000px;}
._3{width:848.609280px;}
._46{width:2273.789760px;}
._51{width:2871.060000px;}
.fc6{color:rgb(31,56,100);}
.fc5{color:transparent;}
.fca{color:rgb(46,116,181);}
.fc4{color:rgb(255,0,0);}
.fcc{color:rgb(5,99,193);}
.fcb{color:rgb(0,32,96);}
.fc3{color:rgb(47,84,150);}
.fc9{color:rgb(255,255,255);}
.fc7{color:rgb(84,138,183);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(51,153,255);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:5.760000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsc{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fsb{font-size:131.760000px;}
.fsd{font-size:144.000000px;}
.y1af{bottom:-54.540000px;}
.y1ae{bottom:-33.840000px;}
.y1be{bottom:-15.660000px;}
.y1ad{bottom:-13.140000px;}
.y3{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.240000px;}
.y1a5{bottom:4.500000px;}
.y8{bottom:5.040000px;}
.y5{bottom:6.336000px;}
.y7{bottom:6.480000px;}
.y1ac{bottom:7.560000px;}
.y1a1{bottom:7.740000px;}
.y199{bottom:9.000000px;}
.y13{bottom:11.880000px;}
.y1bd{bottom:17.640000px;}
.y19d{bottom:18.936000px;}
.y6b{bottom:20.520000px;}
.y1a4{bottom:24.840000px;}
.y1ab{bottom:28.260000px;}
.y198{bottom:31.320000px;}
.y70{bottom:32.580000px;}
.y6a{bottom:37.080000px;}
.y1bc{bottom:38.340000px;}
.y19c{bottom:39.636000px;}
.y19f{bottom:43.020000px;}
.y1a3{bottom:45.405000px;}
.y12{bottom:47.700000px;}
.y1aa{bottom:50.580000px;}
.y69{bottom:50.760000px;}
.y197{bottom:53.640000px;}
.y9{bottom:57.600000px;}
.y1bb{bottom:59.040000px;}
.y19b{bottom:60.336000px;}
.y19a{bottom:61.200000px;}
.y68{bottom:64.620000px;}
.y6f{bottom:69.120000px;}
.y1a9{bottom:71.325000px;}
.y196{bottom:75.960000px;}
.y67{bottom:78.300000px;}
.y1ba{bottom:79.740000px;}
.y6{bottom:83.916000px;}
.y4{bottom:84.060000px;}
.y1a8{bottom:92.025000px;}
.y66{bottom:92.160000px;}
.y11{bottom:94.500000px;}
.y32{bottom:99.540000px;}
.y6e{bottom:105.690000px;}
.y65{bottom:106.020000px;}
.y31{bottom:112.140000px;}
.y1a7{bottom:112.725000px;}
.y1b9{bottom:114.120000px;}
.y2{bottom:116.856000px;}
.y64{bottom:119.700000px;}
.y10{bottom:129.090000px;}
.y63{bottom:133.560000px;}
.y1b8{bottom:134.820000px;}
.y193{bottom:134.856000px;}
.ya1{bottom:139.896000px;}
.y147{bottom:146.376000px;}
.y62{bottom:147.420000px;}
.y30{bottom:148.140000px;}
.y170{bottom:149.976000px;}
.y1b7{bottom:155.520000px;}
.ya0{bottom:158.070000px;}
.y192{bottom:158.970000px;}
.y61{bottom:161.100000px;}
.yf{bottom:163.650000px;}
.yd6{bottom:167.250000px;}
.y14{bottom:167.430000px;}
.y146{bottom:170.670000px;}
.y16f{bottom:174.090000px;}
.y60{bottom:175.005000px;}
.y9f{bottom:176.070000px;}
.y1b6{bottom:176.250000px;}
.ye{bottom:178.950000px;}
.yfe{bottom:180.930000px;}
.y195{bottom:181.290000px;}
.y191{bottom:183.090000px;}
.yd5{bottom:185.430000px;}
.y5f{bottom:188.865000px;}
.y145{bottom:194.790000px;}
.y1b5{bottom:196.950000px;}
.y16e{bottom:198.210000px;}
.y9e{bottom:198.570000px;}
.yfd{bottom:199.110000px;}
.y5e{bottom:202.545000px;}
.y2f{bottom:203.085000px;}
.yd4{bottom:203.610000px;}
.y190{bottom:207.210000px;}
.y9d{bottom:216.750000px;}
.yfc{bottom:217.290000px;}
.y5d{bottom:217.485000px;}
.y1b4{bottom:217.650000px;}
.y144{bottom:218.910000px;}
.y16d{bottom:222.510000px;}
.yd3{bottom:226.110000px;}
.y18f{bottom:231.510000px;}
.y5c{bottom:232.425000px;}
.y9c{bottom:234.930000px;}
.y1b3{bottom:238.350000px;}
.y2e{bottom:239.085000px;}
.yfb{bottom:239.790000px;}
.y143{bottom:243.030000px;}
.yd2{bottom:244.290000px;}
.y5b{bottom:246.285000px;}
.y16c{bottom:246.630000px;}
.y18e{bottom:255.630000px;}
.y9b{bottom:257.430000px;}
.yfa{bottom:257.970000px;}
.y1b2{bottom:259.050000px;}
.y5a{bottom:259.965000px;}
.yd1{bottom:262.470000px;}
.y142{bottom:267.150000px;}
.y16b{bottom:270.750000px;}
.y59{bottom:273.825000px;}
.y9a{bottom:275.610000px;}
.y11d{bottom:276.330000px;}
.y18d{bottom:279.750000px;}
.yf9{bottom:280.470000px;}
.yd0{bottom:284.970000px;}
.y58{bottom:287.685000px;}
.y141{bottom:291.270000px;}
.y99{bottom:293.790000px;}
.y16a{bottom:294.870000px;}
.y1a2{bottom:296.670000px;}
.yf8{bottom:298.650000px;}
.y1b1{bottom:300.450000px;}
.y57{bottom:301.365000px;}
.ycf{bottom:303.150000px;}
.y18c{bottom:303.870000px;}
.y11c{bottom:313.950000px;}
.y56{bottom:315.225000px;}
.y140{bottom:315.390000px;}
.y98{bottom:316.290000px;}
.yf7{bottom:316.830000px;}
.y2d{bottom:317.565000px;}
.y184{bottom:318.990000px;}
.yce{bottom:321.150000px;}
.y169{bottom:327.990000px;}
.y55{bottom:329.085000px;}
.y97{bottom:334.470000px;}
.ycd{bottom:339.375000px;}
.y13f{bottom:339.735000px;}
.y183{bottom:343.155000px;}
.y54{bottom:343.665000px;}
.y11b{bottom:350.895000px;}
.y168{bottom:352.155000px;}
.y96{bottom:352.695000px;}
.y2c{bottom:353.925000px;}
.y53{bottom:357.525000px;}
.yf6{bottom:357.555000px;}
.ycc{bottom:361.875000px;}
.y13e{bottom:363.855000px;}
.y182{bottom:367.455000px;}
.y2b{bottom:369.585000px;}
.y52{bottom:371.205000px;}
.y95{bottom:375.195000px;}
.yf5{bottom:375.735000px;}
.y167{bottom:376.455000px;}
.ycb{bottom:380.055000px;}
.y11a{bottom:384.555000px;}
.y2a{bottom:385.065000px;}
.y13d{bottom:387.975000px;}
.y181{bottom:391.575000px;}
.y94{bottom:393.375000px;}
.yf4{bottom:398.055000px;}
.yca{bottom:398.235000px;}
.y51{bottom:398.925000px;}
.y29{bottom:400.545000px;}
.y166{bottom:400.575000px;}
.y119{bottom:402.735000px;}
.y93{bottom:411.555000px;}
.y13c{bottom:412.095000px;}
.y50{bottom:412.605000px;}
.y180{bottom:415.695000px;}
.y28{bottom:416.025000px;}
.yf3{bottom:416.235000px;}
.yc9{bottom:420.735000px;}
.y165{bottom:424.695000px;}
.y4f{bottom:426.465000px;}
.y27{bottom:431.685000px;}
.y92{bottom:434.055000px;}
.yf2{bottom:434.415000px;}
.y13b{bottom:436.215000px;}
.y1b0{bottom:438.195000px;}
.yc8{bottom:438.915000px;}
.y17f{bottom:439.815000px;}
.y4e{bottom:440.355000px;}
.y164{bottom:448.815000px;}
.y91{bottom:452.235000px;}
.y4d{bottom:454.035000px;}
.y26{bottom:456.735000px;}
.yf1{bottom:456.915000px;}
.yc7{bottom:457.095000px;}
.y13a{bottom:460.335000px;}
.y118{bottom:461.415000px;}
.y17e{bottom:463.935000px;}
.y4c{bottom:467.895000px;}
.y90{bottom:470.415000px;}
.y163{bottom:472.935000px;}
.yf0{bottom:475.095000px;}
.yc6{bottom:479.595000px;}
.y4b{bottom:481.575000px;}
.y139{bottom:484.635000px;}
.y17d{bottom:488.055000px;}
.y8f{bottom:492.915000px;}
.y25{bottom:493.095000px;}
.yef{bottom:493.275000px;}
.y4a{bottom:495.435000px;}
.y162{bottom:497.055000px;}
.yc5{bottom:497.775000px;}
.y138{bottom:508.755000px;}
.y49{bottom:509.295000px;}
.y8e{bottom:511.095000px;}
.y17c{bottom:512.175000px;}
.yee{bottom:515.775000px;}
.yc4{bottom:515.955000px;}
.y24{bottom:518.295000px;}
.y117{bottom:520.275000px;}
.y161{bottom:521.175000px;}
.y48{bottom:522.975000px;}
.y8d{bottom:529.275000px;}
.y137{bottom:532.875000px;}
.yed{bottom:533.955000px;}
.y17b{bottom:536.475000px;}
.y47{bottom:536.835000px;}
.yc3{bottom:538.455000px;}
.y160{bottom:545.475000px;}
.y46{bottom:550.695000px;}
.y8c{bottom:551.595000px;}
.y23{bottom:555.015000px;}
.yec{bottom:556.455000px;}
.yc2{bottom:556.635000px;}
.y136{bottom:556.995000px;}
.y45{bottom:564.375000px;}
.y15f{bottom:569.595000px;}
.y8b{bottom:569.955000px;}
.y22{bottom:571.935000px;}
.yeb{bottom:574.635000px;}
.yc1{bottom:574.815000px;}
.y44{bottom:578.235000px;}
.y18b{bottom:578.595000px;}
.y116{bottom:579.135000px;}
.y135{bottom:581.115000px;}
.y21{bottom:587.775000px;}
.y43{bottom:592.095000px;}
.y8a{bottom:592.455000px;}
.yea{bottom:592.815000px;}
.y15e{bottom:593.715000px;}
.yc0{bottom:597.315000px;}
.y18a{bottom:602.715000px;}
.y20{bottom:604.695000px;}
.y134{bottom:605.265000px;}
.y42{bottom:605.775000px;}
.y89{bottom:610.665000px;}
.ye9{bottom:615.345000px;}
.ybf{bottom:615.525000px;}
.y15d{bottom:617.865000px;}
.y41{bottom:619.635000px;}
.y115{bottom:619.845000px;}
.y1f{bottom:620.535000px;}
.y189{bottom:626.865000px;}
.y88{bottom:628.845000px;}
.y133{bottom:629.385000px;}
.y40{bottom:633.495000px;}
.ye8{bottom:633.525000px;}
.ybe{bottom:633.705000px;}
.y1e{bottom:637.455000px;}
.y114{bottom:638.025000px;}
.y15c{bottom:641.985000px;}
.y3f{bottom:647.175000px;}
.y188{bottom:650.985000px;}
.y87{bottom:651.345000px;}
.ye7{bottom:651.705000px;}
.y1d{bottom:653.295000px;}
.y132{bottom:653.685000px;}
.ybd{bottom:656.025000px;}
.y113{bottom:656.205000px;}
.y3e{bottom:661.035000px;}
.y15b{bottom:666.105000px;}
.y86{bottom:669.525000px;}
.y1c{bottom:670.215000px;}
.ybc{bottom:674.205000px;}
.y3d{bottom:674.895000px;}
.y187{bottom:675.105000px;}
.y131{bottom:677.805000px;}
.y112{bottom:678.705000px;}
.y1b{bottom:686.055000px;}
.y85{bottom:687.525000px;}
.y3c{bottom:688.575000px;}
.y15a{bottom:690.405000px;}
.ybb{bottom:692.385000px;}
.y111{bottom:696.885000px;}
.y186{bottom:699.405000px;}
.y130{bottom:701.925000px;}
.y3b{bottom:702.435000px;}
.y84{bottom:710.025000px;}
.ye6{bottom:710.565000px;}
.y1a{bottom:712.560000px;}
.y159{bottom:714.525000px;}
.yba{bottom:714.885000px;}
.y110{bottom:715.065000px;}
.y3a{bottom:716.340000px;}
.y185{bottom:723.525000px;}
.y12f{bottom:726.045000px;}
.y83{bottom:728.205000px;}
.y39{bottom:730.020000px;}
.y19{bottom:731.820000px;}
.yb9{bottom:733.065000px;}
.y10f{bottom:737.565000px;}
.y158{bottom:738.645000px;}
.y82{bottom:746.385000px;}
.y17a{bottom:747.645000px;}
.y12e{bottom:750.165000px;}
.yb8{bottom:751.245000px;}
.y10e{bottom:755.745000px;}
.y38{bottom:756.660000px;}
.y157{bottom:762.765000px;}
.y81{bottom:764.565000px;}
.y18{bottom:768.000000px;}
.y1a0{bottom:769.245000px;}
.ye5{bottom:769.425000px;}
.y179{bottom:771.765000px;}
.yb7{bottom:773.745000px;}
.y10d{bottom:773.925000px;}
.y12d{bottom:774.285000px;}
.y17{bottom:783.480000px;}
.y156{bottom:786.885000px;}
.y80{bottom:787.065000px;}
.ye4{bottom:787.425000px;}
.yb6{bottom:791.925000px;}
.y37{bottom:791.940000px;}
.y178{bottom:795.885000px;}
.y10c{bottom:796.425000px;}
.y12c{bottom:798.585000px;}
.y16{bottom:798.960000px;}
.y7f{bottom:805.245000px;}
.y36{bottom:809.040000px;}
.ye3{bottom:809.925000px;}
.yb5{bottom:810.105000px;}
.y1a6{bottom:810.465000px;}
.y155{bottom:811.005000px;}
.y10b{bottom:814.605000px;}
.y177{bottom:820.005000px;}
.y12b{bottom:822.705000px;}
.y7e{bottom:823.425000px;}
.y15{bottom:824.160000px;}
.y35{bottom:826.320000px;}
.ye2{bottom:828.105000px;}
.yb4{bottom:832.605000px;}
.y10a{bottom:832.785000px;}
.y154{bottom:835.125000px;}
.y34{bottom:843.600000px;}
.y176{bottom:844.125000px;}
.y33{bottom:845.040000px;}
.y7d{bottom:845.925000px;}
.ye1{bottom:846.285000px;}
.y12a{bottom:846.825000px;}
.yb3{bottom:850.785000px;}
.y109{bottom:855.285000px;}
.y153{bottom:859.425000px;}
.y7c{bottom:864.105000px;}
.y175{bottom:868.425000px;}
.ye0{bottom:868.785000px;}
.yb2{bottom:868.965000px;}
.y129{bottom:870.990000px;}
.y108{bottom:873.510000px;}
.y152{bottom:883.590000px;}
.y7b{bottom:886.650000px;}
.ydf{bottom:887.010000px;}
.yb1{bottom:891.510000px;}
.y107{bottom:891.690000px;}
.y174{bottom:892.590000px;}
.y128{bottom:895.110000px;}
.y7a{bottom:904.830000px;}
.yde{bottom:905.190000px;}
.y151{bottom:907.710000px;}
.yb0{bottom:909.690000px;}
.y106{bottom:914.010000px;}
.y173{bottom:916.710000px;}
.y127{bottom:919.230000px;}
.y79{bottom:923.010000px;}
.ydd{bottom:927.690000px;}
.yaf{bottom:927.870000px;}
.y150{bottom:931.830000px;}
.y105{bottom:932.190000px;}
.y172{bottom:940.830000px;}
.y126{bottom:943.350000px;}
.y78{bottom:945.510000px;}
.ydc{bottom:945.870000px;}
.yae{bottom:950.370000px;}
.y14f{bottom:955.950000px;}
.y77{bottom:963.690000px;}
.ydb{bottom:964.050000px;}
.y171{bottom:964.950000px;}
.y125{bottom:967.650000px;}
.yad{bottom:968.550000px;}
.y76{bottom:981.690000px;}
.yda{bottom:986.550000px;}
.yac{bottom:986.730000px;}
.y19e{bottom:987.810000px;}
.y14e{bottom:989.070000px;}
.y104{bottom:991.050000px;}
.y124{bottom:993.750000px;}
.y75{bottom:999.870000px;}
.yd9{bottom:1004.730000px;}
.yab{bottom:1009.230000px;}
.y14d{bottom:1013.370000px;}
.y74{bottom:1022.370000px;}
.y123{bottom:1023.810000px;}
.yd{bottom:1025.070000px;}
.yd8{bottom:1027.230000px;}
.yaa{bottom:1027.410000px;}
.y14c{bottom:1037.490000px;}
.y73{bottom:1040.550000px;}
.y6d{bottom:1044.510000px;}
.ya9{bottom:1045.410000px;}
.y122{bottom:1047.930000px;}
.y103{bottom:1049.910000px;}
.y14b{bottom:1061.610000px;}
.yd7{bottom:1063.590000px;}
.ya8{bottom:1067.910000px;}
.y102{bottom:1068.090000px;}
.y72{bottom:1073.490000px;}
.y121{bottom:1074.030000px;}
.y14a{bottom:1085.730000px;}
.ya7{bottom:1086.090000px;}
.y101{bottom:1086.270000px;}
.ya6{bottom:1104.270000px;}
.y120{bottom:1106.070000px;}
.y100{bottom:1108.770000px;}
.y149{bottom:1109.850000px;}
.y194{bottom:1120.110000px;}
.y71{bottom:1122.270000px;}
.ya5{bottom:1126.770000px;}
.yff{bottom:1126.950000px;}
.y11f{bottom:1132.170000px;}
.y148{bottom:1133.970000px;}
.ya4{bottom:1144.980000px;}
.y11e{bottom:1158.300000px;}
.ya2{bottom:1160.640000px;}
.yc{bottom:1162.260000px;}
.ya3{bottom:1163.160000px;}
.yb{bottom:1190.880000px;}
.y1{bottom:1196.820000px;}
.ya{bottom:1203.120000px;}
.ha{height:4.854375px;}
.h3{height:8.460000px;}
.h1d{height:17.280000px;}
.h5{height:22.140000px;}
.h9{height:25.822266px;}
.h26{height:27.360000px;}
.h15{height:43.246406px;}
.h16{height:47.980898px;}
.hc{height:48.410156px;}
.h13{height:51.677227px;}
.h14{height:53.573906px;}
.h4{height:53.709961px;}
.h1c{height:54.790312px;}
.h6{height:55.291992px;}
.h18{height:56.649375px;}
.h12{height:57.280781px;}
.h28{height:59.383125px;}
.h29{height:59.439023px;}
.h27{height:60.876000px;}
.h2{height:61.189805px;}
.h1b{height:63.019687px;}
.h21{height:64.546875px;}
.h8{height:65.884219px;}
.h23{height:71.613281px;}
.h24{height:72.540000px;}
.h1f{height:72.846211px;}
.h7{height:73.722656px;}
.hf{height:75.519844px;}
.h19{height:77.342344px;}
.h10{height:78.927188px;}
.he{height:82.808086px;}
.h1e{height:91.177734px;}
.h22{height:92.196000px;}
.h20{height:92.700000px;}
.h25{height:99.070312px;}
.hd{height:107.793281px;}
.h1a{height:113.938945px;}
.h2a{height:129.456000px;}
.h17{height:136.116000px;}
.hb{height:191.550000px;}
.h2b{height:317.190000px;}
.h11{height:857.625000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:54.000000px;}
.w9{width:156.630000px;}
.w6{width:270.075000px;}
.w4{width:360.975000px;}
.w5{width:361.980000px;}
.w3{width:362.055000px;}
.w8{width:485.385000px;}
.wb{width:494.385000px;}
.wa{width:612.105000px;}
.wd{width:725.370000px;}
.we{width:735.810000px;}
.wf{width:753.090000px;}
.wc{width:892.979971px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.676000px;}
.x23{left:10.800000px;}
.x16{left:18.576000px;}
.x2c{left:19.836000px;}
.x2a{left:23.796000px;}
.xd{left:27.000000px;}
.x15{left:28.476000px;}
.x2b{left:46.476000px;}
.xa{left:52.560000px;}
.x14{left:70.380000px;}
.x27{left:72.180000px;}
.x29{left:78.300000px;}
.x26{left:79.380000px;}
.x2{left:84.960000px;}
.x12{left:117.030000px;}
.x8{left:119.915987px;}
.x13{left:123.330000px;}
.x21{left:127.475987px;}
.xb{left:135.030000px;}
.x11{left:137.010000px;}
.x19{left:139.895987px;}
.x1a{left:168.689987px;}
.x2d{left:188.670000px;}
.x22{left:192.270000px;}
.x6{left:207.255000px;}
.x10{left:215.310000px;}
.x9{left:217.469987px;}
.xf{left:242.670000px;}
.x24{left:253.290000px;}
.x28{left:276.735000px;}
.x17{left:311.654987px;}
.xc{left:322.635000px;}
.x18{left:325.155000px;}
.x25{left:339.554971px;}
.x7{left:343.335000px;}
.x1b{left:345.494987px;}
.x5{left:352.515000px;}
.xe{left:376.635000px;}
.x4{left:447.015000px;}
.x1e{left:454.394987px;}
.x1f{left:493.484987px;}
.x1c{left:512.744987px;}
.x1d{left:514.904987px;}
.x1{left:644.684987px;}
.x20{left:657.509987px;}
@media print{
.v1{vertical-align:-69.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-0.800000pt;}
.ls25{letter-spacing:-0.672000pt;}
.ls26{letter-spacing:-0.608000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.445333pt;}
.ls1c{letter-spacing:-0.400533pt;}
.ls21{letter-spacing:-0.342933pt;}
.ls28{letter-spacing:-0.336533pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.297067pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls33{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.166400pt;}
.ls27{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.023040pt;}
.ls17{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.023040pt;}
.ls24{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.112000pt;}
.ls31{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.lsb{letter-spacing:0.161280pt;}
.ls1{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.239467pt;}
.ls22{letter-spacing:0.297067pt;}
.ls2c{letter-spacing:0.311467pt;}
.ls7{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.321280pt;}
.ls11{letter-spacing:0.549120pt;}
.ls4{letter-spacing:0.592000pt;}
.ls32{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.641707pt;}
.ls2a{letter-spacing:1.872640pt;}
.lsf{letter-spacing:4.000000pt;}
.ls12{letter-spacing:13.349120pt;}
.ls1f{letter-spacing:14.080000pt;}
.lsc{letter-spacing:14.880000pt;}
.ls13{letter-spacing:15.493120pt;}
.ls10{letter-spacing:15.909120pt;}
.lsd{letter-spacing:18.080000pt;}
.ls2b{letter-spacing:18.176000pt;}
.ls2f{letter-spacing:110.080000pt;}
.ls2d{letter-spacing:145.280000pt;}
.ls2e{letter-spacing:307.840000pt;}
.ws21{word-spacing:-53.120000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws14{word-spacing:-23.040000pt;}
.ws15{word-spacing:-23.032320pt;}
.ws13{word-spacing:-22.993920pt;}
.ws5{word-spacing:-21.263360pt;}
.ws1e{word-spacing:-19.040000pt;}
.ws23{word-spacing:-19.031467pt;}
.ws1d{word-spacing:-18.720000pt;}
.ws1f{word-spacing:-18.400000pt;}
.ws20{word-spacing:-18.383467pt;}
.ws1c{word-spacing:-18.048000pt;}
.ws24{word-spacing:-16.640000pt;}
.ws22{word-spacing:-16.000000pt;}
.ws25{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.656000pt;}
.ws19{word-spacing:-14.377067pt;}
.ws16{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.782933pt;}
.ws18{word-spacing:-13.737067pt;}
.ws1a{word-spacing:-13.634667pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.112000pt;}
.ws6{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.440000pt;}
.wsd{word-spacing:-10.959467pt;}
.wsf{word-spacing:-10.881067pt;}
.ws11{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.wse{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.319467pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-12.843093pt;}
._16{margin-left:-11.467093pt;}
._14{margin-left:-9.710507pt;}
._2d{margin-left:-8.280107pt;}
._1d{margin-left:-7.081813pt;}
._4d{margin-left:-6.112000pt;}
._20{margin-left:-5.118293pt;}
._13{margin-left:-3.844267pt;}
._10{margin-left:-2.560853pt;}
._0{margin-left:-1.376000pt;}
._c{width:0.903040pt;}
._2{width:1.797120pt;}
._1{width:3.290880pt;}
._b{width:4.864000pt;}
._45{width:6.105173pt;}
._e{width:7.117653pt;}
._d{width:8.080427pt;}
._48{width:9.440640pt;}
._3b{width:10.443520pt;}
._11{width:12.191147pt;}
._12{width:13.141760pt;}
._5{width:14.352000pt;}
._f{width:15.310293pt;}
._8{width:16.693333pt;}
._7{width:18.170667pt;}
._6{width:19.200000pt;}
._42{width:20.975360pt;}
._25{width:22.576640pt;}
._1c{width:24.040960pt;}
._4f{width:25.258240pt;}
._18{width:26.350080pt;}
._17{width:27.261440pt;}
._19{width:28.469333pt;}
._44{width:29.954560pt;}
._2e{width:31.736320pt;}
._21{width:32.689920pt;}
._22{width:33.696000pt;}
._2a{width:35.096320pt;}
._28{width:36.632320pt;}
._27{width:38.152960pt;}
._34{width:39.191040pt;}
._1f{width:41.848747pt;}
._15{width:43.221760pt;}
._9{width:44.592000pt;}
._1b{width:46.456320pt;}
._39{width:47.626880pt;}
._26{width:48.689920pt;}
._50{width:50.347307pt;}
._4e{width:51.442560pt;}
._41{width:52.546560pt;}
._35{width:53.529600pt;}
._2f{width:54.461440pt;}
._30{width:56.011947pt;}
._49{width:57.296000pt;}
._3e{width:58.202880pt;}
._3f{width:59.441920pt;}
._40{width:60.769280pt;}
._37{width:61.895680pt;}
._23{width:62.877440pt;}
._24{width:63.776640pt;}
._4b{width:67.167360pt;}
._4c{width:68.871040pt;}
._3a{width:72.620800pt;}
._31{width:76.651520pt;}
._36{width:78.816000pt;}
._4{width:84.282667pt;}
._4a{width:88.208640pt;}
._a{width:92.554667pt;}
._3d{width:95.335253pt;}
._1e{width:96.350080pt;}
._3c{width:97.538560pt;}
._55{width:107.795840pt;}
._38{width:114.691840pt;}
._32{width:121.425920pt;}
._33{width:122.432000pt;}
._43{width:125.054720pt;}
._2b{width:140.993280pt;}
._2c{width:142.345173pt;}
._53{width:166.218667pt;}
._52{width:173.007787pt;}
._54{width:174.417920pt;}
._29{width:370.077867pt;}
._47{width:749.546667pt;}
._3{width:754.319360pt;}
._46{width:2021.146453pt;}
._51{width:2552.053333pt;}
.fs5{font-size:5.120000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsc{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fsb{font-size:117.120000pt;}
.fsd{font-size:128.000000pt;}
.y1af{bottom:-48.480000pt;}
.y1ae{bottom:-30.080000pt;}
.y1be{bottom:-13.920000pt;}
.y1ad{bottom:-11.680000pt;}
.y3{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:2.880000pt;}
.y1a5{bottom:4.000000pt;}
.y8{bottom:4.480000pt;}
.y5{bottom:5.632000pt;}
.y7{bottom:5.760000pt;}
.y1ac{bottom:6.720000pt;}
.y1a1{bottom:6.880000pt;}
.y199{bottom:8.000000pt;}
.y13{bottom:10.560000pt;}
.y1bd{bottom:15.680000pt;}
.y19d{bottom:16.832000pt;}
.y6b{bottom:18.240000pt;}
.y1a4{bottom:22.080000pt;}
.y1ab{bottom:25.120000pt;}
.y198{bottom:27.840000pt;}
.y70{bottom:28.960000pt;}
.y6a{bottom:32.960000pt;}
.y1bc{bottom:34.080000pt;}
.y19c{bottom:35.232000pt;}
.y19f{bottom:38.240000pt;}
.y1a3{bottom:40.360000pt;}
.y12{bottom:42.400000pt;}
.y1aa{bottom:44.960000pt;}
.y69{bottom:45.120000pt;}
.y197{bottom:47.680000pt;}
.y9{bottom:51.200000pt;}
.y1bb{bottom:52.480000pt;}
.y19b{bottom:53.632000pt;}
.y19a{bottom:54.400000pt;}
.y68{bottom:57.440000pt;}
.y6f{bottom:61.440000pt;}
.y1a9{bottom:63.400000pt;}
.y196{bottom:67.520000pt;}
.y67{bottom:69.600000pt;}
.y1ba{bottom:70.880000pt;}
.y6{bottom:74.592000pt;}
.y4{bottom:74.720000pt;}
.y1a8{bottom:81.800000pt;}
.y66{bottom:81.920000pt;}
.y11{bottom:84.000000pt;}
.y32{bottom:88.480000pt;}
.y6e{bottom:93.946667pt;}
.y65{bottom:94.240000pt;}
.y31{bottom:99.680000pt;}
.y1a7{bottom:100.200000pt;}
.y1b9{bottom:101.440000pt;}
.y2{bottom:103.872000pt;}
.y64{bottom:106.400000pt;}
.y10{bottom:114.746667pt;}
.y63{bottom:118.720000pt;}
.y1b8{bottom:119.840000pt;}
.y193{bottom:119.872000pt;}
.ya1{bottom:124.352000pt;}
.y147{bottom:130.112000pt;}
.y62{bottom:131.040000pt;}
.y30{bottom:131.680000pt;}
.y170{bottom:133.312000pt;}
.y1b7{bottom:138.240000pt;}
.ya0{bottom:140.506667pt;}
.y192{bottom:141.306667pt;}
.y61{bottom:143.200000pt;}
.yf{bottom:145.466667pt;}
.yd6{bottom:148.666667pt;}
.y14{bottom:148.826667pt;}
.y146{bottom:151.706667pt;}
.y16f{bottom:154.746667pt;}
.y60{bottom:155.560000pt;}
.y9f{bottom:156.506667pt;}
.y1b6{bottom:156.666667pt;}
.ye{bottom:159.066667pt;}
.yfe{bottom:160.826667pt;}
.y195{bottom:161.146667pt;}
.y191{bottom:162.746667pt;}
.yd5{bottom:164.826667pt;}
.y5f{bottom:167.880000pt;}
.y145{bottom:173.146667pt;}
.y1b5{bottom:175.066667pt;}
.y16e{bottom:176.186667pt;}
.y9e{bottom:176.506667pt;}
.yfd{bottom:176.986667pt;}
.y5e{bottom:180.040000pt;}
.y2f{bottom:180.520000pt;}
.yd4{bottom:180.986667pt;}
.y190{bottom:184.186667pt;}
.y9d{bottom:192.666667pt;}
.yfc{bottom:193.146667pt;}
.y5d{bottom:193.320000pt;}
.y1b4{bottom:193.466667pt;}
.y144{bottom:194.586667pt;}
.y16d{bottom:197.786667pt;}
.yd3{bottom:200.986667pt;}
.y18f{bottom:205.786667pt;}
.y5c{bottom:206.600000pt;}
.y9c{bottom:208.826667pt;}
.y1b3{bottom:211.866667pt;}
.y2e{bottom:212.520000pt;}
.yfb{bottom:213.146667pt;}
.y143{bottom:216.026667pt;}
.yd2{bottom:217.146667pt;}
.y5b{bottom:218.920000pt;}
.y16c{bottom:219.226667pt;}
.y18e{bottom:227.226667pt;}
.y9b{bottom:228.826667pt;}
.yfa{bottom:229.306667pt;}
.y1b2{bottom:230.266667pt;}
.y5a{bottom:231.080000pt;}
.yd1{bottom:233.306667pt;}
.y142{bottom:237.466667pt;}
.y16b{bottom:240.666667pt;}
.y59{bottom:243.400000pt;}
.y9a{bottom:244.986667pt;}
.y11d{bottom:245.626667pt;}
.y18d{bottom:248.666667pt;}
.yf9{bottom:249.306667pt;}
.yd0{bottom:253.306667pt;}
.y58{bottom:255.720000pt;}
.y141{bottom:258.906667pt;}
.y99{bottom:261.146667pt;}
.y16a{bottom:262.106667pt;}
.y1a2{bottom:263.706667pt;}
.yf8{bottom:265.466667pt;}
.y1b1{bottom:267.066667pt;}
.y57{bottom:267.880000pt;}
.ycf{bottom:269.466667pt;}
.y18c{bottom:270.106667pt;}
.y11c{bottom:279.066667pt;}
.y56{bottom:280.200000pt;}
.y140{bottom:280.346667pt;}
.y98{bottom:281.146667pt;}
.yf7{bottom:281.626667pt;}
.y2d{bottom:282.280000pt;}
.y184{bottom:283.546667pt;}
.yce{bottom:285.466667pt;}
.y169{bottom:291.546667pt;}
.y55{bottom:292.520000pt;}
.y97{bottom:297.306667pt;}
.ycd{bottom:301.666667pt;}
.y13f{bottom:301.986667pt;}
.y183{bottom:305.026667pt;}
.y54{bottom:305.480000pt;}
.y11b{bottom:311.906667pt;}
.y168{bottom:313.026667pt;}
.y96{bottom:313.506667pt;}
.y2c{bottom:314.600000pt;}
.y53{bottom:317.800000pt;}
.yf6{bottom:317.826667pt;}
.ycc{bottom:321.666667pt;}
.y13e{bottom:323.426667pt;}
.y182{bottom:326.626667pt;}
.y2b{bottom:328.520000pt;}
.y52{bottom:329.960000pt;}
.y95{bottom:333.506667pt;}
.yf5{bottom:333.986667pt;}
.y167{bottom:334.626667pt;}
.ycb{bottom:337.826667pt;}
.y11a{bottom:341.826667pt;}
.y2a{bottom:342.280000pt;}
.y13d{bottom:344.866667pt;}
.y181{bottom:348.066667pt;}
.y94{bottom:349.666667pt;}
.yf4{bottom:353.826667pt;}
.yca{bottom:353.986667pt;}
.y51{bottom:354.600000pt;}
.y29{bottom:356.040000pt;}
.y166{bottom:356.066667pt;}
.y119{bottom:357.986667pt;}
.y93{bottom:365.826667pt;}
.y13c{bottom:366.306667pt;}
.y50{bottom:366.760000pt;}
.y180{bottom:369.506667pt;}
.y28{bottom:369.800000pt;}
.yf3{bottom:369.986667pt;}
.yc9{bottom:373.986667pt;}
.y165{bottom:377.506667pt;}
.y4f{bottom:379.080000pt;}
.y27{bottom:383.720000pt;}
.y92{bottom:385.826667pt;}
.yf2{bottom:386.146667pt;}
.y13b{bottom:387.746667pt;}
.y1b0{bottom:389.506667pt;}
.yc8{bottom:390.146667pt;}
.y17f{bottom:390.946667pt;}
.y4e{bottom:391.426667pt;}
.y164{bottom:398.946667pt;}
.y91{bottom:401.986667pt;}
.y4d{bottom:403.586667pt;}
.y26{bottom:405.986667pt;}
.yf1{bottom:406.146667pt;}
.yc7{bottom:406.306667pt;}
.y13a{bottom:409.186667pt;}
.y118{bottom:410.146667pt;}
.y17e{bottom:412.386667pt;}
.y4c{bottom:415.906667pt;}
.y90{bottom:418.146667pt;}
.y163{bottom:420.386667pt;}
.yf0{bottom:422.306667pt;}
.yc6{bottom:426.306667pt;}
.y4b{bottom:428.066667pt;}
.y139{bottom:430.786667pt;}
.y17d{bottom:433.826667pt;}
.y8f{bottom:438.146667pt;}
.y25{bottom:438.306667pt;}
.yef{bottom:438.466667pt;}
.y4a{bottom:440.386667pt;}
.y162{bottom:441.826667pt;}
.yc5{bottom:442.466667pt;}
.y138{bottom:452.226667pt;}
.y49{bottom:452.706667pt;}
.y8e{bottom:454.306667pt;}
.y17c{bottom:455.266667pt;}
.yee{bottom:458.466667pt;}
.yc4{bottom:458.626667pt;}
.y24{bottom:460.706667pt;}
.y117{bottom:462.466667pt;}
.y161{bottom:463.266667pt;}
.y48{bottom:464.866667pt;}
.y8d{bottom:470.466667pt;}
.y137{bottom:473.666667pt;}
.yed{bottom:474.626667pt;}
.y17b{bottom:476.866667pt;}
.y47{bottom:477.186667pt;}
.yc3{bottom:478.626667pt;}
.y160{bottom:484.866667pt;}
.y46{bottom:489.506667pt;}
.y8c{bottom:490.306667pt;}
.y23{bottom:493.346667pt;}
.yec{bottom:494.626667pt;}
.yc2{bottom:494.786667pt;}
.y136{bottom:495.106667pt;}
.y45{bottom:501.666667pt;}
.y15f{bottom:506.306667pt;}
.y8b{bottom:506.626667pt;}
.y22{bottom:508.386667pt;}
.yeb{bottom:510.786667pt;}
.yc1{bottom:510.946667pt;}
.y44{bottom:513.986667pt;}
.y18b{bottom:514.306667pt;}
.y116{bottom:514.786667pt;}
.y135{bottom:516.546667pt;}
.y21{bottom:522.466667pt;}
.y43{bottom:526.306667pt;}
.y8a{bottom:526.626667pt;}
.yea{bottom:526.946667pt;}
.y15e{bottom:527.746667pt;}
.yc0{bottom:530.946667pt;}
.y18a{bottom:535.746667pt;}
.y20{bottom:537.506667pt;}
.y134{bottom:538.013333pt;}
.y42{bottom:538.466667pt;}
.y89{bottom:542.813333pt;}
.ye9{bottom:546.973333pt;}
.ybf{bottom:547.133333pt;}
.y15d{bottom:549.213333pt;}
.y41{bottom:550.786667pt;}
.y115{bottom:550.973333pt;}
.y1f{bottom:551.586667pt;}
.y189{bottom:557.213333pt;}
.y88{bottom:558.973333pt;}
.y133{bottom:559.453333pt;}
.y40{bottom:563.106667pt;}
.ye8{bottom:563.133333pt;}
.ybe{bottom:563.293333pt;}
.y1e{bottom:566.626667pt;}
.y114{bottom:567.133333pt;}
.y15c{bottom:570.653333pt;}
.y3f{bottom:575.266667pt;}
.y188{bottom:578.653333pt;}
.y87{bottom:578.973333pt;}
.ye7{bottom:579.293333pt;}
.y1d{bottom:580.706667pt;}
.y132{bottom:581.053333pt;}
.ybd{bottom:583.133333pt;}
.y113{bottom:583.293333pt;}
.y3e{bottom:587.586667pt;}
.y15b{bottom:592.093333pt;}
.y86{bottom:595.133333pt;}
.y1c{bottom:595.746667pt;}
.ybc{bottom:599.293333pt;}
.y3d{bottom:599.906667pt;}
.y187{bottom:600.093333pt;}
.y131{bottom:602.493333pt;}
.y112{bottom:603.293333pt;}
.y1b{bottom:609.826667pt;}
.y85{bottom:611.133333pt;}
.y3c{bottom:612.066667pt;}
.y15a{bottom:613.693333pt;}
.ybb{bottom:615.453333pt;}
.y111{bottom:619.453333pt;}
.y186{bottom:621.693333pt;}
.y130{bottom:623.933333pt;}
.y3b{bottom:624.386667pt;}
.y84{bottom:631.133333pt;}
.ye6{bottom:631.613333pt;}
.y1a{bottom:633.386667pt;}
.y159{bottom:635.133333pt;}
.yba{bottom:635.453333pt;}
.y110{bottom:635.613333pt;}
.y3a{bottom:636.746667pt;}
.y185{bottom:643.133333pt;}
.y12f{bottom:645.373333pt;}
.y83{bottom:647.293333pt;}
.y39{bottom:648.906667pt;}
.y19{bottom:650.506667pt;}
.yb9{bottom:651.613333pt;}
.y10f{bottom:655.613333pt;}
.y158{bottom:656.573333pt;}
.y82{bottom:663.453333pt;}
.y17a{bottom:664.573333pt;}
.y12e{bottom:666.813333pt;}
.yb8{bottom:667.773333pt;}
.y10e{bottom:671.773333pt;}
.y38{bottom:672.586667pt;}
.y157{bottom:678.013333pt;}
.y81{bottom:679.613333pt;}
.y18{bottom:682.666667pt;}
.y1a0{bottom:683.773333pt;}
.ye5{bottom:683.933333pt;}
.y179{bottom:686.013333pt;}
.yb7{bottom:687.773333pt;}
.y10d{bottom:687.933333pt;}
.y12d{bottom:688.253333pt;}
.y17{bottom:696.426667pt;}
.y156{bottom:699.453333pt;}
.y80{bottom:699.613333pt;}
.ye4{bottom:699.933333pt;}
.yb6{bottom:703.933333pt;}
.y37{bottom:703.946667pt;}
.y178{bottom:707.453333pt;}
.y10c{bottom:707.933333pt;}
.y12c{bottom:709.853333pt;}
.y16{bottom:710.186667pt;}
.y7f{bottom:715.773333pt;}
.y36{bottom:719.146667pt;}
.ye3{bottom:719.933333pt;}
.yb5{bottom:720.093333pt;}
.y1a6{bottom:720.413333pt;}
.y155{bottom:720.893333pt;}
.y10b{bottom:724.093333pt;}
.y177{bottom:728.893333pt;}
.y12b{bottom:731.293333pt;}
.y7e{bottom:731.933333pt;}
.y15{bottom:732.586667pt;}
.y35{bottom:734.506667pt;}
.ye2{bottom:736.093333pt;}
.yb4{bottom:740.093333pt;}
.y10a{bottom:740.253333pt;}
.y154{bottom:742.333333pt;}
.y34{bottom:749.866667pt;}
.y176{bottom:750.333333pt;}
.y33{bottom:751.146667pt;}
.y7d{bottom:751.933333pt;}
.ye1{bottom:752.253333pt;}
.y12a{bottom:752.733333pt;}
.yb3{bottom:756.253333pt;}
.y109{bottom:760.253333pt;}
.y153{bottom:763.933333pt;}
.y7c{bottom:768.093333pt;}
.y175{bottom:771.933333pt;}
.ye0{bottom:772.253333pt;}
.yb2{bottom:772.413333pt;}
.y129{bottom:774.213333pt;}
.y108{bottom:776.453333pt;}
.y152{bottom:785.413333pt;}
.y7b{bottom:788.133333pt;}
.ydf{bottom:788.453333pt;}
.yb1{bottom:792.453333pt;}
.y107{bottom:792.613333pt;}
.y174{bottom:793.413333pt;}
.y128{bottom:795.653333pt;}
.y7a{bottom:804.293333pt;}
.yde{bottom:804.613333pt;}
.y151{bottom:806.853333pt;}
.yb0{bottom:808.613333pt;}
.y106{bottom:812.453333pt;}
.y173{bottom:814.853333pt;}
.y127{bottom:817.093333pt;}
.y79{bottom:820.453333pt;}
.ydd{bottom:824.613333pt;}
.yaf{bottom:824.773333pt;}
.y150{bottom:828.293333pt;}
.y105{bottom:828.613333pt;}
.y172{bottom:836.293333pt;}
.y126{bottom:838.533333pt;}
.y78{bottom:840.453333pt;}
.ydc{bottom:840.773333pt;}
.yae{bottom:844.773333pt;}
.y14f{bottom:849.733333pt;}
.y77{bottom:856.613333pt;}
.ydb{bottom:856.933333pt;}
.y171{bottom:857.733333pt;}
.y125{bottom:860.133333pt;}
.yad{bottom:860.933333pt;}
.y76{bottom:872.613333pt;}
.yda{bottom:876.933333pt;}
.yac{bottom:877.093333pt;}
.y19e{bottom:878.053333pt;}
.y14e{bottom:879.173333pt;}
.y104{bottom:880.933333pt;}
.y124{bottom:883.333333pt;}
.y75{bottom:888.773333pt;}
.yd9{bottom:893.093333pt;}
.yab{bottom:897.093333pt;}
.y14d{bottom:900.773333pt;}
.y74{bottom:908.773333pt;}
.y123{bottom:910.053333pt;}
.yd{bottom:911.173333pt;}
.yd8{bottom:913.093333pt;}
.yaa{bottom:913.253333pt;}
.y14c{bottom:922.213333pt;}
.y73{bottom:924.933333pt;}
.y6d{bottom:928.453333pt;}
.ya9{bottom:929.253333pt;}
.y122{bottom:931.493333pt;}
.y103{bottom:933.253333pt;}
.y14b{bottom:943.653333pt;}
.yd7{bottom:945.413333pt;}
.ya8{bottom:949.253333pt;}
.y102{bottom:949.413333pt;}
.y72{bottom:954.213333pt;}
.y121{bottom:954.693333pt;}
.y14a{bottom:965.093333pt;}
.ya7{bottom:965.413333pt;}
.y101{bottom:965.573333pt;}
.ya6{bottom:981.573333pt;}
.y120{bottom:983.173333pt;}
.y100{bottom:985.573333pt;}
.y149{bottom:986.533333pt;}
.y194{bottom:995.653333pt;}
.y71{bottom:997.573333pt;}
.ya5{bottom:1001.573333pt;}
.yff{bottom:1001.733333pt;}
.y11f{bottom:1006.373333pt;}
.y148{bottom:1007.973333pt;}
.ya4{bottom:1017.760000pt;}
.y11e{bottom:1029.600000pt;}
.ya2{bottom:1031.680000pt;}
.yc{bottom:1033.120000pt;}
.ya3{bottom:1033.920000pt;}
.yb{bottom:1058.560000pt;}
.y1{bottom:1063.840000pt;}
.ya{bottom:1069.440000pt;}
.ha{height:4.315000pt;}
.h3{height:7.520000pt;}
.h1d{height:15.360000pt;}
.h5{height:19.680000pt;}
.h9{height:22.953125pt;}
.h26{height:24.320000pt;}
.h15{height:38.441250pt;}
.h16{height:42.649687pt;}
.hc{height:43.031250pt;}
.h13{height:45.935313pt;}
.h14{height:47.621250pt;}
.h4{height:47.742188pt;}
.h1c{height:48.702500pt;}
.h6{height:49.148438pt;}
.h18{height:50.355000pt;}
.h12{height:50.916250pt;}
.h28{height:52.785000pt;}
.h29{height:52.834688pt;}
.h27{height:54.112000pt;}
.h2{height:54.390938pt;}
.h1b{height:56.017500pt;}
.h21{height:57.375000pt;}
.h8{height:58.563750pt;}
.h23{height:63.656250pt;}
.h24{height:64.480000pt;}
.h1f{height:64.752187pt;}
.h7{height:65.531250pt;}
.hf{height:67.128750pt;}
.h19{height:68.748750pt;}
.h10{height:70.157500pt;}
.he{height:73.607188pt;}
.h1e{height:81.046875pt;}
.h22{height:81.952000pt;}
.h20{height:82.400000pt;}
.h25{height:88.062500pt;}
.hd{height:95.816250pt;}
.h1a{height:101.279062pt;}
.h2a{height:115.072000pt;}
.h17{height:120.992000pt;}
.hb{height:170.266667pt;}
.h2b{height:281.946667pt;}
.h11{height:762.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:48.000000pt;}
.w9{width:139.226667pt;}
.w6{width:240.066667pt;}
.w4{width:320.866667pt;}
.w5{width:321.760000pt;}
.w3{width:321.826667pt;}
.w8{width:431.453333pt;}
.wb{width:439.453333pt;}
.wa{width:544.093333pt;}
.wd{width:644.773333pt;}
.we{width:654.053333pt;}
.wf{width:669.413333pt;}
.wc{width:793.759975pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.712000pt;}
.x23{left:9.600000pt;}
.x16{left:16.512000pt;}
.x2c{left:17.632000pt;}
.x2a{left:21.152000pt;}
.xd{left:24.000000pt;}
.x15{left:25.312000pt;}
.x2b{left:41.312000pt;}
.xa{left:46.720000pt;}
.x14{left:62.560000pt;}
.x27{left:64.160000pt;}
.x29{left:69.600000pt;}
.x26{left:70.560000pt;}
.x2{left:75.520000pt;}
.x12{left:104.026667pt;}
.x8{left:106.591988pt;}
.x13{left:109.626667pt;}
.x21{left:113.311988pt;}
.xb{left:120.026667pt;}
.x11{left:121.786667pt;}
.x19{left:124.351988pt;}
.x1a{left:149.946655pt;}
.x2d{left:167.706667pt;}
.x22{left:170.906667pt;}
.x6{left:184.226667pt;}
.x10{left:191.386667pt;}
.x9{left:193.306655pt;}
.xf{left:215.706667pt;}
.x24{left:225.146667pt;}
.x28{left:245.986667pt;}
.x17{left:277.026655pt;}
.xc{left:286.786667pt;}
.x18{left:289.026667pt;}
.x25{left:301.826641pt;}
.x7{left:305.186667pt;}
.x1b{left:307.106655pt;}
.x5{left:313.346667pt;}
.xe{left:334.786667pt;}
.x4{left:397.346667pt;}
.x1e{left:403.906655pt;}
.x1f{left:438.653322pt;}
.x1c{left:455.773322pt;}
.x1d{left:457.693322pt;}
.x1{left:573.053322pt;}
.x20{left:584.453322pt;}
}




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