
    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_c1c66806c42d01880f5a044c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009000;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_e2dc9897ecda2b00cd0acf4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_089a7f7d5ccd990f90536ae4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.011000;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_a825ff6094012434cf2e36ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925000;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_8b9e723576cfd3d27adf600d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989000;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_96e108a1d4b9abe45fe4b050.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_6cbb2ef51f4ec16093b3cd39.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919922;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_dd00bb968dd8c5e2c9fead21.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906738;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_1c4067c62fcf5c5fd3033870.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919922;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_f8bdbc2c157344b28a9b536c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919922;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_d06ecd915f0ddadbe56b7946.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973000;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);}
.v5{vertical-align:-32.728588px;}
.v4{vertical-align:-21.696000px;}
.v6{vertical-align:-8.182147px;}
.v2{vertical-align:-4.338000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.988000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.lsb{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000500px;}
.ls26{letter-spacing:0.000583px;}
.ls1b{letter-spacing:0.002100px;}
.ls11{letter-spacing:0.002700px;}
.ls19{letter-spacing:0.002725px;}
.ls31{letter-spacing:0.003986px;}
.ls8{letter-spacing:0.004200px;}
.ls1d{letter-spacing:0.004350px;}
.ls20{letter-spacing:0.005108px;}
.ls15{letter-spacing:2.391030px;}
.ls13{letter-spacing:2.540490px;}
.ls1{letter-spacing:2.689920px;}
.ls21{letter-spacing:2.985623px;}
.ls1f{letter-spacing:2.987108px;}
.ls24{letter-spacing:2.987686px;}
.lsc{letter-spacing:2.987700px;}
.ls22{letter-spacing:2.988476px;}
.ls3{letter-spacing:2.988780px;}
.ls23{letter-spacing:2.990725px;}
.ls25{letter-spacing:2.994583px;}
.ls2c{letter-spacing:3.264500px;}
.ls2b{letter-spacing:3.270500px;}
.ls2a{letter-spacing:3.486500px;}
.ls29{letter-spacing:3.492500px;}
.ls2f{letter-spacing:3.510500px;}
.ls2e{letter-spacing:3.516500px;}
.ls2d{letter-spacing:3.984500px;}
.ls5{letter-spacing:10.958100px;}
.ls7{letter-spacing:13.913700px;}
.lse{letter-spacing:13.916850px;}
.lsa{letter-spacing:17.392200px;}
.ls1c{letter-spacing:17.394583px;}
.ls28{letter-spacing:17.396100px;}
.ls9{letter-spacing:17.398200px;}
.ls27{letter-spacing:18.890100px;}
.ls0{letter-spacing:19.939200px;}
.lsf{letter-spacing:20.381700px;}
.ls6{letter-spacing:20.387700px;}
.lsd{letter-spacing:24.563700px;}
.ls17{letter-spacing:35.866200px;}
.ls1e{letter-spacing:35.870100px;}
.ls12{letter-spacing:65.450700px;}
.ls2{letter-spacing:71.732400px;}
.ls4{letter-spacing:195.947700px;}
.ls16{letter-spacing:634.892100px;}
.ls18{letter-spacing:722.384100px;}
.ls10{letter-spacing:1061.021700px;}
.ls14{letter-spacing:1119.806100px;}
.ls1a{letter-spacing:1276.928100px;}
.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;}
}
.ws6{word-spacing:-17.932800px;}
.ws16{word-spacing:-16.363650px;}
.ws9{word-spacing:-14.943900px;}
.ws26{word-spacing:-12.273221px;}
.ws23{word-spacing:-11.974546px;}
.ws25{word-spacing:-11.955150px;}
.ws27{word-spacing:-11.250452px;}
.ws18{word-spacing:-3.048556px;}
.ws5{word-spacing:-2.743718px;}
.ws31{word-spacing:-2.591300px;}
.ws34{word-spacing:-2.438851px;}
.ws3{word-spacing:-0.071731px;}
.ws5e{word-spacing:-0.065455px;}
.ws1a{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.050810px;}
.wsb{word-spacing:-0.047821px;}
.ws10{word-spacing:0.000000px;}
.wsa{word-spacing:1.673717px;}
.ws72{word-spacing:1.674106px;}
.ws17{word-spacing:1.832729px;}
.ws47{word-spacing:1.956574px;}
.ws48{word-spacing:1.957447px;}
.ws24{word-spacing:1.958625px;}
.wsc{word-spacing:1.960645px;}
.ws2{word-spacing:2.008166px;}
.ws1{word-spacing:2.008474px;}
.ws4{word-spacing:2.205734px;}
.ws0{word-spacing:2.410162px;}
.ws44{word-spacing:2.446320px;}
.ws43{word-spacing:2.446486px;}
.ws66{word-spacing:2.447191px;}
.ws6f{word-spacing:2.448115px;}
.ws4b{word-spacing:2.448460px;}
.ws41{word-spacing:2.448487px;}
.ws19{word-spacing:2.448650px;}
.wsd{word-spacing:2.448974px;}
.ws3c{word-spacing:2.449343px;}
.ws65{word-spacing:2.449471px;}
.ws39{word-spacing:2.449526px;}
.ws3e{word-spacing:2.450131px;}
.ws56{word-spacing:2.450179px;}
.ws28{word-spacing:2.450389px;}
.ws6c{word-spacing:2.450407px;}
.ws67{word-spacing:2.450425px;}
.ws5f{word-spacing:2.450552px;}
.ws35{word-spacing:2.450743px;}
.ws7{word-spacing:2.450800px;}
.ws6a{word-spacing:2.451791px;}
.ws74{word-spacing:2.451929px;}
.ws3f{word-spacing:2.452201px;}
.wsf{word-spacing:2.452219px;}
.ws2a{word-spacing:2.452486px;}
.ws68{word-spacing:2.452597px;}
.ws2f{word-spacing:2.452704px;}
.ws60{word-spacing:2.453746px;}
.ws73{word-spacing:2.454451px;}
.ws12{word-spacing:2.940979px;}
.ws57{word-spacing:3.943343px;}
.ws13{word-spacing:5.082975px;}
.ws1c{word-spacing:6.635092px;}
.ws76{word-spacing:8.536046px;}
.ws70{word-spacing:9.806291px;}
.ws6e{word-spacing:10.111150px;}
.ws69{word-spacing:10.161960px;}
.ws6b{word-spacing:10.314389px;}
.ws1e{word-spacing:10.930312px;}
.ws20{word-spacing:12.850955px;}
.ws8{word-spacing:12.851545px;}
.wse{word-spacing:12.856955px;}
.ws46{word-spacing:13.871579px;}
.ws29{word-spacing:13.872800px;}
.ws11{word-spacing:15.183002px;}
.ws64{word-spacing:15.242778px;}
.ws6d{word-spacing:16.556624px;}
.ws71{word-spacing:17.334924px;}
.ws75{word-spacing:17.341193px;}
.ws3b{word-spacing:17.342194px;}
.ws49{word-spacing:17.342695px;}
.ws32{word-spacing:17.343195px;}
.ws30{word-spacing:17.343695px;}
.ws5c{word-spacing:17.344196px;}
.ws36{word-spacing:17.344691px;}
.ws2d{word-spacing:17.344696px;}
.ws42{word-spacing:17.345192px;}
.ws3a{word-spacing:17.345197px;}
.ws55{word-spacing:17.345692px;}
.ws40{word-spacing:17.345697px;}
.ws4a{word-spacing:17.347193px;}
.ws59{word-spacing:17.347694px;}
.ws2b{word-spacing:17.348194px;}
.ws45{word-spacing:17.348695px;}
.ws3d{word-spacing:17.349195px;}
.ws38{word-spacing:18.832517px;}
.ws21{word-spacing:20.333579px;}
.ws2c{word-spacing:20.339579px;}
.ws37{word-spacing:24.429208px;}
.ws4f{word-spacing:24.515579px;}
.ws4d{word-spacing:24.521579px;}
.ws2e{word-spacing:30.536690px;}
.ws51{word-spacing:35.812691px;}
.ws58{word-spacing:35.815193px;}
.ws4c{word-spacing:35.816194px;}
.ws5b{word-spacing:35.816695px;}
.ws53{word-spacing:35.817695px;}
.ws62{word-spacing:163.799579px;}
.ws14{word-spacing:185.610001px;}
.ws33{word-spacing:195.479692px;}
.ws5d{word-spacing:199.487579px;}
.ws1d{word-spacing:202.115579px;}
.ws63{word-spacing:211.844726px;}
.ws15{word-spacing:230.800009px;}
.ws50{word-spacing:239.519579px;}
.ws4e{word-spacing:251.539667px;}
.ws1f{word-spacing:254.597579px;}
.ws52{word-spacing:596.273579px;}
.ws61{word-spacing:1003.589579px;}
.ws54{word-spacing:1169.645579px;}
.ws5a{word-spacing:1291.115579px;}
.ws22{word-spacing:1308.743579px;}
._8{margin-left:-6.833599px;}
._1{margin-left:-5.308109px;}
._4{margin-left:-3.981082px;}
._3{margin-left:-2.797517px;}
._0{margin-left:-1.721544px;}
._9{width:1.075961px;}
._c{width:2.603475px;}
._7{width:4.423394px;}
._27{width:6.300415px;}
._28{width:7.367421px;}
._17{width:15.202737px;}
._5{width:17.534467px;}
._2{width:19.152230px;}
._25{width:20.610646px;}
._6{width:21.614870px;}
._15{width:30.587500px;}
._14{width:35.863459px;}
._b{width:58.161731px;}
._26{width:71.728920px;}
._12{width:77.504689px;}
._11{width:133.972670px;}
._23{width:140.296008px;}
._f{width:154.992474px;}
._e{width:158.467031px;}
._d{width:168.900884px;}
._18{width:170.894671px;}
._a{width:177.001111px;}
._19{width:186.317437px;}
._13{width:191.323343px;}
._1e{width:199.455401px;}
._1b{width:201.615430px;}
._22{width:232.058507px;}
._10{width:245.752070px;}
._1d{width:258.418730px;}
._1c{width:266.002394px;}
._1a{width:277.132201px;}
._1f{width:336.177974px;}
._21{width:354.408505px;}
._24{width:370.811032px;}
._20{width:872.185780px;}
._16{width:936.814949px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs9{font-size:31.932122px;}
.fsd{font-size:32.728588px;}
.fsa{font-size:35.923637px;}
.fse{font-size:36.819662px;}
.fs11{font-size:40.647600px;}
.fsb{font-size:43.906668px;}
.fsf{font-size:45.001809px;}
.fs4{font-size:47.820600px;}
.fsc{font-size:47.898183px;}
.fs10{font-size:49.092882px;}
.fs8{font-size:50.809800px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs6{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:13.828683px;}
.y7d{bottom:34.848499px;}
.y92{bottom:44.511734px;}
.y7c{bottom:49.816681px;}
.y74{bottom:54.806075px;}
.ya6{bottom:56.784955px;}
.y90{bottom:67.012639px;}
.ya5{bottom:72.126481px;}
.y8d{bottom:75.194786px;}
.y8f{bottom:82.354165px;}
.y73{bottom:91.727591px;}
.y79{bottom:104.700016px;}
.y8c{bottom:112.014448px;}
.y76{bottom:112.683046px;}
.y81{bottom:119.173826px;}
.y78{bottom:119.668198px;}
.ya4{bottom:121.219363px;}
.y72{bottom:129.646986px;}
.y87{bottom:131.447047px;}
.y85{bottom:132.469815px;}
.y65{bottom:155.591835px;}
.y84{bottom:155.993488px;}
.y7f{bottom:156.828000px;}
.y1ab{bottom:158.635500px;}
.y1d5{bottom:159.451500px;}
.y91{bottom:162.130098px;}
.y77{bottom:162.576987px;}
.yc3{bottom:165.594000px;}
.y8b{bottom:166.221172px;}
.y69{bottom:168.564259px;}
.y18e{bottom:170.139000px;}
.y7e{bottom:171.772500px;}
.y141{bottom:172.486500px;}
.y83{bottom:175.426087px;}
.y10e{bottom:175.476000px;}
.y12e{bottom:177.384000px;}
.y94{bottom:178.494392px;}
.y89{bottom:179.517161px;}
.y1aa{bottom:179.556000px;}
.y1d4{bottom:180.373500px;}
.yc2{bottom:186.516000px;}
.yeb{bottom:189.349500px;}
.y82{bottom:190.767613px;}
.y18d{bottom:191.059500px;}
.y68{bottom:191.515472px;}
.y140{bottom:193.408500px;}
.y6b{bottom:194.509109px;}
.y88{bottom:194.858687px;}
.y10d{bottom:196.398000px;}
.y75{bottom:197.502745px;}
.y12d{bottom:198.306000px;}
.y1a9{bottom:200.478000px;}
.y1d3{bottom:201.295500px;}
.y93{bottom:202.018065px;}
.y86{bottom:207.131907px;}
.yc1{bottom:207.438000px;}
.y16d{bottom:207.574500px;}
.y64{bottom:209.131500px;}
.yea{bottom:210.271500px;}
.y67{bottom:210.475169px;}
.y18c{bottom:211.981500px;}
.y13f{bottom:214.330500px;}
.y10c{bottom:217.318500px;}
.y12c{bottom:219.228000px;}
.y1a8{bottom:221.400000px;}
.y66{bottom:225.443352px;}
.y1d2{bottom:227.863500px;}
.yc0{bottom:228.358500px;}
.y16c{bottom:228.496500px;}
.y9c{bottom:230.655580px;}
.ye9{bottom:231.193500px;}
.y18b{bottom:232.903500px;}
.ya7{bottom:233.723885px;}
.y7a{bottom:237.417897px;}
.y10b{bottom:238.240500px;}
.y12b{bottom:240.150000px;}
.y6a{bottom:241.409413px;}
.y1a7{bottom:242.320500px;}
.y4c{bottom:243.597000px;}
.y9b{bottom:243.951569px;}
.y28{bottom:246.619500px;}
.y13e{bottom:247.206000px;}
.y1d1{bottom:248.785500px;}
.y16b{bottom:249.417000px;}
.ya8{bottom:253.156484px;}
.y18a{bottom:253.824000px;}
.y9a{bottom:257.247558px;}
.y10a{bottom:259.162500px;}
.y12a{bottom:261.070500px;}
.ybf{bottom:261.235500px;}
.y1a6{bottom:263.242500px;}
.ye8{bottom:264.070500px;}
.y4b{bottom:264.519000px;}
.y6c{bottom:267.354262px;}
.y27{bottom:267.540000px;}
.y13d{bottom:268.128000px;}
.ya1{bottom:268.498010px;}
.y1d0{bottom:269.707500px;}
.y16a{bottom:270.339000px;}
.y6e{bottom:274.339413px;}
.y189{bottom:274.746000px;}
.y7b{bottom:275.337292px;}
.y109{bottom:280.083000px;}
.y129{bottom:281.992500px;}
.ybe{bottom:282.157500px;}
.y6f{bottom:282.322444px;}
.ya0{bottom:282.816767px;}
.y1a5{bottom:284.164500px;}
.ye7{bottom:284.991000px;}
.y4a{bottom:285.441000px;}
.y26{bottom:288.462000px;}
.y13c{bottom:289.050000px;}
.y6d{bottom:289.307596px;}
.y1cf{bottom:290.629500px;}
.y169{bottom:291.261000px;}
.y188{bottom:295.668000px;}
.y128{bottom:302.914500px;}
.ybd{bottom:303.079500px;}
.y1a4{bottom:305.086500px;}
.ybc{bottom:306.067500px;}
.y96{bottom:307.363209px;}
.y25{bottom:309.384000px;}
.y1ce{bottom:311.550000px;}
.y168{bottom:312.181500px;}
.y9f{bottom:312.477050px;}
.y108{bottom:312.960000px;}
.y187{bottom:316.590000px;}
.y70{bottom:317.248202px;}
.ye6{bottom:317.868000px;}
.ybb{bottom:321.012000px;}
.y8a{bottom:321.681966px;}
.y13b{bottom:321.927000px;}
.y49{bottom:322.482000px;}
.y95{bottom:322.704734px;}
.ya3{bottom:323.727503px;}
.y1a3{bottom:326.007000px;}
.y9e{bottom:329.864113px;}
.y24{bottom:330.304500px;}
.y1cd{bottom:332.472000px;}
.y167{bottom:333.103500px;}
.y107{bottom:333.882000px;}
.y127{bottom:335.790000px;}
.yba{bottom:335.955000px;}
.y186{bottom:337.510500px;}
.ye5{bottom:338.790000px;}
.y71{bottom:342.195172px;}
.y13a{bottom:342.847500px;}
.y9d{bottom:344.182870px;}
.y1a2{bottom:346.929000px;}
.y99{bottom:348.273944px;}
.y23{bottom:351.226500px;}
.y165{bottom:354.025500px;}
.y106{bottom:354.804000px;}
.y126{bottom:356.712000px;}
.yb9{bottom:356.877000px;}
.y185{bottom:358.432500px;}
.y1cc{bottom:359.041500px;}
.y98{bottom:362.592701px;}
.y139{bottom:363.769500px;}
.ya2{bottom:364.638238px;}
.y1a1{bottom:367.851000px;}
.y48{bottom:370.923000px;}
.ye4{bottom:371.667000px;}
.y97{bottom:371.797617px;}
.y22{bottom:372.148500px;}
.y164{bottom:374.946000px;}
.y105{bottom:375.724500px;}
.y125{bottom:377.634000px;}
.yb8{bottom:377.799000px;}
.y184{bottom:379.354500px;}
.y1cb{bottom:379.962000px;}
.y138{bottom:384.691500px;}
.ye1{bottom:386.610000px;}
.y1a0{bottom:388.771500px;}
.y47{bottom:391.845000px;}
.ye3{bottom:392.587500px;}
.y21{bottom:393.070500px;}
.yb5{bottom:395.731500px;}
.y163{bottom:395.868000px;}
.y124{bottom:398.556000px;}
.yb7{bottom:398.721000px;}
.y183{bottom:400.275000px;}
.y1ca{bottom:400.884000px;}
.ye0{bottom:401.554500px;}
.y104{bottom:408.601500px;}
.y19f{bottom:409.693500px;}
.yb4{bottom:410.676000px;}
.y46{bottom:412.765500px;}
.ye2{bottom:413.509500px;}
.y20{bottom:413.991000px;}
.ydf{bottom:416.499000px;}
.y162{bottom:416.790000px;}
.y137{bottom:417.568500px;}
.y123{bottom:419.476500px;}
.y182{bottom:421.197000px;}
.y1c9{bottom:421.806000px;}
.yb3{bottom:425.619000px;}
.y1e{bottom:425.946000px;}
.y103{bottom:429.523500px;}
.y19e{bottom:430.615500px;}
.yde{bottom:431.442000px;}
.y45{bottom:433.687500px;}
.yb6{bottom:434.586000px;}
.y1f{bottom:434.913000px;}
.y166{bottom:437.710500px;}
.y161{bottom:437.712000px;}
.y136{bottom:438.489000px;}
.y122{bottom:440.398500px;}
.yb2{bottom:440.563500px;}
.y1d{bottom:440.890500px;}
.y181{bottom:442.119000px;}
.y1c8{bottom:442.728000px;}
.ydd{bottom:446.386500px;}
.y102{bottom:450.444000px;}
.y19d{bottom:451.536000px;}
.y44{bottom:454.609500px;}
.yb1{bottom:455.508000px;}
.y1c{bottom:455.835000px;}
.y160{bottom:458.632500px;}
.y135{bottom:459.411000px;}
.y121{bottom:461.320500px;}
.y180{bottom:463.039500px;}
.ydc{bottom:467.308500px;}
.y1c7{bottom:469.296000px;}
.y101{bottom:471.366000px;}
.y43{bottom:475.530000px;}
.yb0{bottom:476.428500px;}
.y1b{bottom:476.755500px;}
.y15f{bottom:479.554500px;}
.y134{bottom:480.333000px;}
.y19c{bottom:480.564000px;}
.y17f{bottom:483.961500px;}
.ydb{bottom:488.229000px;}
.y1c6{bottom:490.218000px;}
.y100{bottom:492.288000px;}
.y120{bottom:494.196000px;}
.y42{bottom:496.452000px;}
.y1a{bottom:497.677500px;}
.y15e{bottom:500.476500px;}
.y133{bottom:501.253500px;}
.y17e{bottom:504.883500px;}
.yda{bottom:509.151000px;}
.y19b{bottom:509.592000px;}
.y1c5{bottom:511.140000px;}
.y11f{bottom:515.118000px;}
.y41{bottom:517.374000px;}
.yaf{bottom:518.262000px;}
.y19{bottom:518.599500px;}
.y15d{bottom:521.397000px;}
.y132{bottom:522.175500px;}
.yff{bottom:525.165000px;}
.y17d{bottom:525.805500px;}
.y19a{bottom:530.514000px;}
.y11e{bottom:536.040000px;}
.y1c4{bottom:537.709500px;}
.y40{bottom:538.294500px;}
.yae{bottom:539.182500px;}
.y18{bottom:539.520000px;}
.y15c{bottom:542.319000px;}
.y131{bottom:543.097500px;}
.yd9{bottom:545.016000px;}
.yfe{bottom:546.085500px;}
.y17c{bottom:546.726000px;}
.y199{bottom:551.436000px;}
.y11d{bottom:556.962000px;}
.y1c3{bottom:558.630000px;}
.y3f{bottom:559.216500px;}
.yad{bottom:560.104500px;}
.y17{bottom:560.442000px;}
.y15b{bottom:563.241000px;}
.yd8{bottom:565.938000px;}
.y17b{bottom:567.648000px;}
.y130{bottom:574.531500px;}
.y11c{bottom:577.882500px;}
.y1c2{bottom:579.552000px;}
.y3e{bottom:580.138500px;}
.y198{bottom:580.462500px;}
.yac{bottom:581.026500px;}
.y16{bottom:581.364000px;}
.yfd{bottom:581.952000px;}
.y15a{bottom:584.161500px;}
.yd7{bottom:586.860000px;}
.y17a{bottom:588.570000px;}
.y63{bottom:593.521500px;}
.y11b{bottom:598.804500px;}
.y1c1{bottom:600.474000px;}
.y3d{bottom:601.060500px;}
.y15{bottom:602.284500px;}
.yfc{bottom:602.872500px;}
.y159{bottom:605.083500px;}
.y179{bottom:609.490500px;}
.yab{bottom:612.460500px;}
.y62{bottom:614.443500px;}
.y11a{bottom:619.726500px;}
.y1c0{bottom:621.394500px;}
.y3c{bottom:621.981000px;}
.y158{bottom:626.005500px;}
.yd6{bottom:628.692000px;}
.y178{bottom:630.412500px;}
.yaa{bottom:631.140000px;}
.yfb{bottom:634.308000px;}
.y61{bottom:635.365500px;}
.y14{bottom:639.327000px;}
.y119{bottom:640.647000px;}
.y3b{bottom:642.903000px;}
.ya9{bottom:646.084500px;}
.y157{bottom:646.927500px;}
.y1bf{bottom:647.964000px;}
.yd5{bottom:649.614000px;}
.y177{bottom:651.334500px;}
.y60{bottom:656.286000px;}
.y118{bottom:661.569000px;}
.y3a{bottom:663.825000px;}
.y156{bottom:667.848000px;}
.y1be{bottom:668.886000px;}
.y176{bottom:672.255000px;}
.y5f{bottom:677.208000px;}
.yfa{bottom:679.501500px;}
.yd4{bottom:682.491000px;}
.y80{bottom:683.777959px;}
.y39{bottom:684.745500px;}
.y13{bottom:687.768000px;}
.y14f{bottom:688.468500px;}
.y155{bottom:688.770000px;}
.y1bd{bottom:689.808000px;}
.y175{bottom:693.177000px;}
.y117{bottom:694.446000px;}
.y5e{bottom:698.130000px;}
.yf9{bottom:700.423500px;}
.yd3{bottom:703.411500px;}
.y38{bottom:705.667500px;}
.y12{bottom:705.700500px;}
.y14e{bottom:709.389000px;}
.y154{bottom:709.692000px;}
.y1bc{bottom:710.728500px;}
.y174{bottom:714.099000px;}
.y116{bottom:715.368000px;}
.y5d{bottom:719.050500px;}
.yf8{bottom:721.345500px;}
.y11{bottom:723.633000px;}
.yd2{bottom:724.333500px;}
.y37{bottom:726.589500px;}
.y14d{bottom:730.311000px;}
.y153{bottom:730.612500px;}
.y197{bottom:735.019500px;}
.y173{bottom:735.021000px;}
.y115{bottom:736.288500px;}
.y1bb{bottom:737.298000px;}
.y5c{bottom:739.972500px;}
.y10{bottom:741.565500px;}
.y36{bottom:747.510000px;}
.y14c{bottom:751.233000px;}
.yf7{bottom:754.221000px;}
.y172{bottom:755.941500px;}
.yd1{bottom:757.210500px;}
.y1ba{bottom:758.220000px;}
.yf{bottom:759.498000px;}
.y152{bottom:759.640500px;}
.y5b{bottom:760.894500px;}
.y35{bottom:768.432000px;}
.y12f{bottom:769.165500px;}
.y14b{bottom:772.155000px;}
.yf6{bottom:775.143000px;}
.y171{bottom:776.863500px;}
.ye{bottom:777.432000px;}
.yd0{bottom:778.132500px;}
.y1b9{bottom:779.140500px;}
.y1dd{bottom:781.120500px;}
.y5a{bottom:781.815000px;}
.yf4{bottom:784.110000px;}
.y151{bottom:788.668500px;}
.y34{bottom:789.354000px;}
.y114{bottom:790.087500px;}
.y14a{bottom:793.075500px;}
.yd{bottom:795.364500px;}
.y170{bottom:797.785500px;}
.ycf{bottom:799.053000px;}
.y1dc{bottom:802.042500px;}
.y59{bottom:802.737000px;}
.y1b8{bottom:805.710000px;}
.yf5{bottom:808.020000px;}
.y150{bottom:809.590500px;}
.y33{bottom:810.276000px;}
.y113{bottom:811.008000px;}
.yc{bottom:813.297000px;}
.yf3{bottom:813.997500px;}
.y16f{bottom:818.706000px;}
.yce{bottom:819.975000px;}
.y1db{bottom:822.964500px;}
.y58{bottom:823.659000px;}
.y1b7{bottom:826.632000px;}
.yf2{bottom:828.942000px;}
.y32{bottom:831.196500px;}
.yb{bottom:831.229500px;}
.y112{bottom:831.930000px;}
.y149{bottom:834.919500px;}
.ycd{bottom:837.907500px;}
.y195{bottom:839.628000px;}
.y57{bottom:844.581000px;}
.y1b6{bottom:847.554000px;}
.y16e{bottom:847.734000px;}
.ya{bottom:849.162000px;}
.yf1{bottom:849.862500px;}
.y31{bottom:852.118500px;}
.ycc{bottom:852.852000px;}
.y148{bottom:855.840000px;}
.y194{bottom:860.550000px;}
.y56{bottom:865.501500px;}
.y9{bottom:867.094500px;}
.y1b5{bottom:868.474500px;}
.y1ac{bottom:868.656000px;}
.y1da{bottom:870.784500px;}
.y30{bottom:873.040500px;}
.y111{bottom:873.774000px;}
.y147{bottom:876.762000px;}
.y193{bottom:881.470500px;}
.yf0{bottom:882.739500px;}
.y8{bottom:885.028500px;}
.ycb{bottom:885.729000px;}
.y55{bottom:886.423500px;}
.y1b4{bottom:889.396500px;}
.y1d9{bottom:891.706500px;}
.y2f{bottom:893.961000px;}
.y110{bottom:894.694500px;}
.y146{bottom:897.684000px;}
.y192{bottom:902.392500px;}
.y7{bottom:902.961000px;}
.yef{bottom:903.661500px;}
.yca{bottom:906.649500px;}
.y54{bottom:907.345500px;}
.y1d8{bottom:912.627000px;}
.y2e{bottom:914.883000px;}
.y1b3{bottom:915.966000px;}
.y145{bottom:918.604500px;}
.y6{bottom:920.893500px;}
.y191{bottom:923.314500px;}
.yc9{bottom:927.571500px;}
.y53{bottom:928.266000px;}
.y1d7{bottom:933.549000px;}
.y2d{bottom:935.805000px;}
.yee{bottom:936.538500px;}
.y1b2{bottom:936.888000px;}
.y5{bottom:938.826000px;}
.y144{bottom:939.526500px;}
.y196{bottom:944.235000px;}
.y190{bottom:944.236500px;}
.yc8{bottom:948.493500px;}
.y52{bottom:949.188000px;}
.y1d6{bottom:954.471000px;}
.yed{bottom:957.459000px;}
.y1b1{bottom:957.808500px;}
.y143{bottom:960.448500px;}
.yc7{bottom:969.414000px;}
.y51{bottom:970.110000px;}
.y2c{bottom:972.846000px;}
.y18f{bottom:973.263000px;}
.y4{bottom:977.680500px;}
.y142{bottom:981.370500px;}
.y1b0{bottom:984.378000px;}
.yc6{bottom:990.336000px;}
.y50{bottom:991.030500px;}
.y10f{bottom:1002.291000px;}
.y1af{bottom:1005.300000px;}
.y3{bottom:1007.568000px;}
.yec{bottom:1011.258000px;}
.y4f{bottom:1011.952500px;}
.y2b{bottom:1020.223500px;}
.yc5{bottom:1023.213000px;}
.y1ae{bottom:1026.222000px;}
.y4e{bottom:1032.874500px;}
.y2{bottom:1037.457000px;}
.yc4{bottom:1044.135000px;}
.y1ad{bottom:1063.263000px;}
.y4d{bottom:1064.308500px;}
.y1{bottom:1064.355000px;}
.y2a{bottom:1065.055500px;}
.y29{bottom:1128.120000px;}
.he{height:22.483457px;}
.h14{height:23.044250px;}
.hf{height:24.925531px;}
.h15{height:25.924781px;}
.h10{height:30.914753px;}
.h16{height:31.685844px;}
.h12{height:33.234042px;}
.h11{height:33.725185px;}
.h17{height:34.566375px;}
.h7{height:34.813397px;}
.h19{height:38.869497px;}
.h3{height:39.165235px;}
.h8{height:41.185388px;}
.h18{height:43.217759px;}
.h4{height:43.516637px;}
.h5{height:43.815515px;}
.hc{height:47.978222px;}
.h1a{height:50.857497px;}
.h1b{height:50.863497px;}
.h9{height:51.861658px;}
.h2{height:52.578970px;}
.h6{height:54.644393px;}
.hb{height:54.650393px;}
.h1{height:63.094588px;}
.ha{height:89.633925px;}
.hd{height:361.653811px;}
.h13{height:391.741601px;}
.h0{height:1188.000000px;}
.w2{width:716.977683px;}
.w1{width:717.324351px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:6.145153px;}
.x20{left:11.770379px;}
.x1e{left:16.372837px;}
.x1d{left:19.217411px;}
.xa{left:23.950289px;}
.x34{left:25.210195px;}
.x6{left:28.440744px;}
.x1f{left:29.668826px;}
.x5{left:31.216094px;}
.x8{left:35.987202px;}
.x7{left:39.417411px;}
.x9{left:41.413168px;}
.x10{left:65.112790px;}
.x36{left:78.154439px;}
.x35{left:91.450428px;}
.x37{left:92.680947px;}
.x1{left:108.000000px;}
.x5b{left:115.471500px;}
.x27{left:120.151866px;}
.x2{left:125.932500px;}
.x33{left:134.246893px;}
.x22{left:136.979607px;}
.xd{left:146.112489px;}
.x5c{left:150.829500px;}
.x23{left:160.407396px;}
.xe{left:168.970151px;}
.x21{left:177.219151px;}
.x3a{left:184.570299px;}
.x38{left:191.090447px;}
.x3f{left:201.893438px;}
.x26{left:205.728820px;}
.xc{left:208.885303px;}
.x25{left:234.222502px;}
.x12{left:245.650901px;}
.x28{left:255.524855px;}
.x39{left:258.257559px;}
.x29{left:283.986576px;}
.x46{left:296.011500px;}
.x32{left:308.900580px;}
.xb{left:318.698743px;}
.x11{left:333.854027px;}
.x3b{left:339.823338px;}
.x2d{left:345.959948px;}
.x31{left:368.572723px;}
.x2b{left:375.364539px;}
.x51{left:397.642500px;}
.x54{left:401.001000px;}
.x57{left:412.944000px;}
.x4e{left:419.983500px;}
.x2a{left:422.268063px;}
.x52{left:424.930500px;}
.x45{left:434.367000px;}
.x3c{left:456.386972px;}
.x18{left:472.824249px;}
.x17{left:485.796673px;}
.x2c{left:492.167890px;}
.x42{left:494.029500px;}
.x4{left:501.501000px;}
.x16{left:505.785433px;}
.x40{left:543.162477px;}
.x2e{left:554.860390px;}
.x2f{left:556.905927px;}
.x3e{left:559.974232px;}
.x14{left:561.136523px;}
.x1c{left:563.475302px;}
.x30{left:566.446443px;}
.x1b{left:572.783635px;}
.x15{left:588.905615px;}
.x41{left:595.771125px;}
.x3d{left:605.998809px;}
.x3{left:610.117500px;}
.x13{left:618.654877px;}
.xf{left:620.182879px;}
.x1a{left:635.556449px;}
.x19{left:636.928532px;}
.x4f{left:697.411500px;}
.x56{left:699.295500px;}
.x50{left:704.884500px;}
.x43{left:706.990500px;}
.x55{left:711.115500px;}
.x47{left:713.910000px;}
.x49{left:717.646500px;}
.x4d{left:721.383000px;}
.x5a{left:722.622000px;}
.x48{left:725.118000px;}
.x58{left:726.358500px;}
.x4c{left:728.854500px;}
.x4b{left:732.589500px;}
.x59{left:733.830000px;}
.x53{left:737.626500px;}
.x44{left:781.012500px;}
.x4a{left:813.381000px;}
@media print{
.v5{vertical-align:-29.092078pt;}
.v4{vertical-align:-19.285333pt;}
.v6{vertical-align:-7.273020pt;}
.v2{vertical-align:-3.856000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.656000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000445pt;}
.ls26{letter-spacing:0.000518pt;}
.ls1b{letter-spacing:0.001867pt;}
.ls11{letter-spacing:0.002400pt;}
.ls19{letter-spacing:0.002422pt;}
.ls31{letter-spacing:0.003543pt;}
.ls8{letter-spacing:0.003733pt;}
.ls1d{letter-spacing:0.003867pt;}
.ls20{letter-spacing:0.004541pt;}
.ls15{letter-spacing:2.125360pt;}
.ls13{letter-spacing:2.258213pt;}
.ls1{letter-spacing:2.391040pt;}
.ls21{letter-spacing:2.653887pt;}
.ls1f{letter-spacing:2.655207pt;}
.ls24{letter-spacing:2.655721pt;}
.lsc{letter-spacing:2.655733pt;}
.ls22{letter-spacing:2.656423pt;}
.ls3{letter-spacing:2.656693pt;}
.ls23{letter-spacing:2.658422pt;}
.ls25{letter-spacing:2.661852pt;}
.ls2c{letter-spacing:2.901778pt;}
.ls2b{letter-spacing:2.907111pt;}
.ls2a{letter-spacing:3.099111pt;}
.ls29{letter-spacing:3.104445pt;}
.ls2f{letter-spacing:3.120445pt;}
.ls2e{letter-spacing:3.125778pt;}
.ls2d{letter-spacing:3.541778pt;}
.ls5{letter-spacing:9.740533pt;}
.ls7{letter-spacing:12.367733pt;}
.lse{letter-spacing:12.370533pt;}
.lsa{letter-spacing:15.459733pt;}
.ls1c{letter-spacing:15.461852pt;}
.ls28{letter-spacing:15.463200pt;}
.ls9{letter-spacing:15.465067pt;}
.ls27{letter-spacing:16.791200pt;}
.ls0{letter-spacing:17.723733pt;}
.lsf{letter-spacing:18.117067pt;}
.ls6{letter-spacing:18.122400pt;}
.lsd{letter-spacing:21.834400pt;}
.ls17{letter-spacing:31.881067pt;}
.ls1e{letter-spacing:31.884533pt;}
.ls12{letter-spacing:58.178400pt;}
.ls2{letter-spacing:63.762133pt;}
.ls4{letter-spacing:174.175733pt;}
.ls16{letter-spacing:564.348533pt;}
.ls18{letter-spacing:642.119200pt;}
.ls10{letter-spacing:943.130400pt;}
.ls14{letter-spacing:995.383200pt;}
.ls1a{letter-spacing:1135.047200pt;}
.ws6{word-spacing:-15.940267pt;}
.ws16{word-spacing:-14.545467pt;}
.ws9{word-spacing:-13.283467pt;}
.ws26{word-spacing:-10.909529pt;}
.ws23{word-spacing:-10.644041pt;}
.ws25{word-spacing:-10.626800pt;}
.ws27{word-spacing:-10.000402pt;}
.ws18{word-spacing:-2.709827pt;}
.ws5{word-spacing:-2.438861pt;}
.ws31{word-spacing:-2.303378pt;}
.ws34{word-spacing:-2.167867pt;}
.ws3{word-spacing:-0.063761pt;}
.ws5e{word-spacing:-0.058182pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.045164pt;}
.wsb{word-spacing:-0.042507pt;}
.ws10{word-spacing:0.000000pt;}
.wsa{word-spacing:1.487748pt;}
.ws72{word-spacing:1.488094pt;}
.ws17{word-spacing:1.629092pt;}
.ws47{word-spacing:1.739177pt;}
.ws48{word-spacing:1.739953pt;}
.ws24{word-spacing:1.741000pt;}
.wsc{word-spacing:1.742795pt;}
.ws2{word-spacing:1.785037pt;}
.ws1{word-spacing:1.785310pt;}
.ws4{word-spacing:1.960653pt;}
.ws0{word-spacing:2.142366pt;}
.ws44{word-spacing:2.174507pt;}
.ws43{word-spacing:2.174654pt;}
.ws66{word-spacing:2.175281pt;}
.ws6f{word-spacing:2.176102pt;}
.ws4b{word-spacing:2.176409pt;}
.ws41{word-spacing:2.176433pt;}
.ws19{word-spacing:2.176578pt;}
.wsd{word-spacing:2.176866pt;}
.ws3c{word-spacing:2.177194pt;}
.ws65{word-spacing:2.177308pt;}
.ws39{word-spacing:2.177357pt;}
.ws3e{word-spacing:2.177894pt;}
.ws56{word-spacing:2.177937pt;}
.ws28{word-spacing:2.178124pt;}
.ws6c{word-spacing:2.178140pt;}
.ws67{word-spacing:2.178156pt;}
.ws5f{word-spacing:2.178269pt;}
.ws35{word-spacing:2.178438pt;}
.ws7{word-spacing:2.178489pt;}
.ws6a{word-spacing:2.179370pt;}
.ws74{word-spacing:2.179492pt;}
.ws3f{word-spacing:2.179734pt;}
.wsf{word-spacing:2.179750pt;}
.ws2a{word-spacing:2.179987pt;}
.ws68{word-spacing:2.180086pt;}
.ws2f{word-spacing:2.180181pt;}
.ws60{word-spacing:2.181107pt;}
.ws73{word-spacing:2.181734pt;}
.ws12{word-spacing:2.614204pt;}
.ws57{word-spacing:3.505194pt;}
.ws13{word-spacing:4.518200pt;}
.ws1c{word-spacing:5.897859pt;}
.ws76{word-spacing:7.587597pt;}
.ws70{word-spacing:8.716703pt;}
.ws6e{word-spacing:8.987689pt;}
.ws69{word-spacing:9.032853pt;}
.ws6b{word-spacing:9.168346pt;}
.ws1e{word-spacing:9.715833pt;}
.ws20{word-spacing:11.423071pt;}
.ws8{word-spacing:11.423596pt;}
.wse{word-spacing:11.428404pt;}
.ws46{word-spacing:12.330293pt;}
.ws29{word-spacing:12.331378pt;}
.ws11{word-spacing:13.496002pt;}
.ws64{word-spacing:13.549136pt;}
.ws6d{word-spacing:14.716999pt;}
.ws71{word-spacing:15.408821pt;}
.ws75{word-spacing:15.414394pt;}
.ws3b{word-spacing:15.415284pt;}
.ws49{word-spacing:15.415729pt;}
.ws32{word-spacing:15.416173pt;}
.ws30{word-spacing:15.416618pt;}
.ws5c{word-spacing:15.417063pt;}
.ws36{word-spacing:15.417503pt;}
.ws2d{word-spacing:15.417508pt;}
.ws42{word-spacing:15.417948pt;}
.ws3a{word-spacing:15.417953pt;}
.ws55{word-spacing:15.418393pt;}
.ws40{word-spacing:15.418397pt;}
.ws4a{word-spacing:15.419727pt;}
.ws59{word-spacing:15.420172pt;}
.ws2b{word-spacing:15.420617pt;}
.ws45{word-spacing:15.421062pt;}
.ws3d{word-spacing:15.421507pt;}
.ws38{word-spacing:16.740015pt;}
.ws21{word-spacing:18.074293pt;}
.ws2c{word-spacing:18.079626pt;}
.ws37{word-spacing:21.714851pt;}
.ws4f{word-spacing:21.791626pt;}
.ws4d{word-spacing:21.796959pt;}
.ws2e{word-spacing:27.143724pt;}
.ws51{word-spacing:31.833503pt;}
.ws58{word-spacing:31.835727pt;}
.ws4c{word-spacing:31.836617pt;}
.ws5b{word-spacing:31.837062pt;}
.ws53{word-spacing:31.837951pt;}
.ws62{word-spacing:145.599626pt;}
.ws14{word-spacing:164.986668pt;}
.ws33{word-spacing:173.759726pt;}
.ws5d{word-spacing:177.322293pt;}
.ws1d{word-spacing:179.658293pt;}
.ws63{word-spacing:188.306423pt;}
.ws15{word-spacing:205.155564pt;}
.ws50{word-spacing:212.906293pt;}
.ws4e{word-spacing:223.590815pt;}
.ws1f{word-spacing:226.308959pt;}
.ws52{word-spacing:530.020959pt;}
.ws61{word-spacing:892.079626pt;}
.ws54{word-spacing:1039.684959pt;}
.ws5a{word-spacing:1147.658293pt;}
.ws22{word-spacing:1163.327626pt;}
._8{margin-left:-6.074310pt;}
._1{margin-left:-4.718319pt;}
._4{margin-left:-3.538739pt;}
._3{margin-left:-2.486682pt;}
._0{margin-left:-1.530261pt;}
._9{width:0.956410pt;}
._c{width:2.314200pt;}
._7{width:3.931906pt;}
._27{width:5.600369pt;}
._28{width:6.548819pt;}
._17{width:13.513544pt;}
._5{width:15.586193pt;}
._2{width:17.024205pt;}
._25{width:18.320574pt;}
._6{width:19.213218pt;}
._15{width:27.188889pt;}
._14{width:31.878630pt;}
._b{width:51.699316pt;}
._26{width:63.759040pt;}
._12{width:68.893057pt;}
._11{width:119.086817pt;}
._23{width:124.707563pt;}
._f{width:137.771088pt;}
._e{width:140.859583pt;}
._d{width:150.134119pt;}
._18{width:151.906374pt;}
._a{width:157.334321pt;}
._19{width:165.615500pt;}
._13{width:170.065194pt;}
._1e{width:177.293690pt;}
._1b{width:179.213715pt;}
._22{width:206.274228pt;}
._10{width:218.446284pt;}
._1d{width:229.705538pt;}
._1c{width:236.446573pt;}
._1a{width:246.339734pt;}
._1f{width:298.824866pt;}
._21{width:315.029782pt;}
._24{width:329.609806pt;}
._20{width:775.276249pt;}
._16{width:832.724399pt;}
.fs5{font-size:26.566933pt;}
.fs9{font-size:28.384108pt;}
.fsd{font-size:29.092078pt;}
.fsa{font-size:31.932122pt;}
.fse{font-size:32.728588pt;}
.fs11{font-size:36.131200pt;}
.fsb{font-size:39.028149pt;}
.fsf{font-size:40.001608pt;}
.fs4{font-size:42.507200pt;}
.fsc{font-size:42.576163pt;}
.fs10{font-size:43.638118pt;}
.fs8{font-size:45.164267pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs6{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:12.292163pt;}
.y7d{bottom:30.976443pt;}
.y92{bottom:39.565986pt;}
.y7c{bottom:44.281494pt;}
.y74{bottom:48.716511pt;}
.ya6{bottom:50.475516pt;}
.y90{bottom:59.566790pt;}
.ya5{bottom:64.112427pt;}
.y8d{bottom:66.839810pt;}
.y8f{bottom:73.203702pt;}
.y73{bottom:81.535636pt;}
.y79{bottom:93.066680pt;}
.y8c{bottom:99.568398pt;}
.y76{bottom:100.162708pt;}
.y81{bottom:105.932290pt;}
.y78{bottom:106.371731pt;}
.ya4{bottom:107.750545pt;}
.y72{bottom:115.241765pt;}
.y87{bottom:116.841819pt;}
.y85{bottom:117.750947pt;}
.y65{bottom:138.303853pt;}
.y84{bottom:138.660878pt;}
.y7f{bottom:139.402667pt;}
.y1ab{bottom:141.009333pt;}
.y1d5{bottom:141.734667pt;}
.y91{bottom:144.115643pt;}
.y77{bottom:144.512877pt;}
.yc3{bottom:147.194667pt;}
.y8b{bottom:147.752153pt;}
.y69{bottom:149.834897pt;}
.y18e{bottom:151.234667pt;}
.y7e{bottom:152.686667pt;}
.y141{bottom:153.321333pt;}
.y83{bottom:155.934300pt;}
.y10e{bottom:155.978667pt;}
.y12e{bottom:157.674667pt;}
.y94{bottom:158.661682pt;}
.y89{bottom:159.570810pt;}
.y1aa{bottom:159.605333pt;}
.y1d4{bottom:160.332000pt;}
.yc2{bottom:165.792000pt;}
.yeb{bottom:168.310667pt;}
.y82{bottom:169.571212pt;}
.y18d{bottom:169.830667pt;}
.y68{bottom:170.235975pt;}
.y140{bottom:171.918667pt;}
.y6b{bottom:172.896985pt;}
.y88{bottom:173.207721pt;}
.y10d{bottom:174.576000pt;}
.y75{bottom:175.557996pt;}
.y12d{bottom:176.272000pt;}
.y1a9{bottom:178.202667pt;}
.y1d3{bottom:178.929333pt;}
.y93{bottom:179.571614pt;}
.y86{bottom:184.117251pt;}
.yc1{bottom:184.389333pt;}
.y16d{bottom:184.510667pt;}
.y64{bottom:185.894667pt;}
.yea{bottom:186.908000pt;}
.y67{bottom:187.089040pt;}
.y18c{bottom:188.428000pt;}
.y13f{bottom:190.516000pt;}
.y10c{bottom:193.172000pt;}
.y12c{bottom:194.869333pt;}
.y1a8{bottom:196.800000pt;}
.y66{bottom:200.394090pt;}
.y1d2{bottom:202.545333pt;}
.yc0{bottom:202.985333pt;}
.y16c{bottom:203.108000pt;}
.y9c{bottom:205.027182pt;}
.ye9{bottom:205.505333pt;}
.y18b{bottom:207.025333pt;}
.ya7{bottom:207.754565pt;}
.y7a{bottom:211.038131pt;}
.y10b{bottom:211.769333pt;}
.y12b{bottom:213.466667pt;}
.y6a{bottom:214.586145pt;}
.y1a7{bottom:215.396000pt;}
.y4c{bottom:216.530667pt;}
.y9b{bottom:216.845839pt;}
.y28{bottom:219.217333pt;}
.y13e{bottom:219.738667pt;}
.y1d1{bottom:221.142667pt;}
.y16b{bottom:221.704000pt;}
.ya8{bottom:225.027986pt;}
.y18a{bottom:225.621333pt;}
.y9a{bottom:228.664496pt;}
.y10a{bottom:230.366667pt;}
.y12a{bottom:232.062667pt;}
.ybf{bottom:232.209333pt;}
.y1a6{bottom:233.993333pt;}
.ye8{bottom:234.729333pt;}
.y4b{bottom:235.128000pt;}
.y6c{bottom:237.648233pt;}
.y27{bottom:237.813333pt;}
.y13d{bottom:238.336000pt;}
.ya1{bottom:238.664898pt;}
.y1d0{bottom:239.740000pt;}
.y16a{bottom:240.301333pt;}
.y6e{bottom:243.857256pt;}
.y189{bottom:244.218667pt;}
.y7b{bottom:244.744260pt;}
.y109{bottom:248.962667pt;}
.y129{bottom:250.660000pt;}
.ybe{bottom:250.806667pt;}
.y6f{bottom:250.953283pt;}
.ya0{bottom:251.392682pt;}
.y1a5{bottom:252.590667pt;}
.ye7{bottom:253.325333pt;}
.y4a{bottom:253.725333pt;}
.y26{bottom:256.410667pt;}
.y13c{bottom:256.933333pt;}
.y6d{bottom:257.162307pt;}
.y1cf{bottom:258.337333pt;}
.y169{bottom:258.898667pt;}
.y188{bottom:262.816000pt;}
.y128{bottom:269.257333pt;}
.ybd{bottom:269.404000pt;}
.y1a4{bottom:271.188000pt;}
.ybc{bottom:272.060000pt;}
.y96{bottom:273.211741pt;}
.y25{bottom:275.008000pt;}
.y1ce{bottom:276.933333pt;}
.y168{bottom:277.494667pt;}
.y9f{bottom:277.757378pt;}
.y108{bottom:278.186667pt;}
.y187{bottom:281.413333pt;}
.y70{bottom:281.998402pt;}
.ye6{bottom:282.549333pt;}
.ybb{bottom:285.344000pt;}
.y8a{bottom:285.939525pt;}
.y13b{bottom:286.157333pt;}
.y49{bottom:286.650667pt;}
.y95{bottom:286.848653pt;}
.ya3{bottom:287.757780pt;}
.y1a3{bottom:289.784000pt;}
.y9e{bottom:293.212545pt;}
.y24{bottom:293.604000pt;}
.y1cd{bottom:295.530667pt;}
.y167{bottom:296.092000pt;}
.y107{bottom:296.784000pt;}
.y127{bottom:298.480000pt;}
.yba{bottom:298.626667pt;}
.y186{bottom:300.009333pt;}
.ye5{bottom:301.146667pt;}
.y71{bottom:304.173487pt;}
.y13a{bottom:304.753333pt;}
.y9d{bottom:305.940329pt;}
.y1a2{bottom:308.381333pt;}
.y99{bottom:309.576839pt;}
.y23{bottom:312.201333pt;}
.y165{bottom:314.689333pt;}
.y106{bottom:315.381333pt;}
.y126{bottom:317.077333pt;}
.yb9{bottom:317.224000pt;}
.y185{bottom:318.606667pt;}
.y1cc{bottom:319.148000pt;}
.y98{bottom:322.304623pt;}
.y139{bottom:323.350667pt;}
.ya2{bottom:324.122878pt;}
.y1a1{bottom:326.978667pt;}
.y48{bottom:329.709333pt;}
.ye4{bottom:330.370667pt;}
.y97{bottom:330.486770pt;}
.y22{bottom:330.798667pt;}
.y164{bottom:333.285333pt;}
.y105{bottom:333.977333pt;}
.y125{bottom:335.674667pt;}
.yb8{bottom:335.821333pt;}
.y184{bottom:337.204000pt;}
.y1cb{bottom:337.744000pt;}
.y138{bottom:341.948000pt;}
.ye1{bottom:343.653333pt;}
.y1a0{bottom:345.574667pt;}
.y47{bottom:348.306667pt;}
.ye3{bottom:348.966667pt;}
.y21{bottom:349.396000pt;}
.yb5{bottom:351.761333pt;}
.y163{bottom:351.882667pt;}
.y124{bottom:354.272000pt;}
.yb7{bottom:354.418667pt;}
.y183{bottom:355.800000pt;}
.y1ca{bottom:356.341333pt;}
.ye0{bottom:356.937333pt;}
.y104{bottom:363.201333pt;}
.y19f{bottom:364.172000pt;}
.yb4{bottom:365.045333pt;}
.y46{bottom:366.902667pt;}
.ye2{bottom:367.564000pt;}
.y20{bottom:367.992000pt;}
.ydf{bottom:370.221333pt;}
.y162{bottom:370.480000pt;}
.y137{bottom:371.172000pt;}
.y123{bottom:372.868000pt;}
.y182{bottom:374.397333pt;}
.y1c9{bottom:374.938667pt;}
.yb3{bottom:378.328000pt;}
.y1e{bottom:378.618667pt;}
.y103{bottom:381.798667pt;}
.y19e{bottom:382.769333pt;}
.yde{bottom:383.504000pt;}
.y45{bottom:385.500000pt;}
.yb6{bottom:386.298667pt;}
.y1f{bottom:386.589333pt;}
.y166{bottom:389.076000pt;}
.y161{bottom:389.077333pt;}
.y136{bottom:389.768000pt;}
.y122{bottom:391.465333pt;}
.yb2{bottom:391.612000pt;}
.y1d{bottom:391.902667pt;}
.y181{bottom:392.994667pt;}
.y1c8{bottom:393.536000pt;}
.ydd{bottom:396.788000pt;}
.y102{bottom:400.394667pt;}
.y19d{bottom:401.365333pt;}
.y44{bottom:404.097333pt;}
.yb1{bottom:404.896000pt;}
.y1c{bottom:405.186667pt;}
.y160{bottom:407.673333pt;}
.y135{bottom:408.365333pt;}
.y121{bottom:410.062667pt;}
.y180{bottom:411.590667pt;}
.ydc{bottom:415.385333pt;}
.y1c7{bottom:417.152000pt;}
.y101{bottom:418.992000pt;}
.y43{bottom:422.693333pt;}
.yb0{bottom:423.492000pt;}
.y1b{bottom:423.782667pt;}
.y15f{bottom:426.270667pt;}
.y134{bottom:426.962667pt;}
.y19c{bottom:427.168000pt;}
.y17f{bottom:430.188000pt;}
.ydb{bottom:433.981333pt;}
.y1c6{bottom:435.749333pt;}
.y100{bottom:437.589333pt;}
.y120{bottom:439.285333pt;}
.y42{bottom:441.290667pt;}
.y1a{bottom:442.380000pt;}
.y15e{bottom:444.868000pt;}
.y133{bottom:445.558667pt;}
.y17e{bottom:448.785333pt;}
.yda{bottom:452.578667pt;}
.y19b{bottom:452.970667pt;}
.y1c5{bottom:454.346667pt;}
.y11f{bottom:457.882667pt;}
.y41{bottom:459.888000pt;}
.yaf{bottom:460.677333pt;}
.y19{bottom:460.977333pt;}
.y15d{bottom:463.464000pt;}
.y132{bottom:464.156000pt;}
.yff{bottom:466.813333pt;}
.y17d{bottom:467.382667pt;}
.y19a{bottom:471.568000pt;}
.y11e{bottom:476.480000pt;}
.y1c4{bottom:477.964000pt;}
.y40{bottom:478.484000pt;}
.yae{bottom:479.273333pt;}
.y18{bottom:479.573333pt;}
.y15c{bottom:482.061333pt;}
.y131{bottom:482.753333pt;}
.yd9{bottom:484.458667pt;}
.yfe{bottom:485.409333pt;}
.y17c{bottom:485.978667pt;}
.y199{bottom:490.165333pt;}
.y11d{bottom:495.077333pt;}
.y1c3{bottom:496.560000pt;}
.y3f{bottom:497.081333pt;}
.yad{bottom:497.870667pt;}
.y17{bottom:498.170667pt;}
.y15b{bottom:500.658667pt;}
.yd8{bottom:503.056000pt;}
.y17b{bottom:504.576000pt;}
.y130{bottom:510.694667pt;}
.y11c{bottom:513.673333pt;}
.y1c2{bottom:515.157333pt;}
.y3e{bottom:515.678667pt;}
.y198{bottom:515.966667pt;}
.yac{bottom:516.468000pt;}
.y16{bottom:516.768000pt;}
.yfd{bottom:517.290667pt;}
.y15a{bottom:519.254667pt;}
.yd7{bottom:521.653333pt;}
.y17a{bottom:523.173333pt;}
.y63{bottom:527.574667pt;}
.y11b{bottom:532.270667pt;}
.y1c1{bottom:533.754667pt;}
.y3d{bottom:534.276000pt;}
.y15{bottom:535.364000pt;}
.yfc{bottom:535.886667pt;}
.y159{bottom:537.852000pt;}
.y179{bottom:541.769333pt;}
.yab{bottom:544.409333pt;}
.y62{bottom:546.172000pt;}
.y11a{bottom:550.868000pt;}
.y1c0{bottom:552.350667pt;}
.y3c{bottom:552.872000pt;}
.y158{bottom:556.449333pt;}
.yd6{bottom:558.837333pt;}
.y178{bottom:560.366667pt;}
.yaa{bottom:561.013333pt;}
.yfb{bottom:563.829333pt;}
.y61{bottom:564.769333pt;}
.y14{bottom:568.290667pt;}
.y119{bottom:569.464000pt;}
.y3b{bottom:571.469333pt;}
.ya9{bottom:574.297333pt;}
.y157{bottom:575.046667pt;}
.y1bf{bottom:575.968000pt;}
.yd5{bottom:577.434667pt;}
.y177{bottom:578.964000pt;}
.y60{bottom:583.365333pt;}
.y118{bottom:588.061333pt;}
.y3a{bottom:590.066667pt;}
.y156{bottom:593.642667pt;}
.y1be{bottom:594.565333pt;}
.y176{bottom:597.560000pt;}
.y5f{bottom:601.962667pt;}
.yfa{bottom:604.001333pt;}
.yd4{bottom:606.658667pt;}
.y80{bottom:607.802630pt;}
.y39{bottom:608.662667pt;}
.y13{bottom:611.349333pt;}
.y14f{bottom:611.972000pt;}
.y155{bottom:612.240000pt;}
.y1bd{bottom:613.162667pt;}
.y175{bottom:616.157333pt;}
.y117{bottom:617.285333pt;}
.y5e{bottom:620.560000pt;}
.yf9{bottom:622.598667pt;}
.yd3{bottom:625.254667pt;}
.y38{bottom:627.260000pt;}
.y12{bottom:627.289333pt;}
.y14e{bottom:630.568000pt;}
.y154{bottom:630.837333pt;}
.y1bc{bottom:631.758667pt;}
.y174{bottom:634.754667pt;}
.y116{bottom:635.882667pt;}
.y5d{bottom:639.156000pt;}
.yf8{bottom:641.196000pt;}
.y11{bottom:643.229333pt;}
.yd2{bottom:643.852000pt;}
.y37{bottom:645.857333pt;}
.y14d{bottom:649.165333pt;}
.y153{bottom:649.433333pt;}
.y197{bottom:653.350667pt;}
.y173{bottom:653.352000pt;}
.y115{bottom:654.478667pt;}
.y1bb{bottom:655.376000pt;}
.y5c{bottom:657.753333pt;}
.y10{bottom:659.169333pt;}
.y36{bottom:664.453333pt;}
.y14c{bottom:667.762667pt;}
.yf7{bottom:670.418667pt;}
.y172{bottom:671.948000pt;}
.yd1{bottom:673.076000pt;}
.y1ba{bottom:673.973333pt;}
.yf{bottom:675.109333pt;}
.y152{bottom:675.236000pt;}
.y5b{bottom:676.350667pt;}
.y35{bottom:683.050667pt;}
.y12f{bottom:683.702667pt;}
.y14b{bottom:686.360000pt;}
.yf6{bottom:689.016000pt;}
.y171{bottom:690.545333pt;}
.ye{bottom:691.050667pt;}
.yd0{bottom:691.673333pt;}
.y1b9{bottom:692.569333pt;}
.y1dd{bottom:694.329333pt;}
.y5a{bottom:694.946667pt;}
.yf4{bottom:696.986667pt;}
.y151{bottom:701.038667pt;}
.y34{bottom:701.648000pt;}
.y114{bottom:702.300000pt;}
.y14a{bottom:704.956000pt;}
.yd{bottom:706.990667pt;}
.y170{bottom:709.142667pt;}
.ycf{bottom:710.269333pt;}
.y1dc{bottom:712.926667pt;}
.y59{bottom:713.544000pt;}
.y1b8{bottom:716.186667pt;}
.yf5{bottom:718.240000pt;}
.y150{bottom:719.636000pt;}
.y33{bottom:720.245333pt;}
.y113{bottom:720.896000pt;}
.yc{bottom:722.930667pt;}
.yf3{bottom:723.553333pt;}
.y16f{bottom:727.738667pt;}
.yce{bottom:728.866667pt;}
.y1db{bottom:731.524000pt;}
.y58{bottom:732.141333pt;}
.y1b7{bottom:734.784000pt;}
.yf2{bottom:736.837333pt;}
.y32{bottom:738.841333pt;}
.yb{bottom:738.870667pt;}
.y112{bottom:739.493333pt;}
.y149{bottom:742.150667pt;}
.ycd{bottom:744.806667pt;}
.y195{bottom:746.336000pt;}
.y57{bottom:750.738667pt;}
.y1b6{bottom:753.381333pt;}
.y16e{bottom:753.541333pt;}
.ya{bottom:754.810667pt;}
.yf1{bottom:755.433333pt;}
.y31{bottom:757.438667pt;}
.ycc{bottom:758.090667pt;}
.y148{bottom:760.746667pt;}
.y194{bottom:764.933333pt;}
.y56{bottom:769.334667pt;}
.y9{bottom:770.750667pt;}
.y1b5{bottom:771.977333pt;}
.y1ac{bottom:772.138667pt;}
.y1da{bottom:774.030667pt;}
.y30{bottom:776.036000pt;}
.y111{bottom:776.688000pt;}
.y147{bottom:779.344000pt;}
.y193{bottom:783.529333pt;}
.yf0{bottom:784.657333pt;}
.y8{bottom:786.692000pt;}
.ycb{bottom:787.314667pt;}
.y55{bottom:787.932000pt;}
.y1b4{bottom:790.574667pt;}
.y1d9{bottom:792.628000pt;}
.y2f{bottom:794.632000pt;}
.y110{bottom:795.284000pt;}
.y146{bottom:797.941333pt;}
.y192{bottom:802.126667pt;}
.y7{bottom:802.632000pt;}
.yef{bottom:803.254667pt;}
.yca{bottom:805.910667pt;}
.y54{bottom:806.529333pt;}
.y1d8{bottom:811.224000pt;}
.y2e{bottom:813.229333pt;}
.y1b3{bottom:814.192000pt;}
.y145{bottom:816.537333pt;}
.y6{bottom:818.572000pt;}
.y191{bottom:820.724000pt;}
.yc9{bottom:824.508000pt;}
.y53{bottom:825.125333pt;}
.y1d7{bottom:829.821333pt;}
.y2d{bottom:831.826667pt;}
.yee{bottom:832.478667pt;}
.y1b2{bottom:832.789333pt;}
.y5{bottom:834.512000pt;}
.y144{bottom:835.134667pt;}
.y196{bottom:839.320000pt;}
.y190{bottom:839.321333pt;}
.yc8{bottom:843.105333pt;}
.y52{bottom:843.722667pt;}
.y1d6{bottom:848.418667pt;}
.yed{bottom:851.074667pt;}
.y1b1{bottom:851.385333pt;}
.y143{bottom:853.732000pt;}
.yc7{bottom:861.701333pt;}
.y51{bottom:862.320000pt;}
.y2c{bottom:864.752000pt;}
.y18f{bottom:865.122667pt;}
.y4{bottom:869.049333pt;}
.y142{bottom:872.329333pt;}
.y1b0{bottom:875.002667pt;}
.yc6{bottom:880.298667pt;}
.y50{bottom:880.916000pt;}
.y10f{bottom:890.925333pt;}
.y1af{bottom:893.600000pt;}
.y3{bottom:895.616000pt;}
.yec{bottom:898.896000pt;}
.y4f{bottom:899.513333pt;}
.y2b{bottom:906.865333pt;}
.yc5{bottom:909.522667pt;}
.y1ae{bottom:912.197333pt;}
.y4e{bottom:918.110667pt;}
.y2{bottom:922.184000pt;}
.yc4{bottom:928.120000pt;}
.y1ad{bottom:945.122667pt;}
.y4d{bottom:946.052000pt;}
.y1{bottom:946.093333pt;}
.y2a{bottom:946.716000pt;}
.y29{bottom:1002.773333pt;}
.he{height:19.985295pt;}
.h14{height:20.483778pt;}
.hf{height:22.156028pt;}
.h15{height:23.044250pt;}
.h10{height:27.479781pt;}
.h16{height:28.165195pt;}
.h12{height:29.541371pt;}
.h11{height:29.977943pt;}
.h17{height:30.725667pt;}
.h7{height:30.945242pt;}
.h19{height:34.550664pt;}
.h3{height:34.813542pt;}
.h8{height:36.609234pt;}
.h18{height:38.415786pt;}
.h4{height:38.681455pt;}
.h5{height:38.947124pt;}
.hc{height:42.647308pt;}
.h1a{height:45.206664pt;}
.h1b{height:45.211997pt;}
.h9{height:46.099251pt;}
.h2{height:46.736862pt;}
.h6{height:48.572794pt;}
.hb{height:48.578127pt;}
.h1{height:56.084078pt;}
.ha{height:79.674600pt;}
.hd{height:321.470054pt;}
.h13{height:348.214756pt;}
.h0{height:1056.000000pt;}
.w2{width:637.313496pt;}
.w1{width:637.621646pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:5.462358pt;}
.x20{left:10.462559pt;}
.x1e{left:14.553633pt;}
.x1d{left:17.082144pt;}
.xa{left:21.289146pt;}
.x34{left:22.409062pt;}
.x6{left:25.280661pt;}
.x1f{left:26.372290pt;}
.x5{left:27.747639pt;}
.x8{left:31.988624pt;}
.x7{left:35.037698pt;}
.x9{left:36.811705pt;}
.x10{left:57.878036pt;}
.x36{left:69.470613pt;}
.x35{left:81.289270pt;}
.x37{left:82.383064pt;}
.x1{left:96.000000pt;}
.x5b{left:102.641333pt;}
.x27{left:106.801659pt;}
.x2{left:111.940000pt;}
.x33{left:119.330572pt;}
.x22{left:121.759651pt;}
.xd{left:129.877768pt;}
.x5c{left:134.070667pt;}
.x23{left:142.584352pt;}
.xe{left:150.195690pt;}
.x21{left:157.528134pt;}
.x3a{left:164.062488pt;}
.x38{left:169.858175pt;}
.x3f{left:179.460834pt;}
.x26{left:182.870062pt;}
.xc{left:185.675825pt;}
.x25{left:208.197780pt;}
.x12{left:218.356356pt;}
.x28{left:227.133205pt;}
.x39{left:229.562275pt;}
.x29{left:252.432512pt;}
.x46{left:263.121333pt;}
.x32{left:274.578293pt;}
.xb{left:283.287771pt;}
.x11{left:296.759135pt;}
.x3b{left:302.065189pt;}
.x2d{left:307.519954pt;}
.x31{left:327.620198pt;}
.x2b{left:333.657368pt;}
.x51{left:353.460000pt;}
.x54{left:356.445333pt;}
.x57{left:367.061333pt;}
.x4e{left:373.318667pt;}
.x2a{left:375.349389pt;}
.x52{left:377.716000pt;}
.x45{left:386.104000pt;}
.x3c{left:405.677308pt;}
.x18{left:420.288221pt;}
.x17{left:431.819265pt;}
.x2c{left:437.482568pt;}
.x42{left:439.137333pt;}
.x4{left:445.778667pt;}
.x16{left:449.587052pt;}
.x40{left:482.811090pt;}
.x2e{left:493.209236pt;}
.x2f{left:495.027491pt;}
.x3e{left:497.754873pt;}
.x14{left:498.788021pt;}
.x1c{left:500.866935pt;}
.x30{left:503.507950pt;}
.x1b{left:509.141009pt;}
.x15{left:523.471657pt;}
.x41{left:529.574334pt;}
.x3d{left:538.665608pt;}
.x3{left:542.326667pt;}
.x13{left:549.915446pt;}
.xf{left:551.273670pt;}
.x1a{left:564.939066pt;}
.x19{left:566.158695pt;}
.x4f{left:619.921333pt;}
.x56{left:621.596000pt;}
.x50{left:626.564000pt;}
.x43{left:628.436000pt;}
.x55{left:632.102667pt;}
.x47{left:634.586667pt;}
.x49{left:637.908000pt;}
.x4d{left:641.229333pt;}
.x5a{left:642.330667pt;}
.x48{left:644.549333pt;}
.x58{left:645.652000pt;}
.x4c{left:647.870667pt;}
.x4b{left:651.190667pt;}
.x59{left:652.293333pt;}
.x53{left:655.668000pt;}
.x44{left:694.233333pt;}
.x4a{left:723.005333pt;}
}




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