
    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_4090ac1be37e6eb96f9f767f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.709473;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_6b8add9a658ad1fca1e5f0e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_1192c4e5e77b84fd00ef695f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_797a47d85034fd28079ba01c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_a50813e9460126a0d9372a4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890625;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_e2c5898d11ae12aeda3957b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_58c8bf110d3ddb4b6fd86dd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_e2c5898d11ae12aeda3957b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895000;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_1192c4e5e77b84fd00ef695f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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_797a47d85034fd28079ba01c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_6b8add9a658ad1fca1e5f0e2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_5ea71946f87a100f7e3d80ab.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_e8c828f9a55a0e320e0ceb06.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926270;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_6b8add9a658ad1fca1e5f0e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_1192c4e5e77b84fd00ef695f.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;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_058c357f389c55d1fabe2135.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.471000;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_e2c5898d11ae12aeda3957b2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895000;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;}
.m8{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m7{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:-12.239995px;}
.v2{vertical-align:-7.199997px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.359989px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.004308px;}
.ls6{letter-spacing:0.007209px;}
.ls13{letter-spacing:0.112980px;}
.ls5{letter-spacing:0.115860px;}
.ls1b{letter-spacing:0.182856px;}
.ls2{letter-spacing:0.182940px;}
.ls19{letter-spacing:0.183560px;}
.ls12{letter-spacing:0.183660px;}
.ls10{letter-spacing:0.264780px;}
.ls7{letter-spacing:0.266940px;}
.ls1{letter-spacing:0.347940px;}
.ls8{letter-spacing:0.362184px;}
.ls0{letter-spacing:0.365820px;}
.lsf{letter-spacing:0.367260px;}
.ls11{letter-spacing:0.367296px;}
.ls15{letter-spacing:0.903840px;}
.ls14{letter-spacing:2.344139px;}
.ls16{letter-spacing:3.064319px;}
.lsd{letter-spacing:4.324558px;}
.lsc{letter-spacing:5.044678px;}
.ls9{letter-spacing:7.205157px;}
.ls17{letter-spacing:8.825696px;}
.lse{letter-spacing:10.805936px;}
.lsb{letter-spacing:12.246235px;}
.ls1a{letter-spacing:16.027434px;}
.lsa{letter-spacing:18.727673px;}
.ls18{letter-spacing:24.669530px;}
.ls3{letter-spacing:28.989408px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-46.433501px;}
.ws2{word-spacing:-39.720224px;}
.ws7{word-spacing:-16.567202px;}
.ws4{word-spacing:-16.559993px;}
.ws8{word-spacing:-14.939994px;}
.ws0{word-spacing:-13.499995px;}
.ws1{word-spacing:-12.779995px;}
.wsa{word-spacing:-12.059995px;}
.ws5{word-spacing:-10.612796px;}
.ws6{word-spacing:-10.439996px;}
.wsb{word-spacing:-9.719996px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.668839px;}
._1{width:1.005910px;}
._4{width:2.139233px;}
._8{width:3.323493px;}
._7{width:4.410510px;}
._9{width:5.905710px;}
._3{width:7.152652px;}
._2{width:8.602560px;}
._b{width:10.043831px;}
._a{width:11.385774px;}
._f{width:12.709623px;}
._c{width:13.955632px;}
._10{width:15.488904px;}
._1b{width:16.723687px;}
._d{width:17.824316px;}
._e{width:19.066245px;}
._1a{width:20.267285px;}
._19{width:21.914293px;}
._11{width:22.992598px;}
._12{width:24.827107px;}
._1e{width:25.951282px;}
._1d{width:27.035578px;}
._5{width:28.498076px;}
._6{width:29.644258px;}
._23{width:34.333871px;}
._22{width:35.508827px;}
._21{width:36.988020px;}
._48{width:38.203688px;}
._43{width:39.425135px;}
._1c{width:41.266271px;}
._20{width:44.068077px;}
._1f{width:45.580820px;}
._46{width:50.446850px;}
._47{width:51.803279px;}
._28{width:54.552196px;}
._24{width:72.409795px;}
._4d{width:73.626310px;}
._62{width:78.667513px;}
._52{width:81.768333px;}
._5d{width:86.809536px;}
._41{width:89.976204px;}
._44{width:91.850549px;}
._45{width:94.731354px;}
._4f{width:97.063843px;}
._5f{width:100.652663px;}
._4b{width:102.922189px;}
._4e{width:104.813832px;}
._5b{width:107.243220px;}
._50{width:108.414691px;}
._58{width:109.444272px;}
._53{width:110.603093px;}
._64{width:112.015550px;}
._57{width:114.083113px;}
._4a{width:115.112693px;}
._60{width:116.204416px;}
._5e{width:118.211358px;}
._5a{width:120.153896px;}
._15{width:123.516884px;}
._16{width:127.118087px;}
._17{width:136.480018px;}
._2f{width:141.713787px;}
._59{width:150.472417px;}
._3a{width:153.590780px;}
._33{width:156.119492px;}
._13{width:157.965087px;}
._18{width:167.885504px;}
._49{width:175.678432px;}
._14{width:177.865105px;}
._61{width:180.465798px;}
._3c{width:186.467085px;}
._2c{width:209.547620px;}
._26{width:210.669089px;}
._5c{width:212.507678px;}
._27{width:216.711464px;}
._3b{width:219.408152px;}
._39{width:230.519788px;}
._54{width:233.758513px;}
._55{width:241.680404px;}
._4c{width:259.132743px;}
._56{width:263.050715px;}
._34{width:265.931054px;}
._51{width:267.054633px;}
._38{width:272.954530px;}
._63{width:275.046254px;}
._2d{width:283.297447px;}
._31{width:297.342383px;}
._30{width:298.962962px;}
._37{width:308.003591px;}
._2e{width:310.752992px;}
._2b{width:311.906340px;}
._3d{width:317.592953px;}
._40{width:321.263160px;}
._3e{width:329.518188px;}
._42{width:341.265560px;}
._35{width:348.235575px;}
._32{width:356.243583px;}
._3f{width:360.478296px;}
._36{width:361.598118px;}
._29{width:402.599696px;}
._2a{width:425.638919px;}
._25{width:427.973802px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,8,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.759998px;}
.fs4{font-size:23.759990px;}
.fs2{font-size:30.239988px;}
.fsa{font-size:38.879984px;}
.fs8{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs6{font-size:51.119980px;}
.fs3{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y177{bottom:2.519976px;}
.y144{bottom:2.519985px;}
.y17b{bottom:2.519987px;}
.y147{bottom:2.519996px;}
.y14a{bottom:2.520007px;}
.y14d{bottom:2.520018px;}
.y14f{bottom:2.520029px;}
.y152{bottom:2.520040px;}
.y154{bottom:2.520051px;}
.y161{bottom:2.520148px;}
.y166{bottom:2.520175px;}
.y1a9{bottom:2.699968px;}
.y17d{bottom:2.699982px;}
.y192{bottom:2.700079px;}
.y180{bottom:2.879996px;}
.y183{bottom:2.880008px;}
.y186{bottom:2.880019px;}
.y189{bottom:2.880031px;}
.y12b{bottom:3.600099px;}
.ye{bottom:59.641176px;}
.yd{bottom:73.321171px;}
.yc{bottom:87.181165px;}
.yd7{bottom:92.581463px;}
.y13e{bottom:96.181462px;}
.y1a5{bottom:97.801461px;}
.yb{bottom:99.781160px;}
.yac{bottom:100.681460px;}
.yda{bottom:104.821158px;}
.y93{bottom:104.821458px;}
.y12e{bottom:106.081458px;}
.ya{bottom:107.881157px;}
.y171{bottom:108.061157px;}
.yba{bottom:108.241457px;}
.y6b{bottom:108.961456px;}
.yfe{bottom:111.121456px;}
.yd6{bottom:111.661455px;}
.y13d{bottom:115.081454px;}
.y1a4{bottom:116.701453px;}
.yab{bottom:119.581452px;}
.y9{bottom:120.481152px;}
.y129{bottom:123.361151px;}
.y12d{bottom:123.361451px;}
.yd9{bottom:123.721151px;}
.y92{bottom:123.721451px;}
.y170{bottom:124.981450px;}
.yb9{bottom:127.141449px;}
.y6a{bottom:128.041449px;}
.yfd{bottom:128.401449px;}
.yd5{bottom:130.561448px;}
.y13c{bottom:133.981446px;}
.y1a3{bottom:135.781446px;}
.yaa{bottom:138.481445px;}
.y128{bottom:140.461144px;}
.y12c{bottom:140.461444px;}
.yd8{bottom:142.621143px;}
.y91{bottom:142.621443px;}
.y3b{bottom:143.161143px;}
.yfc{bottom:145.681442px;}
.yb8{bottom:146.221442px;}
.y69{bottom:146.941441px;}
.yd4{bottom:149.641440px;}
.y13b{bottom:153.061439px;}
.y1a2{bottom:154.681438px;}
.y16f{bottom:156.121438px;}
.ya9{bottom:157.561437px;}
.y3a{bottom:157.741437px;}
.y90{bottom:161.701435px;}
.yfb{bottom:162.961435px;}
.yb7{bottom:165.121434px;}
.y68{bottom:166.021434px;}
.yd3{bottom:168.541433px;}
.y16e{bottom:171.601431px;}
.y13a{bottom:171.961431px;}
.y39{bottom:172.321431px;}
.y1a1{bottom:173.581431px;}
.y127{bottom:175.021430px;}
.ya8{bottom:176.461429px;}
.yfa{bottom:180.241428px;}
.y8f{bottom:180.601428px;}
.yb6{bottom:184.021426px;}
.y67{bottom:184.921426px;}
.y38{bottom:187.081425px;}
.yd2{bottom:187.441425px;}
.y139{bottom:191.041424px;}
.y126{bottom:192.301423px;}
.y1a0{bottom:192.661423px;}
.y16d{bottom:193.561423px;}
.ya7{bottom:195.001422px;}
.yf9{bottom:197.521421px;}
.y8e{bottom:199.681420px;}
.y37{bottom:201.661419px;}
.yb5{bottom:203.101419px;}
.y66{bottom:204.001418px;}
.yd1{bottom:206.521417px;}
.y125{bottom:209.581416px;}
.y138{bottom:209.941416px;}
.ya6{bottom:210.841416px;}
.ya5{bottom:212.281415px;}
.y16c{bottom:214.261414px;}
.yf8{bottom:214.621414px;}
.y36{bottom:216.421413px;}
.y8d{bottom:218.581413px;}
.yb4{bottom:222.001411px;}
.y65{bottom:222.901411px;}
.yd0{bottom:225.421410px;}
.y124{bottom:226.681409px;}
.ya4{bottom:228.121409px;}
.y137{bottom:228.841408px;}
.ya3{bottom:229.561408px;}
.y35{bottom:231.001408px;}
.y19f{bottom:231.541407px;}
.yf7{bottom:231.901407px;}
.y16b{bottom:234.961406px;}
.y8c{bottom:237.481405px;}
.yb3{bottom:241.081404px;}
.y64{bottom:241.801403px;}
.y123{bottom:243.961402px;}
.ycf{bottom:244.501402px;}
.ya2{bottom:245.401402px;}
.y34{bottom:245.761402px;}
.ya1{bottom:246.841401px;}
.y136{bottom:247.921401px;}
.yf6{bottom:249.181400px;}
.y19e{bottom:254.941398px;}
.y16a{bottom:255.661398px;}
.y8b{bottom:256.561397px;}
.yb2{bottom:259.981396px;}
.y33{bottom:260.341396px;}
.y63{bottom:260.881396px;}
.y122{bottom:261.241396px;}
.ya0{bottom:262.501395px;}
.yce{bottom:263.401395px;}
.y9f{bottom:263.941394px;}
.yf5{bottom:266.461393px;}
.y135{bottom:266.821393px;}
.y32{bottom:275.101390px;}
.y8a{bottom:275.461390px;}
.y169{bottom:276.361389px;}
.y121{bottom:278.521389px;}
.yb1{bottom:278.881388px;}
.y62{bottom:279.781388px;}
.y9e{bottom:281.221388px;}
.ycd{bottom:282.481387px;}
.yf4{bottom:283.741387px;}
.y134{bottom:285.901386px;}
.y31{bottom:290.581384px;}
.y89{bottom:294.541382px;}
.y120{bottom:295.801382px;}
.y168{bottom:297.061381px;}
.yb0{bottom:297.421381px;}
.y9d{bottom:298.501381px;}
.y61{bottom:298.861380px;}
.yf3{bottom:301.021380px;}
.ycc{bottom:301.381379px;}
.y19d{bottom:301.921379px;}
.y133{bottom:304.801378px;}
.y165{bottom:309.121200px;}
.y30{bottom:309.481376px;}
.y11f{bottom:313.081375px;}
.y88{bottom:313.441375px;}
.y9c{bottom:314.341374px;}
.yaf{bottom:314.701374px;}
.y9b{bottom:315.781374px;}
.y60{bottom:317.761373px;}
.yf2{bottom:318.121373px;}
.y167{bottom:318.481373px;}
.ycb{bottom:320.281372px;}
.y132{bottom:323.881370px;}
.y164{bottom:325.501370px;}
.y2f{bottom:327.661369px;}
.y11e{bottom:330.181368px;}
.y9a{bottom:331.621367px;}
.y87{bottom:332.341367px;}
.y99{bottom:333.061367px;}
.yf1{bottom:335.401366px;}
.y5f{bottom:336.661365px;}
.yca{bottom:339.361364px;}
.y2e{bottom:342.241363px;}
.y131{bottom:342.781363px;}
.y163{bottom:345.301362px;}
.y11d{bottom:347.461361px;}
.y19c{bottom:348.901360px;}
.y98{bottom:350.341360px;}
.y86{bottom:351.421359px;}
.yf0{bottom:352.681359px;}
.y5e{bottom:355.741358px;}
.y2d{bottom:357.001357px;}
.yc9{bottom:358.261357px;}
.y130{bottom:361.681355px;}
.y11c{bottom:364.741354px;}
.y162{bottom:365.281354px;}
.y97{bottom:367.981353px;}
.yef{bottom:369.961352px;}
.y85{bottom:370.321352px;}
.y19b{bottom:371.041352px;}
.y2c{bottom:371.581351px;}
.y5d{bottom:374.641350px;}
.y160{bottom:377.341200px;}
.yc8{bottom:377.341349px;}
.y12f{bottom:380.761348px;}
.y11b{bottom:382.021347px;}
.y95{bottom:385.621346px;}
.y2b{bottom:386.341345px;}
.yee{bottom:387.241345px;}
.y96{bottom:387.601345px;}
.y94{bottom:389.041344px;}
.y84{bottom:389.401344px;}
.y19a{bottom:390.481344px;}
.y5c{bottom:393.721343px;}
.yc7{bottom:396.241342px;}
.y11a{bottom:399.301340px;}
.y15f{bottom:400.561340px;}
.y2a{bottom:400.921340px;}
.yed{bottom:404.341338px;}
.y83{bottom:408.301337px;}
.y5b{bottom:412.621335px;}
.y199{bottom:413.881334px;}
.yc6{bottom:415.141334px;}
.y29{bottom:415.681334px;}
.y119{bottom:416.581333px;}
.y15e{bottom:421.261331px;}
.yec{bottom:421.621331px;}
.y82{bottom:427.201329px;}
.y28{bottom:430.261328px;}
.y5a{bottom:431.521327px;}
.y118{bottom:433.681327px;}
.yc5{bottom:434.221326px;}
.y198{bottom:437.461325px;}
.yeb{bottom:438.901324px;}
.y15d{bottom:441.961323px;}
.y27{bottom:445.021322px;}
.y81{bottom:446.281321px;}
.y59{bottom:450.601320px;}
.y117{bottom:450.961320px;}
.yc4{bottom:453.121319px;}
.yea{bottom:456.181318px;}
.y26{bottom:459.601316px;}
.y197{bottom:460.861316px;}
.y15c{bottom:462.661315px;}
.y80{bottom:465.181314px;}
.y116{bottom:468.241313px;}
.y58{bottom:469.501312px;}
.yc3{bottom:472.201311px;}
.ye9{bottom:473.461311px;}
.y25{bottom:474.181310px;}
.y1b9{bottom:476.521309px;}
.y15b{bottom:483.361307px;}
.y7f{bottom:484.261306px;}
.y196{bottom:484.441306px;}
.y115{bottom:485.521306px;}
.y57{bottom:488.581305px;}
.y24{bottom:488.941304px;}
.ye8{bottom:490.741304px;}
.yc2{bottom:491.101304px;}
.y1b8{bottom:493.441303px;}
.y12a{bottom:499.201200px;}
.y114{bottom:502.801299px;}
.y7e{bottom:503.161299px;}
.y15a{bottom:503.341299px;}
.y23{bottom:503.521299px;}
.y56{bottom:507.481297px;}
.ye7{bottom:507.841297px;}
.yc1{bottom:510.001296px;}
.y1b7{bottom:514.141294px;}
.y22{bottom:518.281293px;}
.y113{bottom:520.081292px;}
.y7d{bottom:522.061291px;}
.y159{bottom:523.321291px;}
.ye6{bottom:525.121290px;}
.y55{bottom:526.381289px;}
.y195{bottom:527.461289px;}
.yc0{bottom:529.081288px;}
.y21{bottom:532.861287px;}
.y112{bottom:537.181285px;}
.y158{bottom:538.621285px;}
.y7c{bottom:541.141284px;}
.ye5{bottom:542.401283px;}
.y54{bottom:544.561282px;}
.y20{bottom:547.621281px;}
.ybf{bottom:547.981281px;}
.y191{bottom:550.501200px;}
.y194{bottom:550.501280px;}
.y190{bottom:553.201279px;}
.y111{bottom:554.461278px;}
.y157{bottom:556.621277px;}
.y53{bottom:559.141276px;}
.ye4{bottom:559.681276px;}
.y7b{bottom:560.041276px;}
.y1b6{bottom:560.401276px;}
.y1f{bottom:562.201275px;}
.y193{bottom:564.361274px;}
.ybb{bottom:565.981274px;}
.ybe{bottom:567.061273px;}
.y110{bottom:571.741271px;}
.y156{bottom:573.721271px;}
.y52{bottom:573.901270px;}
.y1e{bottom:576.961269px;}
.y7a{bottom:579.121268px;}
.y18f{bottom:579.661268px;}
.y1b5{bottom:583.621267px;}
.ybd{bottom:585.241266px;}
.y51{bottom:588.481265px;}
.y10f{bottom:589.021264px;}
.y155{bottom:590.641264px;}
.y1d{bottom:591.541263px;}
.ye3{bottom:594.241262px;}
.y18d{bottom:596.941261px;}
.y79{bottom:598.021261px;}
.ybc{bottom:600.721260px;}
.y18e{bottom:602.161259px;}
.y50{bottom:603.241259px;}
.y1c{bottom:606.121258px;}
.y10e{bottom:606.301257px;}
.y1b4{bottom:606.841257px;}
.ye2{bottom:611.341255px;}
.y18c{bottom:614.041254px;}
.y78{bottom:617.101253px;}
.y4f{bottom:617.821253px;}
.y153{bottom:619.621200px;}
.y1b{bottom:620.881252px;}
.y10d{bottom:623.401251px;}
.ye1{bottom:628.621249px;}
.y1b3{bottom:629.881248px;}
.y18b{bottom:631.321247px;}
.y4e{bottom:632.581247px;}
.y1a{bottom:635.461246px;}
.y77{bottom:636.001246px;}
.y10c{bottom:640.681244px;}
.ye0{bottom:645.901242px;}
.y1b2{bottom:646.621200px;}
.y151{bottom:647.161200px;}
.y4d{bottom:647.161241px;}
.y18a{bottom:648.241241px;}
.y19{bottom:650.221240px;}
.y76{bottom:654.901238px;}
.y10b{bottom:657.961237px;}
.y4c{bottom:661.921235px;}
.ydf{bottom:663.181235px;}
.y150{bottom:663.541235px;}
.y18{bottom:664.801234px;}
.y1b1{bottom:668.401233px;}
.y188{bottom:669.121200px;}
.y187{bottom:672.001231px;}
.y75{bottom:673.981230px;}
.y14e{bottom:674.881200px;}
.y10a{bottom:675.241230px;}
.y4b{bottom:676.501229px;}
.y17{bottom:679.561228px;}
.yde{bottom:680.461228px;}
.y4a{bottom:691.081224px;}
.y1b0{bottom:691.621223px;}
.y109{bottom:692.521223px;}
.y74{bottom:692.881223px;}
.y16{bottom:694.141222px;}
.ydd{bottom:697.741221px;}
.y185{bottom:698.461200px;}
.y184{bottom:701.341219px;}
.y14c{bottom:702.421200px;}
.y49{bottom:705.841218px;}
.y15{bottom:708.901216px;}
.y108{bottom:709.801216px;}
.y73{bottom:711.961215px;}
.ydc{bottom:714.841214px;}
.y14b{bottom:718.621213px;}
.y48{bottom:720.421212px;}
.y14{bottom:723.481211px;}
.y107{bottom:726.901209px;}
.y182{bottom:727.621200px;}
.y149{bottom:729.961200px;}
.y181{bottom:730.501208px;}
.y72{bottom:730.861208px;}
.ydb{bottom:732.121207px;}
.y47{bottom:735.181206px;}
.y1af{bottom:737.881205px;}
.y13{bottom:738.241205px;}
.y106{bottom:744.181202px;}
.y148{bottom:746.341201px;}
.y46{bottom:749.761200px;}
.y12{bottom:752.821199px;}
.yae{bottom:755.701198px;}
.y17f{bottom:756.961200px;}
.y146{bottom:757.501200px;}
.y17e{bottom:759.841196px;}
.y1ae{bottom:761.101196px;}
.y105{bottom:761.461195px;}
.y45{bottom:764.521194px;}
.y11{bottom:767.401193px;}
.y71{bottom:768.841192px;}
.y145{bottom:773.881190px;}
.yad{bottom:774.781190px;}
.y104{bottom:778.741189px;}
.y44{bottom:779.101188px;}
.y17a{bottom:779.641200px;}
.yf{bottom:782.341187px;}
.y10{bottom:783.601187px;}
.y1ad{bottom:784.321186px;}
.y143{bottom:785.941200px;}
.y70{bottom:787.741185px;}
.y17c{bottom:793.321200px;}
.y43{bottom:793.861182px;}
.y103{bottom:796.021182px;}
.y8{bottom:796.561181px;}
.y142{bottom:803.761178px;}
.y1ac{bottom:804.661178px;}
.y6f{bottom:806.821177px;}
.y176{bottom:808.081200px;}
.y42{bottom:808.441177px;}
.y7{bottom:808.801176px;}
.y102{bottom:813.301175px;}
.y179{bottom:819.421172px;}
.y141{bottom:821.041172px;}
.y41{bottom:823.021171px;}
.y6e{bottom:825.721170px;}
.y174{bottom:826.261169px;}
.y6{bottom:826.621169px;}
.y1ab{bottom:828.061169px;}
.y1a8{bottom:828.421200px;}
.y175{bottom:828.961168px;}
.y101{bottom:830.401168px;}
.y1a7{bottom:831.121168px;}
.y178{bottom:833.101167px;}
.y40{bottom:837.781165px;}
.y140{bottom:838.141165px;}
.y1aa{bottom:841.921163px;}
.y5{bottom:842.101163px;}
.y6d{bottom:844.621162px;}
.y100{bottom:847.681161px;}
.y3f{bottom:852.361159px;}
.y4{bottom:855.421158px;}
.y173{bottom:857.221157px;}
.y6c{bottom:863.701155px;}
.yff{bottom:864.961154px;}
.y3e{bottom:867.121153px;}
.y3{bottom:871.981151px;}
.y13f{bottom:873.241151px;}
.y172{bottom:874.501150px;}
.y1a6{bottom:879.721148px;}
.y2{bottom:882.421147px;}
.y3d{bottom:888.361145px;}
.y1{bottom:901.861139px;}
.y3c{bottom:907.621137px;}
.h13{height:3.839061px;}
.h21{height:13.320000px;}
.h20{height:13.500000px;}
.h23{height:13.680000px;}
.h9{height:16.346873px;}
.h1e{height:16.920000px;}
.h3{height:20.509445px;}
.h8{height:20.805112px;}
.h4{height:21.561111px;}
.h1b{height:26.749429px;}
.h19{height:28.730869px;}
.h24{height:33.092627px;}
.hb{height:33.189107px;}
.h18{height:34.036510px;}
.hc{height:34.395106px;}
.h11{height:35.068306px;}
.hf{height:35.170546px;}
.hd{height:36.448545px;}
.h6{height:37.151985px;}
.h5{height:38.501985px;}
.h1f{height:40.995344px;}
.h1a{height:41.114864px;}
.ha{height:42.233538px;}
.h1d{height:42.608863px;}
.h7{height:44.149201px;}
.he{height:44.754943px;}
.h2{height:44.925451px;}
.h16{height:45.440622px;}
.h10{height:45.553693px;}
.h14{height:45.573102px;}
.h17{height:46.736700px;}
.h12{height:47.229101px;}
.h1c{height:52.319159px;}
.h1{height:57.133454px;}
.h15{height:57.992321px;}
.h22{height:61.755095px;}
.h0{height:973.500000px;}
.wf{width:1.980000px;}
.w11{width:2.160000px;}
.w19{width:2.700000px;}
.w1a{width:3.060000px;}
.w18{width:3.420000px;}
.w1c{width:3.780000px;}
.w16{width:4.140000px;}
.w17{width:4.500000px;}
.w3{width:5.940000px;}
.w15{width:7.380000px;}
.w12{width:11.700000px;}
.wb{width:18.000000px;}
.w13{width:19.080000px;}
.wd{width:25.380000px;}
.wa{width:27.360000px;}
.wc{width:30.060000px;}
.w9{width:30.600000px;}
.w10{width:36.720000px;}
.w1b{width:42.840000px;}
.w5{width:46.620000px;}
.we{width:50.760000px;}
.w8{width:52.740000px;}
.w14{width:58.680000px;}
.w6{width:65.700000px;}
.w4{width:75.240000px;}
.w1{width:81.540000px;}
.w2{width:84.060000px;}
.w7{width:112.320000px;}
.w0{width:688.500000px;}
.x0{left:0.000000px;}
.x8{left:93.239963px;}
.x3f{left:97.919961px;}
.x26{left:100.799960px;}
.x22{left:104.039958px;}
.x27{left:105.659958px;}
.x23{left:108.899956px;}
.xc{left:114.479954px;}
.x28{left:136.979945px;}
.x68{left:139.499944px;}
.x29{left:142.199943px;}
.x63{left:143.459943px;}
.x1d{left:147.240398px;}
.x2c{left:173.699931px;}
.x2d{left:178.919928px;}
.x4{left:184.132426px;}
.x33{left:187.740000px;}
.x44{left:214.920000px;}
.xd{left:217.260145px;}
.xa{left:231.839907px;}
.x5{left:238.679905px;}
.x45{left:265.680000px;}
.x47{left:267.660000px;}
.x36{left:268.920000px;}
.x69{left:270.360000px;}
.x46{left:274.679890px;}
.x1{left:278.099889px;}
.x41{left:280.620000px;}
.x2{left:284.219886px;}
.x61{left:287.459885px;}
.x6a{left:289.079884px;}
.x6{left:291.239186px;}
.x24{left:293.219883px;}
.x65{left:295.559882px;}
.x25{left:298.079881px;}
.x39{left:299.520000px;}
.x59{left:302.400000px;}
.x48{left:304.380000px;}
.x1e{left:305.459878px;}
.x49{left:306.540000px;}
.x5a{left:308.879876px;}
.x1f{left:310.319876px;}
.x40{left:314.099874px;}
.x37{left:315.540000px;}
.x4a{left:317.160000px;}
.x3a{left:318.420000px;}
.x38{left:321.660000px;}
.x4b{left:323.280000px;}
.x62{left:330.659868px;}
.xb{left:335.159866px;}
.x66{left:339.839864px;}
.x4c{left:342.360000px;}
.x3{left:344.159862px;}
.x5b{left:346.320000px;}
.x67{left:347.399861px;}
.x9{left:349.379860px;}
.x4d{left:353.159859px;}
.x43{left:357.119857px;}
.x42{left:362.159855px;}
.xe{left:366.839853px;}
.x6d{left:371.880000px;}
.xf{left:381.959847px;}
.x34{left:389.160000px;}
.x4e{left:393.840000px;}
.x7{left:396.899841px;}
.x19{left:398.879840px;}
.x1a{left:403.739839px;}
.x3b{left:410.580000px;}
.x2a{left:413.999834px;}
.x10{left:416.339833px;}
.x2b{left:419.219832px;}
.x3c{left:428.580000px;}
.x11{left:429.659828px;}
.x12{left:442.799823px;}
.x2e{left:448.559821px;}
.x4f{left:452.520000px;}
.x13{left:453.959818px;}
.x35{left:464.400000px;}
.x3d{left:470.700000px;}
.x20{left:473.939810px;}
.x21{left:478.799808px;}
.x14{left:482.399807px;}
.x6c{left:492.119803px;}
.x15{left:497.159801px;}
.x3e{left:500.760000px;}
.x50{left:505.440000px;}
.x52{left:507.420000px;}
.x16{left:510.659796px;}
.x6b{left:511.919795px;}
.x51{left:514.439794px;}
.x64{left:516.239794px;}
.x17{left:518.039793px;}
.x2f{left:529.919788px;}
.x30{left:538.559785px;}
.x5f{left:542.160000px;}
.x53{left:544.140000px;}
.x55{left:546.300000px;}
.x60{left:548.639781px;}
.x54{left:551.700000px;}
.x5c{left:554.580000px;}
.x56{left:556.920000px;}
.x5d{left:560.159776px;}
.x57{left:564.120000px;}
.x18{left:575.819770px;}
.x58{left:583.200000px;}
.x1b{left:586.079766px;}
.x5e{left:587.160000px;}
.x1c{left:590.939764px;}
.x31{left:595.079762px;}
.x32{left:598.680000px;}
@media print{
.v1{vertical-align:-10.879996pt;}
.v2{vertical-align:-6.399997pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.319990pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.003829pt;}
.ls6{letter-spacing:0.006408pt;}
.ls13{letter-spacing:0.100427pt;}
.ls5{letter-spacing:0.102987pt;}
.ls1b{letter-spacing:0.162539pt;}
.ls2{letter-spacing:0.162613pt;}
.ls19{letter-spacing:0.163164pt;}
.ls12{letter-spacing:0.163253pt;}
.ls10{letter-spacing:0.235360pt;}
.ls7{letter-spacing:0.237280pt;}
.ls1{letter-spacing:0.309280pt;}
.ls8{letter-spacing:0.321942pt;}
.ls0{letter-spacing:0.325173pt;}
.lsf{letter-spacing:0.326453pt;}
.ls11{letter-spacing:0.326485pt;}
.ls15{letter-spacing:0.803413pt;}
.ls14{letter-spacing:2.083679pt;}
.ls16{letter-spacing:2.723839pt;}
.lsd{letter-spacing:3.844052pt;}
.lsc{letter-spacing:4.484158pt;}
.ls9{letter-spacing:6.404584pt;}
.ls17{letter-spacing:7.845064pt;}
.lse{letter-spacing:9.605276pt;}
.lsb{letter-spacing:10.885542pt;}
.ls1a{letter-spacing:14.246608pt;}
.lsa{letter-spacing:16.646820pt;}
.ls18{letter-spacing:21.928471pt;}
.ls3{letter-spacing:25.768363pt;}
.ws9{word-spacing:-41.274223pt;}
.ws2{word-spacing:-35.306866pt;}
.ws7{word-spacing:-14.726402pt;}
.ws4{word-spacing:-14.719994pt;}
.ws8{word-spacing:-13.279995pt;}
.ws0{word-spacing:-11.999995pt;}
.ws1{word-spacing:-11.359995pt;}
.wsa{word-spacing:-10.719996pt;}
.ws5{word-spacing:-9.433596pt;}
.ws6{word-spacing:-9.279996pt;}
.wsb{word-spacing:-8.639997pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.483412pt;}
._1{width:0.894142pt;}
._4{width:1.901540pt;}
._8{width:2.954216pt;}
._7{width:3.920453pt;}
._9{width:5.249520pt;}
._3{width:6.357913pt;}
._2{width:7.646720pt;}
._b{width:8.927850pt;}
._a{width:10.120688pt;}
._f{width:11.297443pt;}
._c{width:12.405007pt;}
._10{width:13.767915pt;}
._1b{width:14.865500pt;}
._d{width:15.843837pt;}
._e{width:16.947773pt;}
._1a{width:18.015365pt;}
._19{width:19.479372pt;}
._11{width:20.437865pt;}
._12{width:22.068539pt;}
._1e{width:23.067807pt;}
._1d{width:24.031625pt;}
._5{width:25.331623pt;}
._6{width:26.350451pt;}
._23{width:30.518996pt;}
._22{width:31.563402pt;}
._21{width:32.878240pt;}
._48{width:33.958834pt;}
._43{width:35.044565pt;}
._1c{width:36.681130pt;}
._20{width:39.171624pt;}
._1f{width:40.516285pt;}
._46{width:44.841645pt;}
._47{width:46.047359pt;}
._28{width:48.490841pt;}
._24{width:64.364263pt;}
._4d{width:65.445609pt;}
._62{width:69.926678pt;}
._52{width:72.682963pt;}
._5d{width:77.164032pt;}
._41{width:79.978848pt;}
._44{width:81.644933pt;}
._45{width:84.205648pt;}
._4f{width:86.278972pt;}
._5f{width:89.469034pt;}
._4b{width:91.486390pt;}
._4e{width:93.167851pt;}
._5b{width:95.327307pt;}
._50{width:96.368614pt;}
._58{width:97.283797pt;}
._53{width:98.313860pt;}
._64{width:99.569378pt;}
._57{width:101.407211pt;}
._4a{width:102.322394pt;}
._60{width:103.292814pt;}
._5e{width:105.076763pt;}
._5a{width:106.803463pt;}
._15{width:109.792786pt;}
._16{width:112.993855pt;}
._17{width:121.315572pt;}
._2f{width:125.967811pt;}
._59{width:133.753260pt;}
._3a{width:136.525138pt;}
._33{width:138.772882pt;}
._13{width:140.413410pt;}
._18{width:149.231559pt;}
._49{width:156.158606pt;}
._14{width:158.102315pt;}
._61{width:160.414042pt;}
._3c{width:165.748520pt;}
._2c{width:186.264551pt;}
._26{width:187.261412pt;}
._5c{width:188.895714pt;}
._27{width:192.632412pt;}
._3b{width:195.029468pt;}
._39{width:204.906478pt;}
._54{width:207.785345pt;}
._55{width:214.827025pt;}
._4c{width:230.340216pt;}
._56{width:233.822858pt;}
._34{width:236.383159pt;}
._51{width:237.381896pt;}
._38{width:242.626249pt;}
._63{width:244.485559pt;}
._2d{width:251.819953pt;}
._31{width:264.304340pt;}
._30{width:265.744856pt;}
._37{width:273.780970pt;}
._2e{width:276.224882pt;}
._2b{width:277.250080pt;}
._3d{width:282.304847pt;}
._40{width:285.567253pt;}
._3e{width:292.905056pt;}
._42{width:303.347164pt;}
._35{width:309.542733pt;}
._32{width:316.660963pt;}
._3f{width:320.425152pt;}
._36{width:321.420549pt;}
._29{width:357.866396pt;}
._2a{width:378.345706pt;}
._25{width:380.421158pt;}
.fs7{font-size:5.119998pt;}
.fs4{font-size:21.119992pt;}
.fs2{font-size:26.879989pt;}
.fsa{font-size:34.559986pt;}
.fs8{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs6{font-size:45.439982pt;}
.fs3{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y177{bottom:2.239978pt;}
.y144{bottom:2.239986pt;}
.y17b{bottom:2.239989pt;}
.y147{bottom:2.239996pt;}
.y14a{bottom:2.240006pt;}
.y14d{bottom:2.240016pt;}
.y14f{bottom:2.240026pt;}
.y152{bottom:2.240036pt;}
.y154{bottom:2.240045pt;}
.y161{bottom:2.240132pt;}
.y166{bottom:2.240156pt;}
.y1a9{bottom:2.399971pt;}
.y17d{bottom:2.399984pt;}
.y192{bottom:2.400070pt;}
.y180{bottom:2.559997pt;}
.y183{bottom:2.560007pt;}
.y186{bottom:2.560017pt;}
.y189{bottom:2.560028pt;}
.y12b{bottom:3.200088pt;}
.ye{bottom:53.014379pt;}
.yd{bottom:65.174374pt;}
.yc{bottom:77.494369pt;}
.yd7{bottom:82.294634pt;}
.y13e{bottom:85.494632pt;}
.y1a5{bottom:86.934632pt;}
.yb{bottom:88.694365pt;}
.yac{bottom:89.494631pt;}
.yda{bottom:93.174363pt;}
.y93{bottom:93.174629pt;}
.y12e{bottom:94.294629pt;}
.ya{bottom:95.894362pt;}
.y171{bottom:96.054362pt;}
.yba{bottom:96.214628pt;}
.y6b{bottom:96.854628pt;}
.yfe{bottom:98.774627pt;}
.yd6{bottom:99.254627pt;}
.y13d{bottom:102.294626pt;}
.y1a4{bottom:103.734625pt;}
.yab{bottom:106.294624pt;}
.y9{bottom:107.094357pt;}
.y129{bottom:109.654356pt;}
.y12d{bottom:109.654623pt;}
.yd9{bottom:109.974356pt;}
.y92{bottom:109.974623pt;}
.y170{bottom:111.094622pt;}
.yb9{bottom:113.014621pt;}
.y6a{bottom:113.814621pt;}
.yfd{bottom:114.134621pt;}
.yd5{bottom:116.054620pt;}
.y13c{bottom:119.094619pt;}
.y1a3{bottom:120.694618pt;}
.yaa{bottom:123.094617pt;}
.y128{bottom:124.854350pt;}
.y12c{bottom:124.854617pt;}
.yd8{bottom:126.774349pt;}
.y91{bottom:126.774616pt;}
.y3b{bottom:127.254349pt;}
.yfc{bottom:129.494615pt;}
.yb8{bottom:129.974615pt;}
.y69{bottom:130.614614pt;}
.yd4{bottom:133.014613pt;}
.y13b{bottom:136.054612pt;}
.y1a2{bottom:137.494612pt;}
.y16f{bottom:138.774611pt;}
.ya9{bottom:140.054611pt;}
.y3a{bottom:140.214611pt;}
.y90{bottom:143.734609pt;}
.yfb{bottom:144.854609pt;}
.yb7{bottom:146.774608pt;}
.y68{bottom:147.574608pt;}
.yd3{bottom:149.814607pt;}
.y16e{bottom:152.534606pt;}
.y13a{bottom:152.854606pt;}
.y39{bottom:153.174605pt;}
.y1a1{bottom:154.294605pt;}
.y127{bottom:155.574604pt;}
.ya8{bottom:156.854604pt;}
.yfa{bottom:160.214603pt;}
.y8f{bottom:160.534602pt;}
.yb6{bottom:163.574601pt;}
.y67{bottom:164.374601pt;}
.y38{bottom:166.294600pt;}
.yd2{bottom:166.614600pt;}
.y139{bottom:169.814599pt;}
.y126{bottom:170.934598pt;}
.y1a0{bottom:171.254598pt;}
.y16d{bottom:172.054598pt;}
.ya7{bottom:173.334597pt;}
.yf9{bottom:175.574596pt;}
.y8e{bottom:177.494596pt;}
.y37{bottom:179.254595pt;}
.yb5{bottom:180.534594pt;}
.y66{bottom:181.334594pt;}
.yd1{bottom:183.574593pt;}
.y125{bottom:186.294592pt;}
.y138{bottom:186.614592pt;}
.ya6{bottom:187.414592pt;}
.ya5{bottom:188.694591pt;}
.y16c{bottom:190.454590pt;}
.yf8{bottom:190.774590pt;}
.y36{bottom:192.374590pt;}
.y8d{bottom:194.294589pt;}
.yb4{bottom:197.334588pt;}
.y65{bottom:198.134587pt;}
.yd0{bottom:200.374587pt;}
.y124{bottom:201.494586pt;}
.ya4{bottom:202.774586pt;}
.y137{bottom:203.414585pt;}
.ya3{bottom:204.054585pt;}
.y35{bottom:205.334585pt;}
.y19f{bottom:205.814584pt;}
.yf7{bottom:206.134584pt;}
.y16b{bottom:208.854583pt;}
.y8c{bottom:211.094582pt;}
.yb3{bottom:214.294581pt;}
.y64{bottom:214.934581pt;}
.y123{bottom:216.854580pt;}
.ycf{bottom:217.334580pt;}
.ya2{bottom:218.134579pt;}
.y34{bottom:218.454579pt;}
.ya1{bottom:219.414579pt;}
.y136{bottom:220.374579pt;}
.yf6{bottom:221.494578pt;}
.y19e{bottom:226.614576pt;}
.y16a{bottom:227.254576pt;}
.y8b{bottom:228.054575pt;}
.yb2{bottom:231.094574pt;}
.y33{bottom:231.414574pt;}
.y63{bottom:231.894574pt;}
.y122{bottom:232.214574pt;}
.ya0{bottom:233.334573pt;}
.yce{bottom:234.134573pt;}
.y9f{bottom:234.614573pt;}
.yf5{bottom:236.854572pt;}
.y135{bottom:237.174572pt;}
.y32{bottom:244.534569pt;}
.y8a{bottom:244.854569pt;}
.y169{bottom:245.654568pt;}
.y121{bottom:247.574568pt;}
.yb1{bottom:247.894568pt;}
.y62{bottom:248.694567pt;}
.y9e{bottom:249.974567pt;}
.ycd{bottom:251.094566pt;}
.yf4{bottom:252.214566pt;}
.y134{bottom:254.134565pt;}
.y31{bottom:258.294563pt;}
.y89{bottom:261.814562pt;}
.y120{bottom:262.934561pt;}
.y168{bottom:264.054561pt;}
.yb0{bottom:264.374561pt;}
.y9d{bottom:265.334561pt;}
.y61{bottom:265.654560pt;}
.yf3{bottom:267.574560pt;}
.ycc{bottom:267.894560pt;}
.y19d{bottom:268.374559pt;}
.y133{bottom:270.934558pt;}
.y165{bottom:274.774400pt;}
.y30{bottom:275.094557pt;}
.y11f{bottom:278.294555pt;}
.y88{bottom:278.614555pt;}
.y9c{bottom:279.414555pt;}
.yaf{bottom:279.734555pt;}
.y9b{bottom:280.694554pt;}
.y60{bottom:282.454554pt;}
.yf2{bottom:282.774554pt;}
.y167{bottom:283.094553pt;}
.ycb{bottom:284.694553pt;}
.y132{bottom:287.894552pt;}
.y164{bottom:289.334551pt;}
.y2f{bottom:291.254550pt;}
.y11e{bottom:293.494549pt;}
.y9a{bottom:294.774549pt;}
.y87{bottom:295.414549pt;}
.y99{bottom:296.054548pt;}
.yf1{bottom:298.134547pt;}
.y5f{bottom:299.254547pt;}
.yca{bottom:301.654546pt;}
.y2e{bottom:304.214545pt;}
.y131{bottom:304.694545pt;}
.y163{bottom:306.934544pt;}
.y11d{bottom:308.854543pt;}
.y19c{bottom:310.134543pt;}
.y98{bottom:311.414542pt;}
.y86{bottom:312.374542pt;}
.yf0{bottom:313.494541pt;}
.y5e{bottom:316.214540pt;}
.y2d{bottom:317.334540pt;}
.yc9{bottom:318.454539pt;}
.y130{bottom:321.494538pt;}
.y11c{bottom:324.214537pt;}
.y162{bottom:324.694537pt;}
.y97{bottom:327.094536pt;}
.yef{bottom:328.854535pt;}
.y85{bottom:329.174535pt;}
.y19b{bottom:329.814535pt;}
.y2c{bottom:330.294535pt;}
.y5d{bottom:333.014533pt;}
.y160{bottom:335.414400pt;}
.yc8{bottom:335.414533pt;}
.y12f{bottom:338.454531pt;}
.y11b{bottom:339.574531pt;}
.y95{bottom:342.774530pt;}
.y2b{bottom:343.414529pt;}
.yee{bottom:344.214529pt;}
.y96{bottom:344.534529pt;}
.y94{bottom:345.814528pt;}
.y84{bottom:346.134528pt;}
.y19a{bottom:347.094528pt;}
.y5c{bottom:349.974527pt;}
.yc7{bottom:352.214526pt;}
.y11a{bottom:354.934525pt;}
.y15f{bottom:356.054524pt;}
.y2a{bottom:356.374524pt;}
.yed{bottom:359.414523pt;}
.y83{bottom:362.934521pt;}
.y5b{bottom:366.774520pt;}
.y199{bottom:367.894520pt;}
.yc6{bottom:369.014519pt;}
.y29{bottom:369.494519pt;}
.y119{bottom:370.294519pt;}
.y15e{bottom:374.454517pt;}
.yec{bottom:374.774517pt;}
.y82{bottom:379.734515pt;}
.y28{bottom:382.454514pt;}
.y5a{bottom:383.574513pt;}
.y118{bottom:385.494512pt;}
.yc5{bottom:385.974512pt;}
.y198{bottom:388.854511pt;}
.yeb{bottom:390.134511pt;}
.y15d{bottom:392.854510pt;}
.y27{bottom:395.574508pt;}
.y81{bottom:396.694508pt;}
.y59{bottom:400.534506pt;}
.y117{bottom:400.854506pt;}
.yc4{bottom:402.774506pt;}
.yea{bottom:405.494504pt;}
.y26{bottom:408.534503pt;}
.y197{bottom:409.654503pt;}
.y15c{bottom:411.254502pt;}
.y80{bottom:413.494501pt;}
.y116{bottom:416.214500pt;}
.y58{bottom:417.334500pt;}
.yc3{bottom:419.734499pt;}
.ye9{bottom:420.854498pt;}
.y25{bottom:421.494498pt;}
.y1b9{bottom:423.574497pt;}
.y15b{bottom:429.654495pt;}
.y7f{bottom:430.454494pt;}
.y196{bottom:430.614494pt;}
.y115{bottom:431.574494pt;}
.y57{bottom:434.294493pt;}
.y24{bottom:434.614493pt;}
.ye8{bottom:436.214492pt;}
.yc2{bottom:436.534492pt;}
.y1b8{bottom:438.614491pt;}
.y12a{bottom:443.734400pt;}
.y114{bottom:446.934488pt;}
.y7e{bottom:447.254488pt;}
.y15a{bottom:447.414488pt;}
.y23{bottom:447.574488pt;}
.y56{bottom:451.094486pt;}
.ye7{bottom:451.414486pt;}
.yc1{bottom:453.334485pt;}
.y1b7{bottom:457.014484pt;}
.y22{bottom:460.694482pt;}
.y113{bottom:462.294482pt;}
.y7d{bottom:464.054481pt;}
.y159{bottom:465.174481pt;}
.ye6{bottom:466.774480pt;}
.y55{bottom:467.894480pt;}
.y195{bottom:468.854479pt;}
.yc0{bottom:470.294479pt;}
.y21{bottom:473.654477pt;}
.y112{bottom:477.494476pt;}
.y158{bottom:478.774475pt;}
.y7c{bottom:481.014474pt;}
.ye5{bottom:482.134474pt;}
.y54{bottom:484.054473pt;}
.y20{bottom:486.774472pt;}
.ybf{bottom:487.094472pt;}
.y191{bottom:489.334400pt;}
.y194{bottom:489.334471pt;}
.y190{bottom:491.734470pt;}
.y111{bottom:492.854470pt;}
.y157{bottom:494.774469pt;}
.y53{bottom:497.014468pt;}
.ye4{bottom:497.494468pt;}
.y7b{bottom:497.814468pt;}
.y1b6{bottom:498.134467pt;}
.y1f{bottom:499.734467pt;}
.y193{bottom:501.654466pt;}
.ybb{bottom:503.094465pt;}
.ybe{bottom:504.054465pt;}
.y110{bottom:508.214463pt;}
.y156{bottom:509.974463pt;}
.y52{bottom:510.134463pt;}
.y1e{bottom:512.854462pt;}
.y7a{bottom:514.774461pt;}
.y18f{bottom:515.254461pt;}
.y1b5{bottom:518.774459pt;}
.ybd{bottom:520.214459pt;}
.y51{bottom:523.094457pt;}
.y10f{bottom:523.574457pt;}
.y155{bottom:525.014457pt;}
.y1d{bottom:525.814456pt;}
.ye3{bottom:528.214455pt;}
.y18d{bottom:530.614454pt;}
.y79{bottom:531.574454pt;}
.ybc{bottom:533.974453pt;}
.y18e{bottom:535.254453pt;}
.y50{bottom:536.214452pt;}
.y1c{bottom:538.774451pt;}
.y10e{bottom:538.934451pt;}
.y1b4{bottom:539.414451pt;}
.ye2{bottom:543.414449pt;}
.y18c{bottom:545.814448pt;}
.y78{bottom:548.534447pt;}
.y4f{bottom:549.174447pt;}
.y153{bottom:550.774400pt;}
.y1b{bottom:551.894446pt;}
.y10d{bottom:554.134445pt;}
.ye1{bottom:558.774443pt;}
.y1b3{bottom:559.894443pt;}
.y18b{bottom:561.174442pt;}
.y4e{bottom:562.294442pt;}
.y1a{bottom:564.854441pt;}
.y77{bottom:565.334441pt;}
.y10c{bottom:569.494439pt;}
.ye0{bottom:574.134437pt;}
.y1b2{bottom:574.774400pt;}
.y151{bottom:575.254400pt;}
.y4d{bottom:575.254437pt;}
.y18a{bottom:576.214436pt;}
.y19{bottom:577.974435pt;}
.y76{bottom:582.134434pt;}
.y10b{bottom:584.854433pt;}
.y4c{bottom:588.374431pt;}
.ydf{bottom:589.494431pt;}
.y150{bottom:589.814431pt;}
.y18{bottom:590.934430pt;}
.y1b1{bottom:594.134429pt;}
.y188{bottom:594.774400pt;}
.y187{bottom:597.334428pt;}
.y75{bottom:599.094427pt;}
.y14e{bottom:599.894400pt;}
.y10a{bottom:600.214427pt;}
.y4b{bottom:601.334426pt;}
.y17{bottom:604.054425pt;}
.yde{bottom:604.854425pt;}
.y4a{bottom:614.294421pt;}
.y1b0{bottom:614.774421pt;}
.y109{bottom:615.574420pt;}
.y74{bottom:615.894420pt;}
.y16{bottom:617.014420pt;}
.ydd{bottom:620.214419pt;}
.y185{bottom:620.854400pt;}
.y184{bottom:623.414417pt;}
.y14c{bottom:624.374400pt;}
.y49{bottom:627.414416pt;}
.y15{bottom:630.134415pt;}
.y108{bottom:630.934414pt;}
.y73{bottom:632.854414pt;}
.ydc{bottom:635.414413pt;}
.y14b{bottom:638.774411pt;}
.y48{bottom:640.374411pt;}
.y14{bottom:643.094409pt;}
.y107{bottom:646.134408pt;}
.y182{bottom:646.774400pt;}
.y149{bottom:648.854400pt;}
.y181{bottom:649.334407pt;}
.y72{bottom:649.654407pt;}
.ydb{bottom:650.774406pt;}
.y47{bottom:653.494405pt;}
.y1af{bottom:655.894404pt;}
.y13{bottom:656.214404pt;}
.y106{bottom:661.494402pt;}
.y148{bottom:663.414401pt;}
.y46{bottom:666.454400pt;}
.y12{bottom:669.174399pt;}
.yae{bottom:671.734398pt;}
.y17f{bottom:672.854400pt;}
.y146{bottom:673.334400pt;}
.y17e{bottom:675.414397pt;}
.y1ae{bottom:676.534396pt;}
.y105{bottom:676.854396pt;}
.y45{bottom:679.574395pt;}
.y11{bottom:682.134394pt;}
.y71{bottom:683.414393pt;}
.y145{bottom:687.894392pt;}
.yad{bottom:688.694391pt;}
.y104{bottom:692.214390pt;}
.y44{bottom:692.534390pt;}
.y17a{bottom:693.014400pt;}
.yf{bottom:695.414389pt;}
.y10{bottom:696.534388pt;}
.y1ad{bottom:697.174388pt;}
.y143{bottom:698.614400pt;}
.y70{bottom:700.214387pt;}
.y17c{bottom:705.174400pt;}
.y43{bottom:705.654384pt;}
.y103{bottom:707.574384pt;}
.y8{bottom:708.054383pt;}
.y142{bottom:714.454381pt;}
.y1ac{bottom:715.254381pt;}
.y6f{bottom:717.174380pt;}
.y176{bottom:718.294400pt;}
.y42{bottom:718.614379pt;}
.y7{bottom:718.934379pt;}
.y102{bottom:722.934377pt;}
.y179{bottom:728.374375pt;}
.y141{bottom:729.814375pt;}
.y41{bottom:731.574374pt;}
.y6e{bottom:733.974373pt;}
.y174{bottom:734.454373pt;}
.y6{bottom:734.774373pt;}
.y1ab{bottom:736.054372pt;}
.y1a8{bottom:736.374400pt;}
.y175{bottom:736.854372pt;}
.y101{bottom:738.134371pt;}
.y1a7{bottom:738.774371pt;}
.y178{bottom:740.534370pt;}
.y40{bottom:744.694369pt;}
.y140{bottom:745.014369pt;}
.y1aa{bottom:748.374367pt;}
.y5{bottom:748.534367pt;}
.y6d{bottom:750.774366pt;}
.y100{bottom:753.494365pt;}
.y3f{bottom:757.654364pt;}
.y4{bottom:760.374363pt;}
.y173{bottom:761.974362pt;}
.y6c{bottom:767.734360pt;}
.yff{bottom:768.854359pt;}
.y3e{bottom:770.774358pt;}
.y3{bottom:775.094357pt;}
.y13f{bottom:776.214356pt;}
.y172{bottom:777.334356pt;}
.y1a6{bottom:781.974354pt;}
.y2{bottom:784.374353pt;}
.y3d{bottom:789.654351pt;}
.y1{bottom:801.654346pt;}
.y3c{bottom:806.774344pt;}
.h13{height:3.412499pt;}
.h21{height:11.840000pt;}
.h20{height:12.000000pt;}
.h23{height:12.160000pt;}
.h9{height:14.530554pt;}
.h1e{height:15.040000pt;}
.h3{height:18.230618pt;}
.h8{height:18.493433pt;}
.h4{height:19.165432pt;}
.h1b{height:23.777270pt;}
.h19{height:25.538550pt;}
.h24{height:29.415668pt;}
.hb{height:29.501428pt;}
.h18{height:30.254675pt;}
.hc{height:30.573428pt;}
.h11{height:31.171828pt;}
.hf{height:31.262707pt;}
.hd{height:32.398707pt;}
.h6{height:33.023987pt;}
.h5{height:34.223986pt;}
.h1f{height:36.440305pt;}
.h1a{height:36.546545pt;}
.ha{height:37.540922pt;}
.h1d{height:37.874545pt;}
.h7{height:39.243734pt;}
.he{height:39.782172pt;}
.h2{height:39.933734pt;}
.h16{height:40.391664pt;}
.h10{height:40.492171pt;}
.h14{height:40.509424pt;}
.h17{height:41.543733pt;}
.h12{height:41.981423pt;}
.h1c{height:46.505919pt;}
.h1{height:50.785292pt;}
.h15{height:51.548729pt;}
.h22{height:54.893418pt;}
.h0{height:865.333333pt;}
.wf{width:1.760000pt;}
.w11{width:1.920000pt;}
.w19{width:2.400000pt;}
.w1a{width:2.720000pt;}
.w18{width:3.040000pt;}
.w1c{width:3.360000pt;}
.w16{width:3.680000pt;}
.w17{width:4.000000pt;}
.w3{width:5.280000pt;}
.w15{width:6.560000pt;}
.w12{width:10.400000pt;}
.wb{width:16.000000pt;}
.w13{width:16.960000pt;}
.wd{width:22.560000pt;}
.wa{width:24.320000pt;}
.wc{width:26.720000pt;}
.w9{width:27.200000pt;}
.w10{width:32.640000pt;}
.w1b{width:38.080000pt;}
.w5{width:41.440000pt;}
.we{width:45.120000pt;}
.w8{width:46.880000pt;}
.w14{width:52.160000pt;}
.w6{width:58.400000pt;}
.w4{width:66.880000pt;}
.w1{width:72.480000pt;}
.w2{width:74.720000pt;}
.w7{width:99.840000pt;}
.w0{width:612.000000pt;}
.x0{left:0.000000pt;}
.x8{left:82.879967pt;}
.x3f{left:87.039965pt;}
.x26{left:89.599964pt;}
.x22{left:92.479963pt;}
.x27{left:93.919962pt;}
.x23{left:96.799961pt;}
.xc{left:101.759959pt;}
.x28{left:121.759951pt;}
.x68{left:123.999950pt;}
.x29{left:126.399949pt;}
.x63{left:127.519949pt;}
.x1d{left:130.880354pt;}
.x2c{left:154.399938pt;}
.x2d{left:159.039936pt;}
.x4{left:163.673268pt;}
.x33{left:166.880000pt;}
.x44{left:191.040000pt;}
.xd{left:193.120129pt;}
.xa{left:206.079918pt;}
.x5{left:212.159915pt;}
.x45{left:236.160000pt;}
.x47{left:237.920000pt;}
.x36{left:239.040000pt;}
.x69{left:240.320000pt;}
.x46{left:244.159902pt;}
.x1{left:247.199901pt;}
.x41{left:249.440000pt;}
.x2{left:252.639899pt;}
.x61{left:255.519898pt;}
.x6a{left:256.959897pt;}
.x6{left:258.879276pt;}
.x24{left:260.639896pt;}
.x65{left:262.719895pt;}
.x25{left:264.959894pt;}
.x39{left:266.240000pt;}
.x59{left:268.800000pt;}
.x48{left:270.560000pt;}
.x1e{left:271.519891pt;}
.x49{left:272.480000pt;}
.x5a{left:274.559890pt;}
.x1f{left:275.839890pt;}
.x40{left:279.199888pt;}
.x37{left:280.480000pt;}
.x4a{left:281.920000pt;}
.x3a{left:283.040000pt;}
.x38{left:285.920000pt;}
.x4b{left:287.360000pt;}
.x62{left:293.919882pt;}
.xb{left:297.919881pt;}
.x66{left:302.079879pt;}
.x4c{left:304.320000pt;}
.x3{left:305.919878pt;}
.x5b{left:307.840000pt;}
.x67{left:308.799876pt;}
.x9{left:310.559876pt;}
.x4d{left:313.919874pt;}
.x43{left:317.439873pt;}
.x42{left:321.919871pt;}
.xe{left:326.079870pt;}
.x6d{left:330.560000pt;}
.xf{left:339.519864pt;}
.x34{left:345.920000pt;}
.x4e{left:350.080000pt;}
.x7{left:352.799859pt;}
.x19{left:354.559858pt;}
.x1a{left:358.879856pt;}
.x3b{left:364.960000pt;}
.x2a{left:367.999853pt;}
.x10{left:370.079852pt;}
.x2b{left:372.639851pt;}
.x3c{left:380.960000pt;}
.x11{left:381.919847pt;}
.x12{left:393.599843pt;}
.x2e{left:398.719841pt;}
.x4f{left:402.240000pt;}
.x13{left:403.519839pt;}
.x35{left:412.800000pt;}
.x3d{left:418.400000pt;}
.x20{left:421.279831pt;}
.x21{left:425.599830pt;}
.x14{left:428.799828pt;}
.x6c{left:437.439825pt;}
.x15{left:441.919823pt;}
.x3e{left:445.120000pt;}
.x50{left:449.280000pt;}
.x52{left:451.040000pt;}
.x16{left:453.919818pt;}
.x6b{left:455.039818pt;}
.x51{left:457.279817pt;}
.x64{left:458.879816pt;}
.x17{left:460.479816pt;}
.x2f{left:471.039812pt;}
.x30{left:478.719809pt;}
.x5f{left:481.920000pt;}
.x53{left:483.680000pt;}
.x55{left:485.600000pt;}
.x60{left:487.679805pt;}
.x54{left:490.400000pt;}
.x5c{left:492.960000pt;}
.x56{left:495.040000pt;}
.x5d{left:497.919801pt;}
.x57{left:501.440000pt;}
.x18{left:511.839795pt;}
.x58{left:518.400000pt;}
.x1b{left:520.959792pt;}
.x5e{left:521.920000pt;}
.x1c{left:525.279790pt;}
.x31{left:528.959788pt;}
.x32{left:532.160000pt;}
}




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