
    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_242632212c5173d6baaef5eb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_fb59d479883e51975dbd785f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.769000;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_53e15adffb70d052ce84649a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.984552;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_0b4f333b552ff36a004a29fd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.977000;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_705dea820903c17b67c58474.woff')format("woff");}.ff5{font-family:ff5;line-height:1.013000;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_600346c8261ad47068118536.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979000;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_a4d763a5a0f69e8683911e51.woff')format("woff");}.ff7{font-family:ff7;line-height:0.979000;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_350045d4003e241df4155e5a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.769000;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_b5214eea8abb36a0d71fcbb1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.977000;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_da9c5fc2a5e764dd78e0a414.woff')format("woff");}.ffa{font-family:ffa;line-height:0.977000;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_a9eb37f1de4c187596e3e88a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.745000;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_d23b1efafc3817ae67e4e9bb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.745000;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_020a4e53297708706d1f83af.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910000;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_49d75d0942061e329fbec452.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5c5a3873d48ed6764d2a2a8a.woff')format("woff");}.fff{font-family:fff;line-height:0.769000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v4{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v1{vertical-align:21.600000px;}
.ls5a{letter-spacing:-0.471744px;}
.ls15{letter-spacing:-0.435456px;}
.ls3{letter-spacing:-0.423360px;}
.ls5d{letter-spacing:-0.381024px;}
.ls16{letter-spacing:-0.374976px;}
.ls4{letter-spacing:-0.356832px;}
.ls5c{letter-spacing:-0.350784px;}
.ls2d{letter-spacing:-0.323136px;}
.ls12{letter-spacing:-0.320544px;}
.ls4d{letter-spacing:-0.316800px;}
.ls0{letter-spacing:-0.314496px;}
.ls2{letter-spacing:-0.308448px;}
.lse{letter-spacing:-0.296352px;}
.ls11{letter-spacing:-0.290304px;}
.ls62{letter-spacing:-0.284256px;}
.ls5e{letter-spacing:-0.279792px;}
.ls4b{letter-spacing:-0.278784px;}
.ls17{letter-spacing:-0.278208px;}
.ls10{letter-spacing:-0.272160px;}
.ls51{letter-spacing:-0.266112px;}
.ls6{letter-spacing:-0.264960px;}
.ls5f{letter-spacing:-0.260496px;}
.ls57{letter-spacing:-0.250848px;}
.lsd{letter-spacing:-0.247968px;}
.ls60{letter-spacing:-0.241920px;}
.lsb{letter-spacing:-0.231552px;}
.ls61{letter-spacing:-0.217728px;}
.ls59{letter-spacing:-0.212256px;}
.ls5b{letter-spacing:-0.199584px;}
.lsf{letter-spacing:-0.187488px;}
.ls9{letter-spacing:-0.178848px;}
.ls5{letter-spacing:-0.175392px;}
.ls58{letter-spacing:-0.164016px;}
.ls14{letter-spacing:-0.163296px;}
.ls7{letter-spacing:-0.158976px;}
.lsa{letter-spacing:-0.152352px;}
.ls8{letter-spacing:-0.145728px;}
.ls13{letter-spacing:-0.144720px;}
.ls4c{letter-spacing:-0.139392px;}
.ls64{letter-spacing:-0.139104px;}
.lsc{letter-spacing:-0.127008px;}
.ls63{letter-spacing:-0.084672px;}
.ls1{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000576px;}
.ls43{letter-spacing:0.040320px;}
.ls48{letter-spacing:0.040608px;}
.ls1a{letter-spacing:0.041760px;}
.ls49{letter-spacing:0.041904px;}
.ls37{letter-spacing:0.054288px;}
.ls35{letter-spacing:0.058464px;}
.ls46{letter-spacing:0.062640px;}
.ls36{letter-spacing:0.066816px;}
.ls44{letter-spacing:0.067680px;}
.ls45{letter-spacing:0.070992px;}
.ls39{letter-spacing:0.079344px;}
.ls2c{letter-spacing:0.080640px;}
.ls50{letter-spacing:0.080784px;}
.ls31{letter-spacing:0.087696px;}
.ls32{letter-spacing:0.091872px;}
.ls20{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.095040px;}
.ls24{letter-spacing:0.096048px;}
.ls33{letter-spacing:0.100224px;}
.ls27{letter-spacing:0.100800px;}
.ls52{letter-spacing:0.104400px;}
.ls21{letter-spacing:0.118080px;}
.ls4a{letter-spacing:0.118512px;}
.ls4f{letter-spacing:0.118656px;}
.ls22{letter-spacing:0.119520px;}
.ls34{letter-spacing:0.121104px;}
.ls3b{letter-spacing:0.125280px;}
.ls1e{letter-spacing:0.129456px;}
.ls23{letter-spacing:0.133632px;}
.ls1f{letter-spacing:0.137808px;}
.ls1c{letter-spacing:0.141984px;}
.ls29{letter-spacing:0.145440px;}
.ls26{letter-spacing:0.146160px;}
.ls28{letter-spacing:0.150336px;}
.ls1b{letter-spacing:0.154512px;}
.ls1d{letter-spacing:0.158688px;}
.ls47{letter-spacing:0.162864px;}
.ls3a{letter-spacing:0.167040px;}
.ls30{letter-spacing:0.175392px;}
.ls2e{letter-spacing:0.183744px;}
.ls38{letter-spacing:0.187920px;}
.ls3c{letter-spacing:0.192096px;}
.ls3d{letter-spacing:0.200448px;}
.ls2f{letter-spacing:0.208800px;}
.ls41{letter-spacing:0.217152px;}
.ls19{letter-spacing:0.217584px;}
.ls42{letter-spacing:0.233856px;}
.ls2b{letter-spacing:0.237600px;}
.ls40{letter-spacing:0.247104px;}
.ls4e{letter-spacing:0.262080px;}
.ls3f{letter-spacing:0.275616px;}
.ls3e{letter-spacing:0.294624px;}
.ls55{letter-spacing:37.488384px;}
.ls54{letter-spacing:38.027376px;}
.ls53{letter-spacing:51.767568px;}
.ls56{letter-spacing:205.718400px;}
.ls18{letter-spacing:1730.960208px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws36{word-spacing:-20.260800px;}
.ws5{word-spacing:-20.116080px;}
.ws37{word-spacing:-20.048544px;}
.ws39{word-spacing:-19.981008px;}
.ws4{word-spacing:-11.260800px;}
.ws1{word-spacing:-10.281600px;}
.ws3b{word-spacing:-10.142496px;}
.ws3{word-spacing:-10.106208px;}
.ws3a{word-spacing:-10.039680px;}
.ws6{word-spacing:-10.009440px;}
.ws8{word-spacing:-10.003392px;}
.ws9{word-spacing:-9.991296px;}
.ws0{word-spacing:-9.967104px;}
.wsa{word-spacing:-9.961056px;}
.ws38{word-spacing:-9.930816px;}
.ws7{word-spacing:-9.906624px;}
.ws27{word-spacing:-8.354016px;}
.ws28{word-spacing:-8.325504px;}
.wsd{word-spacing:-7.642080px;}
.wse{word-spacing:-7.608672px;}
.wsf{word-spacing:-7.591968px;}
.ws2f{word-spacing:-7.587792px;}
.ws10{word-spacing:-7.579440px;}
.wsc{word-spacing:-7.575264px;}
.ws15{word-spacing:-7.554384px;}
.ws12{word-spacing:-7.533504px;}
.ws14{word-spacing:-7.529328px;}
.ws11{word-spacing:-7.520976px;}
.ws13{word-spacing:-7.491744px;}
.ws2a{word-spacing:-7.316352px;}
.ws25{word-spacing:-7.299648px;}
.ws1a{word-spacing:-7.287120px;}
.ws24{word-spacing:-7.274592px;}
.ws2b{word-spacing:-7.266240px;}
.ws34{word-spacing:-7.262064px;}
.ws1d{word-spacing:-7.257888px;}
.ws2c{word-spacing:-7.253712px;}
.ws26{word-spacing:-7.249536px;}
.ws20{word-spacing:-7.245360px;}
.ws19{word-spacing:-7.241184px;}
.ws16{word-spacing:-7.237008px;}
.ws1e{word-spacing:-7.232832px;}
.ws1b{word-spacing:-7.228656px;}
.ws2e{word-spacing:-7.224480px;}
.ws22{word-spacing:-7.220304px;}
.ws21{word-spacing:-7.217280px;}
.ws33{word-spacing:-7.203600px;}
.ws30{word-spacing:-7.199424px;}
.ws1c{word-spacing:-7.195248px;}
.ws1f{word-spacing:-7.191072px;}
.ws23{word-spacing:-7.186896px;}
.ws29{word-spacing:-7.178544px;}
.ws2d{word-spacing:-7.170192px;}
.ws32{word-spacing:-7.161840px;}
.ws17{word-spacing:-7.153488px;}
.ws18{word-spacing:-7.099200px;}
.ws2{word-spacing:-0.036000px;}
.ws35{word-spacing:-0.030240px;}
.ws31{word-spacing:-0.024480px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-205.718400px;}
._6{margin-left:-147.215952px;}
._1{margin-left:-1.093104px;}
._0{width:1.105776px;}
._5{width:29.741904px;}
._2{width:853.536672px;}
._3{width:974.647296px;}
.fc5{color:rgb(34,40,50);}
.fc4{color:rgb(14,15,15);}
.fc2{color:transparent;}
.fc1{color:rgb(0,5,70);}
.fc6{color:rgb(63,63,63);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fs1{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:47.520000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:96.480000px;}
.fs2{font-size:132.480000px;}
.fsa{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y14d{bottom:2.340000px;}
.yc5{bottom:2.400000px;}
.y6a{bottom:2.460000px;}
.y123{bottom:2.520000px;}
.y30{bottom:2.700000px;}
.ya4{bottom:2.760000px;}
.y7a{bottom:2.820000px;}
.yfc{bottom:2.880000px;}
.y137{bottom:3.000000px;}
.yd6{bottom:3.060000px;}
.y59{bottom:3.120000px;}
.y85{bottom:3.180000px;}
.y26{bottom:3.300000px;}
.yed{bottom:3.360000px;}
.y162{bottom:3.420000px;}
.y173{bottom:3.480000px;}
.y140{bottom:3.540000px;}
.y110{bottom:3.600000px;}
.yab{bottom:3.660000px;}
.y51{bottom:3.720000px;}
.y41{bottom:3.780000px;}
.y129{bottom:4.080000px;}
.y150{bottom:4.500000px;}
.y12c{bottom:8.880000px;}
.ye7{bottom:8.940000px;}
.y104{bottom:9.180000px;}
.y102{bottom:9.300000px;}
.y125{bottom:9.360000px;}
.y139{bottom:9.480000px;}
.y34{bottom:9.540000px;}
.y13b{bottom:9.660000px;}
.y5c{bottom:9.780000px;}
.y1b4{bottom:9.960000px;}
.y87{bottom:10.020000px;}
.y28{bottom:10.140000px;}
.y4d{bottom:10.200000px;}
.y100{bottom:10.260000px;}
.y10b{bottom:10.440000px;}
.yad{bottom:10.500000px;}
.yc7{bottom:10.560000px;}
.y1a4{bottom:11.820000px;}
.y1e{bottom:12.180000px;}
.yc4{bottom:15.360000px;}
.y69{bottom:15.420000px;}
.y2f{bottom:15.660000px;}
.ye0{bottom:15.720000px;}
.y9a{bottom:15.780000px;}
.y122{bottom:15.840000px;}
.y135{bottom:15.960000px;}
.y37{bottom:16.020000px;}
.ya3{bottom:16.080000px;}
.y79{bottom:16.140000px;}
.yf9{bottom:16.200000px;}
.yd5{bottom:16.380000px;}
.y58{bottom:16.440000px;}
.y84{bottom:16.500000px;}
.y25{bottom:16.620000px;}
.yec{bottom:16.680000px;}
.yfe{bottom:16.740000px;}
.y172{bottom:16.800000px;}
.y13e{bottom:16.860000px;}
.y10f{bottom:16.920000px;}
.yaa{bottom:16.980000px;}
.y50{bottom:17.040000px;}
.y40{bottom:17.100000px;}
.y14a{bottom:22.140000px;}
.y12b{bottom:22.200000px;}
.ye6{bottom:22.260000px;}
.y11f{bottom:22.320000px;}
.y2c{bottom:22.500000px;}
.ya6{bottom:22.560000px;}
.y101{bottom:22.620000px;}
.y138{bottom:22.800000px;}
.y32{bottom:22.860000px;}
.y144{bottom:22.920000px;}
.y82{bottom:22.980000px;}
.y5b{bottom:23.100000px;}
.y141{bottom:23.340000px;}
.y10a{bottom:23.400000px;}
.y21{bottom:23.460000px;}
.y4b{bottom:23.520000px;}
.y3b{bottom:23.580000px;}
.y128{bottom:23.880000px;}
.y14f{bottom:24.300000px;}
.y149{bottom:28.620000px;}
.yc3{bottom:28.680000px;}
.y64{bottom:28.740000px;}
.y2a{bottom:28.980000px;}
.ydf{bottom:29.040000px;}
.y99{bottom:29.100000px;}
.y121{bottom:29.160000px;}
.y136{bottom:29.280000px;}
.y36{bottom:29.340000px;}
.ya0{bottom:29.400000px;}
.y78{bottom:29.460000px;}
.yf8{bottom:29.520000px;}
.y1a8{bottom:29.580000px;}
.yd4{bottom:29.700000px;}
.y57{bottom:29.760000px;}
.y83{bottom:29.820000px;}
.y22{bottom:29.940000px;}
.y47{bottom:30.000000px;}
.y3f{bottom:30.060000px;}
.y171{bottom:30.120000px;}
.y13f{bottom:30.180000px;}
.y10e{bottom:30.240000px;}
.ya9{bottom:30.300000px;}
.y9d{bottom:30.360000px;}
.y2b{bottom:35.460000px;}
.yb7{bottom:35.520000px;}
.ye5{bottom:35.580000px;}
.y124{bottom:35.640000px;}
.y33{bottom:35.820000px;}
.ya5{bottom:35.880000px;}
.y80{bottom:35.940000px;}
.y131{bottom:36.180000px;}
.y1b3{bottom:36.240000px;}
.y86{bottom:36.300000px;}
.y20{bottom:36.420000px;}
.yea{bottom:36.480000px;}
.yff{bottom:36.540000px;}
.y108{bottom:36.720000px;}
.yac{bottom:36.780000px;}
.y4a{bottom:36.840000px;}
.y39{bottom:36.900000px;}
.y148{bottom:41.940000px;}
.yc2{bottom:42.000000px;}
.y63{bottom:42.060000px;}
.y120{bottom:42.120000px;}
.y2e{bottom:42.300000px;}
.ya2{bottom:42.360000px;}
.y98{bottom:42.420000px;}
.y18a{bottom:42.480000px;}
.y35{bottom:42.660000px;}
.y146{bottom:42.720000px;}
.y77{bottom:42.780000px;}
.yf7{bottom:42.840000px;}
.y1a7{bottom:42.900000px;}
.y191{bottom:43.020000px;}
.y53{bottom:43.080000px;}
.y106{bottom:43.200000px;}
.y24{bottom:43.260000px;}
.y46{bottom:43.320000px;}
.y3e{bottom:43.380000px;}
.y170{bottom:43.440000px;}
.ya8{bottom:43.620000px;}
.y112{bottom:43.680000px;}
.yb6{bottom:48.480000px;}
.y66{bottom:48.540000px;}
.y103{bottom:48.780000px;}
.yda{bottom:48.840000px;}
.yd8{bottom:48.900000px;}
.y143{bottom:49.200000px;}
.y7f{bottom:49.260000px;}
.y1aa{bottom:49.380000px;}
.ycd{bottom:49.500000px;}
.y1b2{bottom:49.560000px;}
.y27{bottom:49.740000px;}
.y43{bottom:49.800000px;}
.y3a{bottom:49.860000px;}
.y107{bottom:50.040000px;}
.y116{bottom:50.100000px;}
.y9c{bottom:50.160000px;}
.y14c{bottom:55.260000px;}
.yc1{bottom:55.320000px;}
.y62{bottom:55.380000px;}
.y2d{bottom:55.620000px;}
.ya1{bottom:55.680000px;}
.y76{bottom:55.740000px;}
.yf6{bottom:55.800000px;}
.ycf{bottom:55.980000px;}
.y56{bottom:56.040000px;}
.y23{bottom:56.220000px;}
.ye9{bottom:56.280000px;}
.y161{bottom:56.340000px;}
.y16b{bottom:56.400000px;}
.y1c{bottom:56.520000px;}
.y11d{bottom:56.580000px;}
.y45{bottom:56.640000px;}
.y3d{bottom:56.700000px;}
.yb5{bottom:61.800000px;}
.y5e{bottom:61.860000px;}
.ydb{bottom:62.160000px;}
.y133{bottom:62.220000px;}
.ycc{bottom:62.460000px;}
.y7e{bottom:62.580000px;}
.y1b{bottom:62.640000px;}
.y1a9{bottom:62.700000px;}
.y18e{bottom:62.820000px;}
.y1ad{bottom:62.880000px;}
.y176{bottom:63.000000px;}
.y49{bottom:63.120000px;}
.y169{bottom:63.240000px;}
.y109{bottom:63.360000px;}
.y119{bottom:63.420000px;}
.y111{bottom:63.480000px;}
.yc0{bottom:68.280000px;}
.y61{bottom:68.340000px;}
.y14b{bottom:68.580000px;}
.yde{bottom:68.640000px;}
.y97{bottom:68.700000px;}
.y189{bottom:68.760000px;}
.y1a2{bottom:68.940000px;}
.y145{bottom:69.000000px;}
.y75{bottom:69.060000px;}
.yf5{bottom:69.120000px;}
.yc9{bottom:69.300000px;}
.y55{bottom:69.360000px;}
.y12f{bottom:69.540000px;}
.yeb{bottom:69.600000px;}
.y159{bottom:69.660000px;}
.y167{bottom:69.720000px;}
.y10d{bottom:69.840000px;}
.y11c{bottom:69.900000px;}
.y44{bottom:69.960000px;}
.y3c{bottom:70.020000px;}
.yb4{bottom:75.120000px;}
.y65{bottom:75.180000px;}
.ye1{bottom:75.480000px;}
.y6e{bottom:75.540000px;}
.yef{bottom:75.600000px;}
.ycb{bottom:75.780000px;}
.y1b1{bottom:75.840000px;}
.y18d{bottom:76.140000px;}
.y1a{bottom:76.320000px;}
.y118{bottom:76.380000px;}
.y48{bottom:76.440000px;}
.y165{bottom:76.560000px;}
.ybf{bottom:81.600000px;}
.y60{bottom:81.660000px;}
.y197{bottom:81.900000px;}
.ydd{bottom:81.960000px;}
.y96{bottom:82.020000px;}
.y180{bottom:82.080000px;}
.y74{bottom:82.380000px;}
.yf4{bottom:82.440000px;}
.yce{bottom:82.620000px;}
.y54{bottom:82.680000px;}
.y12e{bottom:82.860000px;}
.y4f{bottom:82.920000px;}
.y157{bottom:82.980000px;}
.y166{bottom:83.040000px;}
.y10c{bottom:83.160000px;}
.y11b{bottom:83.220000px;}
.y9e{bottom:83.280000px;}
.y147{bottom:85.500000px;}
.y1be{bottom:88.200000px;}
.yaf{bottom:88.440000px;}
.y8c{bottom:88.500000px;}
.y19b{bottom:88.740000px;}
.y7d{bottom:88.860000px;}
.yfa{bottom:88.920000px;}
.yca{bottom:89.100000px;}
.y1b0{bottom:89.160000px;}
.y1df{bottom:89.280000px;}
.y15b{bottom:89.460000px;}
.y168{bottom:89.520000px;}
.y6c{bottom:89.640000px;}
.y117{bottom:89.700000px;}
.y4c{bottom:89.760000px;}
.yd9{bottom:93.000000px;}
.ybe{bottom:94.920000px;}
.y5f{bottom:94.980000px;}
.y196{bottom:95.220000px;}
.ydc{bottom:95.280000px;}
.y8e{bottom:95.340000px;}
.y17f{bottom:95.400000px;}
.yd3{bottom:95.580000px;}
.y1b7{bottom:95.640000px;}
.y73{bottom:95.700000px;}
.yf3{bottom:95.760000px;}
.y18f{bottom:95.940000px;}
.y177{bottom:96.120000px;}
.y4e{bottom:96.240000px;}
.y156{bottom:96.300000px;}
.y16a{bottom:96.360000px;}
.y11a{bottom:96.540000px;}
.y114{bottom:96.600000px;}
.y1bd{bottom:99.360000px;}
.yb3{bottom:101.400000px;}
.ye4{bottom:101.460000px;}
.y8b{bottom:101.820000px;}
.y182{bottom:101.880000px;}
.y19a{bottom:102.060000px;}
.y7c{bottom:102.180000px;}
.y1af{bottom:102.480000px;}
.y153{bottom:102.780000px;}
.y175{bottom:102.960000px;}
.y6b{bottom:103.320000px;}
.ybd{bottom:108.240000px;}
.y68{bottom:108.300000px;}
.y1de{bottom:108.360000px;}
.y193{bottom:108.540000px;}
.y72{bottom:108.660000px;}
.yf2{bottom:108.720000px;}
.yd2{bottom:108.900000px;}
.y1b6{bottom:108.960000px;}
.y155{bottom:109.260000px;}
.y16f{bottom:109.320000px;}
.y17c{bottom:109.440000px;}
.y113{bottom:109.560000px;}
.yb2{bottom:114.720000px;}
.ye3{bottom:114.780000px;}
.y199{bottom:115.020000px;}
.y8a{bottom:115.140000px;}
.y181{bottom:115.200000px;}
.y7b{bottom:115.500000px;}
.y1ae{bottom:115.800000px;}
.y15a{bottom:116.100000px;}
.y9f{bottom:120.000000px;}
.ybc{bottom:121.200000px;}
.y67{bottom:121.260000px;}
.y8d{bottom:121.620000px;}
.y188{bottom:121.680000px;}
.y195{bottom:121.860000px;}
.y71{bottom:121.980000px;}
.yf1{bottom:122.040000px;}
.yd1{bottom:122.220000px;}
.y1b5{bottom:122.280000px;}
.y154{bottom:122.580000px;}
.y16e{bottom:122.640000px;}
.y17b{bottom:122.760000px;}
.y1dd{bottom:127.080000px;}
.yb1{bottom:128.040000px;}
.y89{bottom:128.100000px;}
.y198{bottom:128.340000px;}
.y1ba{bottom:128.460000px;}
.ybb{bottom:134.520000px;}
.y194{bottom:134.820000px;}
.y95{bottom:134.940000px;}
.y187{bottom:135.000000px;}
.y70{bottom:135.300000px;}
.yf0{bottom:135.360000px;}
.yd0{bottom:135.540000px;}
.y158{bottom:135.900000px;}
.y16d{bottom:135.960000px;}
.y17a{bottom:136.080000px;}
.yb0{bottom:141.360000px;}
.y1b9{bottom:141.780000px;}
.y5d{bottom:145.500000px;}
.y1dc{bottom:146.160000px;}
.yba{bottom:147.840000px;}
.y1a1{bottom:148.140000px;}
.y94{bottom:148.260000px;}
.y186{bottom:148.320000px;}
.y6f{bottom:148.620000px;}
.yfb{bottom:148.680000px;}
.y190{bottom:148.860000px;}
.y179{bottom:149.040000px;}
.y160{bottom:149.220000px;}
.y16c{bottom:149.280000px;}
.y1bc{bottom:156.960000px;}
.y19{bottom:158.400000px;}
.yb9{bottom:161.160000px;}
.y93{bottom:161.220000px;}
.y1a0{bottom:161.460000px;}
.y1bb{bottom:161.580000px;}
.y185{bottom:161.640000px;}
.y15f{bottom:162.180000px;}
.y178{bottom:162.360000px;}
.y1db{bottom:164.880000px;}
.y142{bottom:165.000000px;}
.y1b8{bottom:172.500000px;}
.yb8{bottom:174.120000px;}
.y92{bottom:174.540000px;}
.y184{bottom:174.600000px;}
.y19f{bottom:174.780000px;}
.y15e{bottom:175.500000px;}
.y18{bottom:177.120000px;}
.y9b{bottom:186.000000px;}
.y19e{bottom:187.740000px;}
.y91{bottom:187.860000px;}
.y183{bottom:187.920000px;}
.y15d{bottom:188.820000px;}
.y17{bottom:196.200000px;}
.yd7{bottom:199.500000px;}
.y19d{bottom:201.060000px;}
.y90{bottom:201.180000px;}
.y15c{bottom:202.140000px;}
.y1da{bottom:202.320000px;}
.y18b{bottom:207.000000px;}
.y8f{bottom:214.140000px;}
.y19c{bottom:214.380000px;}
.y16{bottom:214.920000px;}
.y1d9{bottom:227.520000px;}
.y15{bottom:234.000000px;}
.y13d{bottom:244.500000px;}
.y1d8{bottom:246.240000px;}
.y14{bottom:252.720000px;}
.y164{bottom:255.000000px;}
.y126{bottom:263.160000px;}
.y1d7{bottom:265.320000px;}
.yfd{bottom:265.500000px;}
.y13{bottom:271.800000px;}
.y5a{bottom:277.500000px;}
.y11e{bottom:279.000000px;}
.y88{bottom:280.500000px;}
.y1d6{bottom:284.040000px;}
.y13c{bottom:285.000000px;}
.y17e{bottom:288.000000px;}
.yc8{bottom:292.500000px;}
.y1d5{bottom:303.120000px;}
.y1a3{bottom:312.840000px;}
.y12{bottom:314.280000px;}
.y52{bottom:318.000000px;}
.y1d4{bottom:321.840000px;}
.y192{bottom:328.500000px;}
.y115{bottom:331.500000px;}
.yee{bottom:333.000000px;}
.y11{bottom:339.120000px;}
.y1d3{bottom:340.920000px;}
.y1ac{bottom:345.000000px;}
.y1f5{bottom:345.960000px;}
.y13a{bottom:352.500000px;}
.y10{bottom:358.200000px;}
.y1d2{bottom:359.640000px;}
.y1f4{bottom:364.680000px;}
.yf{bottom:376.920000px;}
.y1d1{bottom:378.720000px;}
.y1f3{bottom:383.760000px;}
.y134{bottom:393.000000px;}
.ye{bottom:396.000000px;}
.y1d0{bottom:397.440000px;}
.y1f2{bottom:402.480000px;}
.y42{bottom:411.000000px;}
.yd{bottom:414.720000px;}
.y163{bottom:415.500000px;}
.y1cf{bottom:416.520000px;}
.y1f1{bottom:421.560000px;}
.y132{bottom:433.500000px;}
.yc{bottom:433.800000px;}
.y1ce{bottom:435.240000px;}
.yc6{bottom:438.000000px;}
.y1f0{bottom:440.280000px;}
.y1cd{bottom:454.320000px;}
.y1ef{bottom:459.360000px;}
.y1cc{bottom:473.040000px;}
.yb{bottom:476.280000px;}
.y1ee{bottom:478.080000px;}
.y1ab{bottom:478.500000px;}
.yae{bottom:480.000000px;}
.y152{bottom:481.500000px;}
.y17d{bottom:487.500000px;}
.ye8{bottom:492.000000px;}
.y1cb{bottom:492.120000px;}
.y1ed{bottom:497.160000px;}
.ya{bottom:501.120000px;}
.y81{bottom:505.500000px;}
.y1ca{bottom:510.840000px;}
.y1ec{bottom:515.880000px;}
.y38{bottom:517.500000px;}
.y9{bottom:520.200000px;}
.y130{bottom:526.500000px;}
.y1c9{bottom:529.920000px;}
.y1eb{bottom:534.960000px;}
.y8{bottom:539.280000px;}
.y174{bottom:540.000000px;}
.y1c8{bottom:548.640000px;}
.y18c{bottom:553.500000px;}
.y1ea{bottom:553.680000px;}
.y105{bottom:558.000000px;}
.y6d{bottom:559.500000px;}
.y7{bottom:559.800000px;}
.y1c7{bottom:567.720000px;}
.y1e9{bottom:572.760000px;}
.y1c6{bottom:586.440000px;}
.ye2{bottom:586.500000px;}
.y1e8{bottom:591.480000px;}
.y31{bottom:598.500000px;}
.y6{bottom:601.560000px;}
.y1c5{bottom:605.520000px;}
.y1e7{bottom:610.560000px;}
.y12d{bottom:619.500000px;}
.y1c4{bottom:624.240000px;}
.y1e6{bottom:629.280000px;}
.y1a6{bottom:637.500000px;}
.y1c3{bottom:643.320000px;}
.y1e5{bottom:648.360000px;}
.y29{bottom:652.500000px;}
.y5{bottom:656.280000px;}
.y1c2{bottom:662.040000px;}
.ya7{bottom:664.500000px;}
.y1e4{bottom:667.080000px;}
.y1c1{bottom:681.120000px;}
.y1e3{bottom:686.160000px;}
.y151{bottom:694.500000px;}
.y1e2{bottom:704.880000px;}
.y4{bottom:710.640000px;}
.y12a{bottom:714.000000px;}
.y1a5{bottom:717.000000px;}
.y1f{bottom:718.500000px;}
.y1c0{bottom:718.560000px;}
.y1e1{bottom:723.960000px;}
.y14e{bottom:760.500000px;}
.y1e0{bottom:761.400000px;}
.y127{bottom:780.000000px;}
.y1d{bottom:784.500000px;}
.y3{bottom:786.600000px;}
.y1bf{bottom:788.400000px;}
.y2{bottom:805.320000px;}
.y1{bottom:824.400000px;}
.h21{height:27.063360px;}
.h7{height:27.252000px;}
.hb{height:31.612320px;}
.hc{height:32.931360px;}
.h8{height:36.000000px;}
.h1a{height:40.500000px;}
.h11{height:42.000000px;}
.h1c{height:45.057600px;}
.h2{height:45.783360px;}
.h9{height:47.963520px;}
.h3{height:48.852000px;}
.h5{height:50.143680px;}
.hd{height:54.000000px;}
.h15{height:55.500000px;}
.ha{height:67.500000px;}
.h20{height:69.000000px;}
.h6{height:76.412160px;}
.h1b{height:79.500000px;}
.he{height:81.000000px;}
.h10{height:94.500000px;}
.h4{height:104.924160px;}
.h18{height:106.500000px;}
.hf{height:108.000000px;}
.h22{height:114.048000px;}
.h19{height:121.500000px;}
.h12{height:133.500000px;}
.h17{height:147.000000px;}
.h13{height:160.500000px;}
.h1e{height:174.000000px;}
.h16{height:186.000000px;}
.h1f{height:199.500000px;}
.h1d{height:213.000000px;}
.h14{height:226.500000px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.wa{width:75.000000px;}
.w7{width:76.500000px;}
.w6{width:85.500000px;}
.w5{width:87.000000px;}
.w8{width:96.000000px;}
.w4{width:129.000000px;}
.w3{width:150.000000px;}
.wb{width:244.500000px;}
.w9{width:246.000000px;}
.w2{width:1159.500000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x14{left:7.620000px;}
.x8{left:8.640000px;}
.x1{left:54.000000px;}
.x4{left:62.757216px;}
.x1b{left:81.000000px;}
.x3{left:114.552252px;}
.x9{left:202.500000px;}
.x6{left:270.000000px;}
.x5{left:277.276968px;}
.x1a{left:312.596280px;}
.xa{left:330.000000px;}
.xb{left:415.500000px;}
.x17{left:427.638600px;}
.x7{left:470.438640px;}
.x19{left:478.714680px;}
.x18{left:487.826280px;}
.xc{left:499.500000px;}
.xd{left:574.500000px;}
.x2{left:631.424880px;}
.xe{left:649.500000px;}
.xf{left:744.000000px;}
.x13{left:745.500000px;}
.x10{left:988.500000px;}
.x15{left:990.000000px;}
.x11{left:1063.500000px;}
.x12{left:1137.000000px;}
.x16{left:1138.500000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v1{vertical-align:19.200000pt;}
.ls5a{letter-spacing:-0.419328pt;}
.ls15{letter-spacing:-0.387072pt;}
.ls3{letter-spacing:-0.376320pt;}
.ls5d{letter-spacing:-0.338688pt;}
.ls16{letter-spacing:-0.333312pt;}
.ls4{letter-spacing:-0.317184pt;}
.ls5c{letter-spacing:-0.311808pt;}
.ls2d{letter-spacing:-0.287232pt;}
.ls12{letter-spacing:-0.284928pt;}
.ls4d{letter-spacing:-0.281600pt;}
.ls0{letter-spacing:-0.279552pt;}
.ls2{letter-spacing:-0.274176pt;}
.lse{letter-spacing:-0.263424pt;}
.ls11{letter-spacing:-0.258048pt;}
.ls62{letter-spacing:-0.252672pt;}
.ls5e{letter-spacing:-0.248704pt;}
.ls4b{letter-spacing:-0.247808pt;}
.ls17{letter-spacing:-0.247296pt;}
.ls10{letter-spacing:-0.241920pt;}
.ls51{letter-spacing:-0.236544pt;}
.ls6{letter-spacing:-0.235520pt;}
.ls5f{letter-spacing:-0.231552pt;}
.ls57{letter-spacing:-0.222976pt;}
.lsd{letter-spacing:-0.220416pt;}
.ls60{letter-spacing:-0.215040pt;}
.lsb{letter-spacing:-0.205824pt;}
.ls61{letter-spacing:-0.193536pt;}
.ls59{letter-spacing:-0.188672pt;}
.ls5b{letter-spacing:-0.177408pt;}
.lsf{letter-spacing:-0.166656pt;}
.ls9{letter-spacing:-0.158976pt;}
.ls5{letter-spacing:-0.155904pt;}
.ls58{letter-spacing:-0.145792pt;}
.ls14{letter-spacing:-0.145152pt;}
.ls7{letter-spacing:-0.141312pt;}
.lsa{letter-spacing:-0.135424pt;}
.ls8{letter-spacing:-0.129536pt;}
.ls13{letter-spacing:-0.128640pt;}
.ls4c{letter-spacing:-0.123904pt;}
.ls64{letter-spacing:-0.123648pt;}
.lsc{letter-spacing:-0.112896pt;}
.ls63{letter-spacing:-0.075264pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000512pt;}
.ls43{letter-spacing:0.035840pt;}
.ls48{letter-spacing:0.036096pt;}
.ls1a{letter-spacing:0.037120pt;}
.ls49{letter-spacing:0.037248pt;}
.ls37{letter-spacing:0.048256pt;}
.ls35{letter-spacing:0.051968pt;}
.ls46{letter-spacing:0.055680pt;}
.ls36{letter-spacing:0.059392pt;}
.ls44{letter-spacing:0.060160pt;}
.ls45{letter-spacing:0.063104pt;}
.ls39{letter-spacing:0.070528pt;}
.ls2c{letter-spacing:0.071680pt;}
.ls50{letter-spacing:0.071808pt;}
.ls31{letter-spacing:0.077952pt;}
.ls32{letter-spacing:0.081664pt;}
.ls20{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.084480pt;}
.ls24{letter-spacing:0.085376pt;}
.ls33{letter-spacing:0.089088pt;}
.ls27{letter-spacing:0.089600pt;}
.ls52{letter-spacing:0.092800pt;}
.ls21{letter-spacing:0.104960pt;}
.ls4a{letter-spacing:0.105344pt;}
.ls4f{letter-spacing:0.105472pt;}
.ls22{letter-spacing:0.106240pt;}
.ls34{letter-spacing:0.107648pt;}
.ls3b{letter-spacing:0.111360pt;}
.ls1e{letter-spacing:0.115072pt;}
.ls23{letter-spacing:0.118784pt;}
.ls1f{letter-spacing:0.122496pt;}
.ls1c{letter-spacing:0.126208pt;}
.ls29{letter-spacing:0.129280pt;}
.ls26{letter-spacing:0.129920pt;}
.ls28{letter-spacing:0.133632pt;}
.ls1b{letter-spacing:0.137344pt;}
.ls1d{letter-spacing:0.141056pt;}
.ls47{letter-spacing:0.144768pt;}
.ls3a{letter-spacing:0.148480pt;}
.ls30{letter-spacing:0.155904pt;}
.ls2e{letter-spacing:0.163328pt;}
.ls38{letter-spacing:0.167040pt;}
.ls3c{letter-spacing:0.170752pt;}
.ls3d{letter-spacing:0.178176pt;}
.ls2f{letter-spacing:0.185600pt;}
.ls41{letter-spacing:0.193024pt;}
.ls19{letter-spacing:0.193408pt;}
.ls42{letter-spacing:0.207872pt;}
.ls2b{letter-spacing:0.211200pt;}
.ls40{letter-spacing:0.219648pt;}
.ls4e{letter-spacing:0.232960pt;}
.ls3f{letter-spacing:0.244992pt;}
.ls3e{letter-spacing:0.261888pt;}
.ls55{letter-spacing:33.323008pt;}
.ls54{letter-spacing:33.802112pt;}
.ls53{letter-spacing:46.015616pt;}
.ls56{letter-spacing:182.860800pt;}
.ls18{letter-spacing:1538.631296pt;}
.ws36{word-spacing:-18.009600pt;}
.ws5{word-spacing:-17.880960pt;}
.ws37{word-spacing:-17.820928pt;}
.ws39{word-spacing:-17.760896pt;}
.ws4{word-spacing:-10.009600pt;}
.ws1{word-spacing:-9.139200pt;}
.ws3b{word-spacing:-9.015552pt;}
.ws3{word-spacing:-8.983296pt;}
.ws3a{word-spacing:-8.924160pt;}
.ws6{word-spacing:-8.897280pt;}
.ws8{word-spacing:-8.891904pt;}
.ws9{word-spacing:-8.881152pt;}
.ws0{word-spacing:-8.859648pt;}
.wsa{word-spacing:-8.854272pt;}
.ws38{word-spacing:-8.827392pt;}
.ws7{word-spacing:-8.805888pt;}
.ws27{word-spacing:-7.425792pt;}
.ws28{word-spacing:-7.400448pt;}
.wsd{word-spacing:-6.792960pt;}
.wse{word-spacing:-6.763264pt;}
.wsf{word-spacing:-6.748416pt;}
.ws2f{word-spacing:-6.744704pt;}
.ws10{word-spacing:-6.737280pt;}
.wsc{word-spacing:-6.733568pt;}
.ws15{word-spacing:-6.715008pt;}
.ws12{word-spacing:-6.696448pt;}
.ws14{word-spacing:-6.692736pt;}
.ws11{word-spacing:-6.685312pt;}
.ws13{word-spacing:-6.659328pt;}
.ws2a{word-spacing:-6.503424pt;}
.ws25{word-spacing:-6.488576pt;}
.ws1a{word-spacing:-6.477440pt;}
.ws24{word-spacing:-6.466304pt;}
.ws2b{word-spacing:-6.458880pt;}
.ws34{word-spacing:-6.455168pt;}
.ws1d{word-spacing:-6.451456pt;}
.ws2c{word-spacing:-6.447744pt;}
.ws26{word-spacing:-6.444032pt;}
.ws20{word-spacing:-6.440320pt;}
.ws19{word-spacing:-6.436608pt;}
.ws16{word-spacing:-6.432896pt;}
.ws1e{word-spacing:-6.429184pt;}
.ws1b{word-spacing:-6.425472pt;}
.ws2e{word-spacing:-6.421760pt;}
.ws22{word-spacing:-6.418048pt;}
.ws21{word-spacing:-6.415360pt;}
.ws33{word-spacing:-6.403200pt;}
.ws30{word-spacing:-6.399488pt;}
.ws1c{word-spacing:-6.395776pt;}
.ws1f{word-spacing:-6.392064pt;}
.ws23{word-spacing:-6.388352pt;}
.ws29{word-spacing:-6.380928pt;}
.ws2d{word-spacing:-6.373504pt;}
.ws32{word-spacing:-6.366080pt;}
.ws17{word-spacing:-6.358656pt;}
.ws18{word-spacing:-6.310400pt;}
.ws2{word-spacing:-0.032000pt;}
.ws35{word-spacing:-0.026880pt;}
.ws31{word-spacing:-0.021760pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-182.860800pt;}
._6{margin-left:-130.858624pt;}
._1{margin-left:-0.971648pt;}
._0{width:0.982912pt;}
._5{width:26.437248pt;}
._2{width:758.699264pt;}
._3{width:866.353152pt;}
.fs7{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:42.240000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:85.760000pt;}
.fs2{font-size:117.760000pt;}
.fsa{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:2.080000pt;}
.yc5{bottom:2.133333pt;}
.y6a{bottom:2.186667pt;}
.y123{bottom:2.240000pt;}
.y30{bottom:2.400000pt;}
.ya4{bottom:2.453333pt;}
.y7a{bottom:2.506667pt;}
.yfc{bottom:2.560000pt;}
.y137{bottom:2.666667pt;}
.yd6{bottom:2.720000pt;}
.y59{bottom:2.773333pt;}
.y85{bottom:2.826667pt;}
.y26{bottom:2.933333pt;}
.yed{bottom:2.986667pt;}
.y162{bottom:3.040000pt;}
.y173{bottom:3.093333pt;}
.y140{bottom:3.146667pt;}
.y110{bottom:3.200000pt;}
.yab{bottom:3.253333pt;}
.y51{bottom:3.306667pt;}
.y41{bottom:3.360000pt;}
.y129{bottom:3.626667pt;}
.y150{bottom:4.000000pt;}
.y12c{bottom:7.893333pt;}
.ye7{bottom:7.946667pt;}
.y104{bottom:8.160000pt;}
.y102{bottom:8.266667pt;}
.y125{bottom:8.320000pt;}
.y139{bottom:8.426667pt;}
.y34{bottom:8.480000pt;}
.y13b{bottom:8.586667pt;}
.y5c{bottom:8.693333pt;}
.y1b4{bottom:8.853333pt;}
.y87{bottom:8.906667pt;}
.y28{bottom:9.013333pt;}
.y4d{bottom:9.066667pt;}
.y100{bottom:9.120000pt;}
.y10b{bottom:9.280000pt;}
.yad{bottom:9.333333pt;}
.yc7{bottom:9.386667pt;}
.y1a4{bottom:10.506667pt;}
.y1e{bottom:10.826667pt;}
.yc4{bottom:13.653333pt;}
.y69{bottom:13.706667pt;}
.y2f{bottom:13.920000pt;}
.ye0{bottom:13.973333pt;}
.y9a{bottom:14.026667pt;}
.y122{bottom:14.080000pt;}
.y135{bottom:14.186667pt;}
.y37{bottom:14.240000pt;}
.ya3{bottom:14.293333pt;}
.y79{bottom:14.346667pt;}
.yf9{bottom:14.400000pt;}
.yd5{bottom:14.560000pt;}
.y58{bottom:14.613333pt;}
.y84{bottom:14.666667pt;}
.y25{bottom:14.773333pt;}
.yec{bottom:14.826667pt;}
.yfe{bottom:14.880000pt;}
.y172{bottom:14.933333pt;}
.y13e{bottom:14.986667pt;}
.y10f{bottom:15.040000pt;}
.yaa{bottom:15.093333pt;}
.y50{bottom:15.146667pt;}
.y40{bottom:15.200000pt;}
.y14a{bottom:19.680000pt;}
.y12b{bottom:19.733333pt;}
.ye6{bottom:19.786667pt;}
.y11f{bottom:19.840000pt;}
.y2c{bottom:20.000000pt;}
.ya6{bottom:20.053333pt;}
.y101{bottom:20.106667pt;}
.y138{bottom:20.266667pt;}
.y32{bottom:20.320000pt;}
.y144{bottom:20.373333pt;}
.y82{bottom:20.426667pt;}
.y5b{bottom:20.533333pt;}
.y141{bottom:20.746667pt;}
.y10a{bottom:20.800000pt;}
.y21{bottom:20.853333pt;}
.y4b{bottom:20.906667pt;}
.y3b{bottom:20.960000pt;}
.y128{bottom:21.226667pt;}
.y14f{bottom:21.600000pt;}
.y149{bottom:25.440000pt;}
.yc3{bottom:25.493333pt;}
.y64{bottom:25.546667pt;}
.y2a{bottom:25.760000pt;}
.ydf{bottom:25.813333pt;}
.y99{bottom:25.866667pt;}
.y121{bottom:25.920000pt;}
.y136{bottom:26.026667pt;}
.y36{bottom:26.080000pt;}
.ya0{bottom:26.133333pt;}
.y78{bottom:26.186667pt;}
.yf8{bottom:26.240000pt;}
.y1a8{bottom:26.293333pt;}
.yd4{bottom:26.400000pt;}
.y57{bottom:26.453333pt;}
.y83{bottom:26.506667pt;}
.y22{bottom:26.613333pt;}
.y47{bottom:26.666667pt;}
.y3f{bottom:26.720000pt;}
.y171{bottom:26.773333pt;}
.y13f{bottom:26.826667pt;}
.y10e{bottom:26.880000pt;}
.ya9{bottom:26.933333pt;}
.y9d{bottom:26.986667pt;}
.y2b{bottom:31.520000pt;}
.yb7{bottom:31.573333pt;}
.ye5{bottom:31.626667pt;}
.y124{bottom:31.680000pt;}
.y33{bottom:31.840000pt;}
.ya5{bottom:31.893333pt;}
.y80{bottom:31.946667pt;}
.y131{bottom:32.160000pt;}
.y1b3{bottom:32.213333pt;}
.y86{bottom:32.266667pt;}
.y20{bottom:32.373333pt;}
.yea{bottom:32.426667pt;}
.yff{bottom:32.480000pt;}
.y108{bottom:32.640000pt;}
.yac{bottom:32.693333pt;}
.y4a{bottom:32.746667pt;}
.y39{bottom:32.800000pt;}
.y148{bottom:37.280000pt;}
.yc2{bottom:37.333333pt;}
.y63{bottom:37.386667pt;}
.y120{bottom:37.440000pt;}
.y2e{bottom:37.600000pt;}
.ya2{bottom:37.653333pt;}
.y98{bottom:37.706667pt;}
.y18a{bottom:37.760000pt;}
.y35{bottom:37.920000pt;}
.y146{bottom:37.973333pt;}
.y77{bottom:38.026667pt;}
.yf7{bottom:38.080000pt;}
.y1a7{bottom:38.133333pt;}
.y191{bottom:38.240000pt;}
.y53{bottom:38.293333pt;}
.y106{bottom:38.400000pt;}
.y24{bottom:38.453333pt;}
.y46{bottom:38.506667pt;}
.y3e{bottom:38.560000pt;}
.y170{bottom:38.613333pt;}
.ya8{bottom:38.773333pt;}
.y112{bottom:38.826667pt;}
.yb6{bottom:43.093333pt;}
.y66{bottom:43.146667pt;}
.y103{bottom:43.360000pt;}
.yda{bottom:43.413333pt;}
.yd8{bottom:43.466667pt;}
.y143{bottom:43.733333pt;}
.y7f{bottom:43.786667pt;}
.y1aa{bottom:43.893333pt;}
.ycd{bottom:44.000000pt;}
.y1b2{bottom:44.053333pt;}
.y27{bottom:44.213333pt;}
.y43{bottom:44.266667pt;}
.y3a{bottom:44.320000pt;}
.y107{bottom:44.480000pt;}
.y116{bottom:44.533333pt;}
.y9c{bottom:44.586667pt;}
.y14c{bottom:49.120000pt;}
.yc1{bottom:49.173333pt;}
.y62{bottom:49.226667pt;}
.y2d{bottom:49.440000pt;}
.ya1{bottom:49.493333pt;}
.y76{bottom:49.546667pt;}
.yf6{bottom:49.600000pt;}
.ycf{bottom:49.760000pt;}
.y56{bottom:49.813333pt;}
.y23{bottom:49.973333pt;}
.ye9{bottom:50.026667pt;}
.y161{bottom:50.080000pt;}
.y16b{bottom:50.133333pt;}
.y1c{bottom:50.240000pt;}
.y11d{bottom:50.293333pt;}
.y45{bottom:50.346667pt;}
.y3d{bottom:50.400000pt;}
.yb5{bottom:54.933333pt;}
.y5e{bottom:54.986667pt;}
.ydb{bottom:55.253333pt;}
.y133{bottom:55.306667pt;}
.ycc{bottom:55.520000pt;}
.y7e{bottom:55.626667pt;}
.y1b{bottom:55.680000pt;}
.y1a9{bottom:55.733333pt;}
.y18e{bottom:55.840000pt;}
.y1ad{bottom:55.893333pt;}
.y176{bottom:56.000000pt;}
.y49{bottom:56.106667pt;}
.y169{bottom:56.213333pt;}
.y109{bottom:56.320000pt;}
.y119{bottom:56.373333pt;}
.y111{bottom:56.426667pt;}
.yc0{bottom:60.693333pt;}
.y61{bottom:60.746667pt;}
.y14b{bottom:60.960000pt;}
.yde{bottom:61.013333pt;}
.y97{bottom:61.066667pt;}
.y189{bottom:61.120000pt;}
.y1a2{bottom:61.280000pt;}
.y145{bottom:61.333333pt;}
.y75{bottom:61.386667pt;}
.yf5{bottom:61.440000pt;}
.yc9{bottom:61.600000pt;}
.y55{bottom:61.653333pt;}
.y12f{bottom:61.813333pt;}
.yeb{bottom:61.866667pt;}
.y159{bottom:61.920000pt;}
.y167{bottom:61.973333pt;}
.y10d{bottom:62.080000pt;}
.y11c{bottom:62.133333pt;}
.y44{bottom:62.186667pt;}
.y3c{bottom:62.240000pt;}
.yb4{bottom:66.773333pt;}
.y65{bottom:66.826667pt;}
.ye1{bottom:67.093333pt;}
.y6e{bottom:67.146667pt;}
.yef{bottom:67.200000pt;}
.ycb{bottom:67.360000pt;}
.y1b1{bottom:67.413333pt;}
.y18d{bottom:67.680000pt;}
.y1a{bottom:67.840000pt;}
.y118{bottom:67.893333pt;}
.y48{bottom:67.946667pt;}
.y165{bottom:68.053333pt;}
.ybf{bottom:72.533333pt;}
.y60{bottom:72.586667pt;}
.y197{bottom:72.800000pt;}
.ydd{bottom:72.853333pt;}
.y96{bottom:72.906667pt;}
.y180{bottom:72.960000pt;}
.y74{bottom:73.226667pt;}
.yf4{bottom:73.280000pt;}
.yce{bottom:73.440000pt;}
.y54{bottom:73.493333pt;}
.y12e{bottom:73.653333pt;}
.y4f{bottom:73.706667pt;}
.y157{bottom:73.760000pt;}
.y166{bottom:73.813333pt;}
.y10c{bottom:73.920000pt;}
.y11b{bottom:73.973333pt;}
.y9e{bottom:74.026667pt;}
.y147{bottom:76.000000pt;}
.y1be{bottom:78.400000pt;}
.yaf{bottom:78.613333pt;}
.y8c{bottom:78.666667pt;}
.y19b{bottom:78.880000pt;}
.y7d{bottom:78.986667pt;}
.yfa{bottom:79.040000pt;}
.yca{bottom:79.200000pt;}
.y1b0{bottom:79.253333pt;}
.y1df{bottom:79.360000pt;}
.y15b{bottom:79.520000pt;}
.y168{bottom:79.573333pt;}
.y6c{bottom:79.680000pt;}
.y117{bottom:79.733333pt;}
.y4c{bottom:79.786667pt;}
.yd9{bottom:82.666667pt;}
.ybe{bottom:84.373333pt;}
.y5f{bottom:84.426667pt;}
.y196{bottom:84.640000pt;}
.ydc{bottom:84.693333pt;}
.y8e{bottom:84.746667pt;}
.y17f{bottom:84.800000pt;}
.yd3{bottom:84.960000pt;}
.y1b7{bottom:85.013333pt;}
.y73{bottom:85.066667pt;}
.yf3{bottom:85.120000pt;}
.y18f{bottom:85.280000pt;}
.y177{bottom:85.440000pt;}
.y4e{bottom:85.546667pt;}
.y156{bottom:85.600000pt;}
.y16a{bottom:85.653333pt;}
.y11a{bottom:85.813333pt;}
.y114{bottom:85.866667pt;}
.y1bd{bottom:88.320000pt;}
.yb3{bottom:90.133333pt;}
.ye4{bottom:90.186667pt;}
.y8b{bottom:90.506667pt;}
.y182{bottom:90.560000pt;}
.y19a{bottom:90.720000pt;}
.y7c{bottom:90.826667pt;}
.y1af{bottom:91.093333pt;}
.y153{bottom:91.360000pt;}
.y175{bottom:91.520000pt;}
.y6b{bottom:91.840000pt;}
.ybd{bottom:96.213333pt;}
.y68{bottom:96.266667pt;}
.y1de{bottom:96.320000pt;}
.y193{bottom:96.480000pt;}
.y72{bottom:96.586667pt;}
.yf2{bottom:96.640000pt;}
.yd2{bottom:96.800000pt;}
.y1b6{bottom:96.853333pt;}
.y155{bottom:97.120000pt;}
.y16f{bottom:97.173333pt;}
.y17c{bottom:97.280000pt;}
.y113{bottom:97.386667pt;}
.yb2{bottom:101.973333pt;}
.ye3{bottom:102.026667pt;}
.y199{bottom:102.240000pt;}
.y8a{bottom:102.346667pt;}
.y181{bottom:102.400000pt;}
.y7b{bottom:102.666667pt;}
.y1ae{bottom:102.933333pt;}
.y15a{bottom:103.200000pt;}
.y9f{bottom:106.666667pt;}
.ybc{bottom:107.733333pt;}
.y67{bottom:107.786667pt;}
.y8d{bottom:108.106667pt;}
.y188{bottom:108.160000pt;}
.y195{bottom:108.320000pt;}
.y71{bottom:108.426667pt;}
.yf1{bottom:108.480000pt;}
.yd1{bottom:108.640000pt;}
.y1b5{bottom:108.693333pt;}
.y154{bottom:108.960000pt;}
.y16e{bottom:109.013333pt;}
.y17b{bottom:109.120000pt;}
.y1dd{bottom:112.960000pt;}
.yb1{bottom:113.813333pt;}
.y89{bottom:113.866667pt;}
.y198{bottom:114.080000pt;}
.y1ba{bottom:114.186667pt;}
.ybb{bottom:119.573333pt;}
.y194{bottom:119.840000pt;}
.y95{bottom:119.946667pt;}
.y187{bottom:120.000000pt;}
.y70{bottom:120.266667pt;}
.yf0{bottom:120.320000pt;}
.yd0{bottom:120.480000pt;}
.y158{bottom:120.800000pt;}
.y16d{bottom:120.853333pt;}
.y17a{bottom:120.960000pt;}
.yb0{bottom:125.653333pt;}
.y1b9{bottom:126.026667pt;}
.y5d{bottom:129.333333pt;}
.y1dc{bottom:129.920000pt;}
.yba{bottom:131.413333pt;}
.y1a1{bottom:131.680000pt;}
.y94{bottom:131.786667pt;}
.y186{bottom:131.840000pt;}
.y6f{bottom:132.106667pt;}
.yfb{bottom:132.160000pt;}
.y190{bottom:132.320000pt;}
.y179{bottom:132.480000pt;}
.y160{bottom:132.640000pt;}
.y16c{bottom:132.693333pt;}
.y1bc{bottom:139.520000pt;}
.y19{bottom:140.800000pt;}
.yb9{bottom:143.253333pt;}
.y93{bottom:143.306667pt;}
.y1a0{bottom:143.520000pt;}
.y1bb{bottom:143.626667pt;}
.y185{bottom:143.680000pt;}
.y15f{bottom:144.160000pt;}
.y178{bottom:144.320000pt;}
.y1db{bottom:146.560000pt;}
.y142{bottom:146.666667pt;}
.y1b8{bottom:153.333333pt;}
.yb8{bottom:154.773333pt;}
.y92{bottom:155.146667pt;}
.y184{bottom:155.200000pt;}
.y19f{bottom:155.360000pt;}
.y15e{bottom:156.000000pt;}
.y18{bottom:157.440000pt;}
.y9b{bottom:165.333333pt;}
.y19e{bottom:166.880000pt;}
.y91{bottom:166.986667pt;}
.y183{bottom:167.040000pt;}
.y15d{bottom:167.840000pt;}
.y17{bottom:174.400000pt;}
.yd7{bottom:177.333333pt;}
.y19d{bottom:178.720000pt;}
.y90{bottom:178.826667pt;}
.y15c{bottom:179.680000pt;}
.y1da{bottom:179.840000pt;}
.y18b{bottom:184.000000pt;}
.y8f{bottom:190.346667pt;}
.y19c{bottom:190.560000pt;}
.y16{bottom:191.040000pt;}
.y1d9{bottom:202.240000pt;}
.y15{bottom:208.000000pt;}
.y13d{bottom:217.333333pt;}
.y1d8{bottom:218.880000pt;}
.y14{bottom:224.640000pt;}
.y164{bottom:226.666667pt;}
.y126{bottom:233.920000pt;}
.y1d7{bottom:235.840000pt;}
.yfd{bottom:236.000000pt;}
.y13{bottom:241.600000pt;}
.y5a{bottom:246.666667pt;}
.y11e{bottom:248.000000pt;}
.y88{bottom:249.333333pt;}
.y1d6{bottom:252.480000pt;}
.y13c{bottom:253.333333pt;}
.y17e{bottom:256.000000pt;}
.yc8{bottom:260.000000pt;}
.y1d5{bottom:269.440000pt;}
.y1a3{bottom:278.080000pt;}
.y12{bottom:279.360000pt;}
.y52{bottom:282.666667pt;}
.y1d4{bottom:286.080000pt;}
.y192{bottom:292.000000pt;}
.y115{bottom:294.666667pt;}
.yee{bottom:296.000000pt;}
.y11{bottom:301.440000pt;}
.y1d3{bottom:303.040000pt;}
.y1ac{bottom:306.666667pt;}
.y1f5{bottom:307.520000pt;}
.y13a{bottom:313.333333pt;}
.y10{bottom:318.400000pt;}
.y1d2{bottom:319.680000pt;}
.y1f4{bottom:324.160000pt;}
.yf{bottom:335.040000pt;}
.y1d1{bottom:336.640000pt;}
.y1f3{bottom:341.120000pt;}
.y134{bottom:349.333333pt;}
.ye{bottom:352.000000pt;}
.y1d0{bottom:353.280000pt;}
.y1f2{bottom:357.760000pt;}
.y42{bottom:365.333333pt;}
.yd{bottom:368.640000pt;}
.y163{bottom:369.333333pt;}
.y1cf{bottom:370.240000pt;}
.y1f1{bottom:374.720000pt;}
.y132{bottom:385.333333pt;}
.yc{bottom:385.600000pt;}
.y1ce{bottom:386.880000pt;}
.yc6{bottom:389.333333pt;}
.y1f0{bottom:391.360000pt;}
.y1cd{bottom:403.840000pt;}
.y1ef{bottom:408.320000pt;}
.y1cc{bottom:420.480000pt;}
.yb{bottom:423.360000pt;}
.y1ee{bottom:424.960000pt;}
.y1ab{bottom:425.333333pt;}
.yae{bottom:426.666667pt;}
.y152{bottom:428.000000pt;}
.y17d{bottom:433.333333pt;}
.ye8{bottom:437.333333pt;}
.y1cb{bottom:437.440000pt;}
.y1ed{bottom:441.920000pt;}
.ya{bottom:445.440000pt;}
.y81{bottom:449.333333pt;}
.y1ca{bottom:454.080000pt;}
.y1ec{bottom:458.560000pt;}
.y38{bottom:460.000000pt;}
.y9{bottom:462.400000pt;}
.y130{bottom:468.000000pt;}
.y1c9{bottom:471.040000pt;}
.y1eb{bottom:475.520000pt;}
.y8{bottom:479.360000pt;}
.y174{bottom:480.000000pt;}
.y1c8{bottom:487.680000pt;}
.y18c{bottom:492.000000pt;}
.y1ea{bottom:492.160000pt;}
.y105{bottom:496.000000pt;}
.y6d{bottom:497.333333pt;}
.y7{bottom:497.600000pt;}
.y1c7{bottom:504.640000pt;}
.y1e9{bottom:509.120000pt;}
.y1c6{bottom:521.280000pt;}
.ye2{bottom:521.333333pt;}
.y1e8{bottom:525.760000pt;}
.y31{bottom:532.000000pt;}
.y6{bottom:534.720000pt;}
.y1c5{bottom:538.240000pt;}
.y1e7{bottom:542.720000pt;}
.y12d{bottom:550.666667pt;}
.y1c4{bottom:554.880000pt;}
.y1e6{bottom:559.360000pt;}
.y1a6{bottom:566.666667pt;}
.y1c3{bottom:571.840000pt;}
.y1e5{bottom:576.320000pt;}
.y29{bottom:580.000000pt;}
.y5{bottom:583.360000pt;}
.y1c2{bottom:588.480000pt;}
.ya7{bottom:590.666667pt;}
.y1e4{bottom:592.960000pt;}
.y1c1{bottom:605.440000pt;}
.y1e3{bottom:609.920000pt;}
.y151{bottom:617.333333pt;}
.y1e2{bottom:626.560000pt;}
.y4{bottom:631.680000pt;}
.y12a{bottom:634.666667pt;}
.y1a5{bottom:637.333333pt;}
.y1f{bottom:638.666667pt;}
.y1c0{bottom:638.720000pt;}
.y1e1{bottom:643.520000pt;}
.y14e{bottom:676.000000pt;}
.y1e0{bottom:676.800000pt;}
.y127{bottom:693.333333pt;}
.y1d{bottom:697.333333pt;}
.y3{bottom:699.200000pt;}
.y1bf{bottom:700.800000pt;}
.y2{bottom:715.840000pt;}
.y1{bottom:732.800000pt;}
.h21{height:24.056320pt;}
.h7{height:24.224000pt;}
.hb{height:28.099840pt;}
.hc{height:29.272320pt;}
.h8{height:32.000000pt;}
.h1a{height:36.000000pt;}
.h11{height:37.333333pt;}
.h1c{height:40.051200pt;}
.h2{height:40.696320pt;}
.h9{height:42.634240pt;}
.h3{height:43.424000pt;}
.h5{height:44.572160pt;}
.hd{height:48.000000pt;}
.h15{height:49.333333pt;}
.ha{height:60.000000pt;}
.h20{height:61.333333pt;}
.h6{height:67.921920pt;}
.h1b{height:70.666667pt;}
.he{height:72.000000pt;}
.h10{height:84.000000pt;}
.h4{height:93.265920pt;}
.h18{height:94.666667pt;}
.hf{height:96.000000pt;}
.h22{height:101.376000pt;}
.h19{height:108.000000pt;}
.h12{height:118.666667pt;}
.h17{height:130.666667pt;}
.h13{height:142.666667pt;}
.h1e{height:154.666667pt;}
.h16{height:165.333333pt;}
.h1f{height:177.333333pt;}
.h1d{height:189.333333pt;}
.h14{height:201.333333pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.wa{width:66.666667pt;}
.w7{width:68.000000pt;}
.w6{width:76.000000pt;}
.w5{width:77.333333pt;}
.w8{width:85.333333pt;}
.w4{width:114.666667pt;}
.w3{width:133.333333pt;}
.wb{width:217.333333pt;}
.w9{width:218.666667pt;}
.w2{width:1030.666667pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x14{left:6.773333pt;}
.x8{left:7.680000pt;}
.x1{left:48.000000pt;}
.x4{left:55.784192pt;}
.x1b{left:72.000000pt;}
.x3{left:101.824224pt;}
.x9{left:180.000000pt;}
.x6{left:240.000000pt;}
.x5{left:246.468416pt;}
.x1a{left:277.863360pt;}
.xa{left:293.333333pt;}
.xb{left:369.333333pt;}
.x17{left:380.123200pt;}
.x7{left:418.167680pt;}
.x19{left:425.524160pt;}
.x18{left:433.623360pt;}
.xc{left:444.000000pt;}
.xd{left:510.666667pt;}
.x2{left:561.266560pt;}
.xe{left:577.333333pt;}
.xf{left:661.333333pt;}
.x13{left:662.666667pt;}
.x10{left:878.666667pt;}
.x15{left:880.000000pt;}
.x11{left:945.333333pt;}
.x12{left:1010.666667pt;}
.x16{left:1012.000000pt;}
}




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