
    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_92e5924c53c60065fd85ff63.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1c8012f4d80ef7fe32a9a16e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938000;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_ac1be32124ebf874241a9a48.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728000;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_3d3403f59915ba95b4998bd3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.045000;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_85a05e593a1fbe9908baafbf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_88cd37c31cb639fe55c2d752.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_ddcd71ab933720a36049ce88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956543;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_94ef0ac6c3433c17cbcee710.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_0232f70e09d6a7d043f4cf31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_0232f70e09d6a7d043f4cf31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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_695bf72000e962f37f35c98b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.860840;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_1bce33dfdc6a869c2046ef4b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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_65707959adfc6fe70e5e269b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_c60f3c53767d72cd30926d88.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_8f98b01d8942545c25cbddd2.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4fbbe2edf1b4068f6c023674.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a75b2373a945bb80d45f2917.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.859375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v7{vertical-align:-79.214256px;}
.v2{vertical-align:-30.245443px;}
.v5{vertical-align:-8.641555px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.641555px;}
.v4{vertical-align:18.592349px;}
.v1{vertical-align:30.245443px;}
.v3{vertical-align:52.253749px;}
.ls1d{letter-spacing:-1.896341px;}
.ls1f{letter-spacing:-1.530275px;}
.ls2a{letter-spacing:-1.440259px;}
.ls27{letter-spacing:-1.290232px;}
.ls4{letter-spacing:-1.152207px;}
.lsa{letter-spacing:-1.134204px;}
.ls17{letter-spacing:-1.020898px;}
.ls29{letter-spacing:-0.846152px;}
.lsb{letter-spacing:-0.828149px;}
.ls2b{letter-spacing:-0.720130px;}
.ls3{letter-spacing:-0.504091px;}
.ls22{letter-spacing:-0.493889px;}
.ls12{letter-spacing:-0.463883px;}
.ls20{letter-spacing:-0.457882px;}
.ls9{letter-spacing:-0.305455px;}
.ls1e{letter-spacing:-0.178832px;}
.ls18{letter-spacing:-0.089416px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.027365px;}
.lsc{letter-spacing:0.092177px;}
.ls2e{letter-spacing:0.144026px;}
.ls15{letter-spacing:0.145328px;}
.ls16{letter-spacing:0.265008px;}
.ls7{letter-spacing:0.305335px;}
.ls5{letter-spacing:0.305455px;}
.ls1c{letter-spacing:0.425357px;}
.ls19{letter-spacing:0.458002px;}
.ls11{letter-spacing:0.494009px;}
.ls23{letter-spacing:0.578024px;}
.ls8{letter-spacing:0.610670px;}
.ls6{letter-spacing:0.612110px;}
.ls26{letter-spacing:0.638035px;}
.ls21{letter-spacing:0.720130px;}
.ls24{letter-spacing:0.730692px;}
.ls1a{letter-spacing:0.810146px;}
.ls10{letter-spacing:0.982257px;}
.ls13{letter-spacing:1.126283px;}
.lsd{letter-spacing:1.746314px;}
.ls0{letter-spacing:18.281123px;}
.ls2c{letter-spacing:21.909223px;}
.ls2{letter-spacing:54.873876px;}
.lse{letter-spacing:65.116999px;}
.lsf{letter-spacing:83.840369px;}
.ls25{letter-spacing:101.123479px;}
.ls28{letter-spacing:138.582220px;}
.ls2d{letter-spacing:155.133679px;}
.ls14{letter-spacing:409.624935px;}
.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;}
}
.ws18{word-spacing:-40.729892px;}
.wsd{word-spacing:-39.535115px;}
.ws15{word-spacing:-20.164349px;}
.wse{word-spacing:-19.515512px;}
.ws12{word-spacing:-19.030145px;}
.ws10{word-spacing:-18.723490px;}
.ws11{word-spacing:-18.418035px;}
.ws1{word-spacing:-18.279445px;}
.ws13{word-spacing:-18.112580px;}
.ws21{word-spacing:-17.960152px;}
.ws14{word-spacing:-17.589886px;}
.ws16{word-spacing:-17.283831px;}
.ws24{word-spacing:-17.127802px;}
.ws25{word-spacing:-16.977775px;}
.ws1e{word-spacing:-16.521693px;}
.ws17{word-spacing:-14.509051px;}
.ws1d{word-spacing:-12.421515px;}
.ws22{word-spacing:-12.331499px;}
.wsf{word-spacing:-11.611370px;}
.ws26{word-spacing:-11.521954px;}
.ws1f{word-spacing:-11.432537px;}
.ws23{word-spacing:-11.117481px;}
.ws27{word-spacing:-10.891240px;}
.ws20{word-spacing:-10.081094px;}
.ws8{word-spacing:-3.945204px;}
.ws19{word-spacing:-0.188579px;}
.ws1c{word-spacing:-0.074189px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.977646px;}
.wsb{word-spacing:1.117808px;}
.wsc{word-spacing:2.235616px;}
.wsa{word-spacing:3.024656px;}
.ws9{word-spacing:3.221917px;}
.ws6{word-spacing:9.928763px;}
.ws5{word-spacing:12.230132px;}
.ws7{word-spacing:18.208930px;}
.ws4{word-spacing:18.213692px;}
.ws1b{word-spacing:490.532337px;}
.ws3{word-spacing:492.427213px;}
.ws2{word-spacing:528.920350px;}
._1a{margin-left:-445.389730px;}
._22{margin-left:-292.351480px;}
._1e{margin-left:-283.992869px;}
._1b{margin-left:-195.566772px;}
._1f{margin-left:-187.323780px;}
._20{margin-left:-115.776865px;}
._21{margin-left:-112.893273px;}
._1d{margin-left:-106.004154px;}
._1c{margin-left:-102.930442px;}
._18{margin-left:-9.676549px;}
._19{margin-left:-8.459345px;}
._4{margin-left:-7.298627px;}
._d{margin-left:-6.049313px;}
._0{margin-left:-4.865752px;}
._1{margin-left:-3.616437px;}
._5{margin-left:-2.432876px;}
._2{margin-left:-1.183561px;}
._f{width:1.107837px;}
._e{width:2.631632px;}
._12{width:4.060535px;}
._29{width:5.297263px;}
._2a{width:6.313652px;}
._28{width:7.486467px;}
._2c{width:16.077833px;}
._2b{width:17.141301px;}
._25{width:19.746304px;}
._27{width:21.805432px;}
._c{width:32.153413px;}
._3{width:36.558890px;}
._13{width:39.265805px;}
._10{width:54.873876px;}
._24{width:60.312534px;}
._17{width:64.529853px;}
._26{width:78.092164px;}
._16{width:82.947888px;}
._23{width:84.159184px;}
._a{width:110.465712px;}
._b{width:128.745157px;}
._15{width:139.410647px;}
._8{width:207.320470px;}
._9{width:243.879361px;}
._7{width:265.803595px;}
._6{width:324.295769px;}
._11{width:846.193567px;}
._14{width:850.940662px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:8.400000px;}
.fsb{font-size:38.886998px;}
.fs6{font-size:41.767517px;}
.fs9{font-size:43.251233px;}
.fs7{font-size:60.490886px;}
.fs2{font-size:65.753400px;}
.fs3{font-size:66.251923px;}
.fs4{font-size:72.012960px;}
.fsa{font-size:74.189238px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:89.664000px;}
.fs8{font-size:111.277852px;}
.y0{bottom:0.000000px;}
.y1a8{bottom:3.600648px;}
.y166{bottom:3.960713px;}
.y1a6{bottom:3.990718px;}
.y192{bottom:4.320778px;}
.yc4{bottom:5.452345px;}
.y1b7{bottom:6.481166px;}
.y168{bottom:7.561361px;}
.y16a{bottom:7.921426px;}
.y21{bottom:8.913000px;}
.y16e{bottom:12.947330px;}
.y179{bottom:12.962333px;}
.y16c{bottom:12.977336px;}
.y177{bottom:12.992338px;}
.y17b{bottom:13.322398px;}
.yc3{bottom:18.844571px;}
.y19c{bottom:22.669080px;}
.y194{bottom:22.684082px;}
.y1a0{bottom:22.714088px;}
.y19a{bottom:23.029144px;}
.y165{bottom:23.044147px;}
.y196{bottom:23.059150px;}
.y1a5{bottom:23.074153px;}
.yc5{bottom:23.163869px;}
.y1d1{bottom:41.422455px;}
.y1a4{bottom:41.797522px;}
.y190{bottom:41.812525px;}
.yc6{bottom:41.972409px;}
.y1b5{bottom:42.127582px;}
.y164{bottom:42.487646px;}
.y30{bottom:50.740500px;}
.y23{bottom:57.610368px;}
.yca{bottom:58.360503px;}
.yc8{bottom:60.175830px;}
.y199{bottom:60.835948px;}
.y1ad{bottom:60.850951px;}
.y18f{bottom:60.895959px;}
.y1a3{bottom:61.241021px;}
.y1d0{bottom:69.867574px;}
.y22{bottom:77.810003px;}
.y18e{bottom:80.339458px;}
.y198{bottom:98.642752px;}
.y1cf{bottom:98.672758px;}
.y1ac{bottom:99.062828px;}
.y161{bottom:114.536613px;}
.y2{bottom:115.350000px;}
.y1d7{bottom:115.976872px;}
.y80{bottom:118.497326px;}
.yde{bottom:120.297650px;}
.yec{bottom:122.458038px;}
.yb5{bottom:122.818103px;}
.y1ce{bottom:127.117877px;}
.y143{bottom:134.340177px;}
.yf8{bottom:136.140501px;}
.y88{bottom:138.660954px;}
.yd9{bottom:140.461278px;}
.ya5{bottom:142.261602px;}
.y9b{bottom:142.621667px;}
.y1d6{bottom:148.022639px;}
.y1cd{bottom:155.608004px;}
.y7f{bottom:156.298129px;}
.y75{bottom:157.738388px;}
.ydd{bottom:158.458517px;}
.y153{bottom:159.178647px;}
.y1b3{bottom:159.898777px;}
.yb4{bottom:160.258841px;}
.y137{bottom:163.139360px;}
.y18c{bottom:166.019878px;}
.yc7{bottom:169.171841px;}
.yc9{bottom:169.186844px;}
.y160{bottom:169.620526px;}
.y142{bottom:172.140980px;}
.ye6{bottom:176.461757px;}
.y5c{bottom:177.902017px;}
.yd8{bottom:178.262081px;}
.y1d5{bottom:181.502665px;}
.y123{bottom:183.302989px;}
.y1b2{bottom:183.949501px;}
.y1cc{bottom:184.053124px;}
.yf7{bottom:192.304609px;}
.y18b{bottom:193.384803px;}
.y109{bottom:194.104933px;}
.y7e{bottom:194.464997px;}
.y74{bottom:195.545192px;}
.y152{bottom:195.905257px;}
.ydc{bottom:196.265321px;}
.y15f{bottom:196.985451px;}
.y9a{bottom:198.425710px;}
.y136{bottom:201.351237px;}
.y1d4{bottom:204.231755px;}
.yc2{bottom:206.798613px;}
.y141{bottom:210.352857px;}
.y1cb{bottom:212.498243px;}
.ye5{bottom:214.313570px;}
.y5b{bottom:215.393764px;}
.yb3{bottom:216.473958px;}
.y18a{bottom:220.794736px;}
.y122{bottom:221.154801px;}
.y1b1{bottom:222.161378px;}
.y15e{bottom:225.475578px;}
.y45{bottom:231.956745px;}
.y7d{bottom:232.316810px;}
.y151{bottom:232.676874px;}
.y73{bottom:233.757069px;}
.yd7{bottom:234.477198px;}
.y99{bottom:236.277522px;}
.y1d3{bottom:238.437911px;}
.y135{bottom:239.158041px;}
.y1ca{bottom:240.943362px;}
.yf6{bottom:248.159661px;}
.y189{bottom:248.519725px;}
.y5a{bottom:252.480438px;}
.yed{bottom:252.840503px;}
.yb2{bottom:254.280762px;}
.y1b0{bottom:259.968182px;}
.y121{bottom:268.323290px;}
.y150{bottom:269.043419px;}
.y1c9{bottom:269.418487px;}
.y108{bottom:270.123614px;}
.y7c{bottom:270.483678px;}
.y72{bottom:271.563873px;}
.yd6{bottom:272.284002px;}
.y188{bottom:272.570450px;}
.y20{bottom:272.589000px;}
.y98{bottom:274.084326px;}
.y134{bottom:277.324910px;}
.y15d{bottom:279.125234px;}
.yf5{bottom:285.966465px;}
.y140{bottom:286.326530px;}
.y44{bottom:286.686594px;}
.y59{bottom:290.287242px;}
.ye4{bottom:290.647307px;}
.yb1{bottom:292.087566px;}
.y155{bottom:297.848603px;}
.y1c8{bottom:297.863606px;}
.y1af{bottom:298.135051px;}
.y187{bottom:301.015569px;}
.y1d2{bottom:301.089186px;}
.y14f{bottom:305.770029px;}
.y120{bottom:306.130094px;}
.y107{bottom:307.930417px;}
.y7b{bottom:308.290482px;}
.y71{bottom:309.730742px;}
.yd5{bottom:310.090806px;}
.y97{bottom:312.251195px;}
.y133{bottom:315.131713px;}
.y1f{bottom:315.927000px;}
.yf4{bottom:323.773269px;}
.y13f{bottom:324.133333px;}
.y1b8{bottom:325.139911px;}
.y1c7{bottom:326.308725px;}
.y186{bottom:329.460688px;}
.yb0{bottom:330.284441px;}
.yc1{bottom:330.644505px;}
.y154{bottom:331.724700px;}
.y1e{bottom:335.353500px;}
.y1ae{bottom:335.956857px;}
.y43{bottom:342.526644px;}
.y11f{bottom:343.966903px;}
.y7a{bottom:346.127292px;}
.y58{bottom:346.487357px;}
.y70{bottom:347.567551px;}
.yd4{bottom:348.287681px;}
.ya4{bottom:350.088005px;}
.y15c{bottom:352.608458px;}
.y132{bottom:352.968523px;}
.y1c6{bottom:354.753844px;}
.y1d{bottom:354.781500px;}
.y185{bottom:357.920810px;}
.y13e{bottom:361.970143px;}
.y96{bottom:368.091245px;}
.yeb{bottom:368.451309px;}
.y1ab{bottom:373.763661px;}
.y1c{bottom:374.208000px;}
.y14e{bottom:379.253253px;}
.yf3{bottom:380.333448px;}
.y15b{bottom:381.053577px;}
.y11e{bottom:382.133772px;}
.y1c5{bottom:383.198963px;}
.y106{bottom:383.934096px;}
.y79{bottom:384.294161px;}
.ye3{bottom:384.654225px;}
.y6f{bottom:385.734420px;}
.yd3{bottom:386.094485px;}
.y184{bottom:386.365929px;}
.ya3{bottom:388.254873px;}
.y131{bottom:391.135392px;}
.y1b{bottom:393.634500px;}
.y42{bottom:398.336688px;}
.y13d{bottom:400.137012px;}
.y57{bottom:402.297401px;}
.y95{bottom:406.258113px;}
.ye9{bottom:406.618178px;}
.y15a{bottom:409.498696px;}
.y1c4{bottom:411.674088px;}
.y1a{bottom:413.062500px;}
.yf2{bottom:413.459409px;}
.y183{bottom:414.811049px;}
.y14d{bottom:415.619798px;}
.y11d{bottom:419.940576px;}
.y78{bottom:422.100965px;}
.yd2{bottom:424.261353px;}
.yc0{bottom:424.621418px;}
.ya2{bottom:426.061677px;}
.y130{bottom:428.942196px;}
.y105{bottom:431.102585px;}
.y13c{bottom:437.943816px;}
.y56{bottom:440.104205px;}
.y1c3{bottom:440.119207px;}
.y6e{bottom:441.544464px;}
.y182{bottom:443.256168px;}
.y94{bottom:444.064917px;}
.yf1{bottom:449.105825px;}
.y14c{bottom:452.391416px;}
.y41{bottom:453.111545px;}
.y11c{bottom:458.152453px;}
.y77{bottom:460.312841px;}
.y87{bottom:460.672906px;}
.yd1{bottom:462.113165px;}
.ybf{bottom:462.473230px;}
.y159{bottom:466.433943px;}
.y12f{bottom:467.154073px;}
.y1c2{bottom:468.564326px;}
.y104{bottom:468.954397px;}
.y181{bottom:471.746295px;}
.y13b{bottom:476.155693px;}
.y55{bottom:478.316081px;}
.y6d{bottom:479.396276px;}
.y93{bottom:481.916729px;}
.ye8{bottom:482.276794px;}
.yf0{bottom:484.797248px;}
.y1aa{bottom:487.949211px;}
.y14b{bottom:489.118025px;}
.y158{bottom:495.239127px;}
.y11b{bottom:495.959257px;}
.y1c1{bottom:497.009446px;}
.y86{bottom:498.119645px;}
.ye2{bottom:498.479710px;}
.yd0{bottom:499.919969px;}
.y180{bottom:500.191414px;}
.y19{bottom:504.220500px;}
.y12e{bottom:504.960877px;}
.y103{bottom:507.121265px;}
.y40{bottom:507.841395px;}
.y13a{bottom:513.962497px;}
.y76{bottom:516.122885px;}
.y6c{bottom:517.563145px;}
.ybe{bottom:517.923209px;}
.y92{bottom:520.083598px;}
.yef{bottom:520.803728px;}
.y18{bottom:523.647000px;}
.y54{bottom:523.684246px;}
.y1c0{bottom:525.499573px;}
.y1a9{bottom:525.756015px;}
.y14a{bottom:525.844635px;}
.y17f{bottom:528.636533px;}
.y85{bottom:535.926449px;}
.ycf{bottom:538.086838px;}
.ydb{bottom:538.446903px;}
.y17{bottom:543.075000px;}
.y11a{bottom:543.127745px;}
.y139{bottom:552.129365px;}
.y53{bottom:553.929689px;}
.y1bf{bottom:553.944692px;}
.y6b{bottom:555.369949px;}
.ybd{bottom:556.450143px;}
.y17e{bottom:557.081653px;}
.ya1{bottom:557.890402px;}
.yaf{bottom:558.250467px;}
.y3f{bottom:562.211180px;}
.y16{bottom:562.501500px;}
.y1a7{bottom:564.643013px;}
.y84{bottom:574.093318px;}
.y91{bottom:575.923648px;}
.y119{bottom:580.964555px;}
.y15{bottom:581.929500px;}
.y1be{bottom:582.389811px;}
.y1a2{bottom:584.086513px;}
.y17d{bottom:585.556777px;}
.y138{bottom:589.966175px;}
.y102{bottom:591.766499px;}
.y52{bottom:592.126564px;}
.ye1{bottom:592.486628px;}
.y6a{bottom:593.566823px;}
.ybc{bottom:593.926888px;}
.yae{bottom:596.087276px;}
.y149{bottom:598.967795px;}
.y14{bottom:601.356000px;}
.y1bd{bottom:611.194995px;}
.y17c{bottom:614.001896px;}
.y90{bottom:614.090516px;}
.y3e{bottom:616.971035px;}
.y118{bottom:618.771359px;}
.yee{bottom:627.772979px;}
.y51{bottom:629.933368px;}
.y83{bottom:630.293432px;}
.y69{bottom:631.373627px;}
.yce{bottom:632.093756px;}
.yad{bottom:633.894080px;}
.y148{bottom:635.694404px;}
.y1bc{bottom:639.670120px;}
.y17a{bottom:642.447016px;}
.y13{bottom:644.694000px;}
.ye0{bottom:647.936608px;}
.ybb{bottom:650.457061px;}
.ye7{bottom:651.897320px;}
.ya0{bottom:652.257385px;}
.y117{bottom:656.938228px;}
.y12{bottom:664.120500px;}
.y1a1{bottom:664.139524px;}
.y12d{bottom:665.939848px;}
.y50{bottom:668.100236px;}
.y1bb{bottom:668.115239px;}
.y82{bottom:668.460301px;}
.y8f{bottom:669.900560px;}
.ycd{bottom:670.260625px;}
.y178{bottom:671.252200px;}
.y3d{bottom:672.060949px;}
.y101{bottom:676.741792px;}
.y11{bottom:683.548500px;}
.ydf{bottom:686.103476px;}
.y68{bottom:687.543736px;}
.yba{bottom:687.903800px;}
.y19f{bottom:688.535310px;}
.yac{bottom:690.424254px;}
.y116{bottom:694.745032px;}
.y1ba{bottom:696.560358px;}
.y176{bottom:699.697319px;}
.y12c{bottom:703.776657px;}
.y4f{bottom:705.937046px;}
.y8e{bottom:708.097435px;}
.y9f{bottom:708.457499px;}
.y147{bottom:708.817564px;}
.y157{bottom:709.177629px;}
.y100{bottom:714.938666px;}
.y3c{bottom:717.459119px;}
.y81{bottom:723.940286px;}
.y1b9{bottom:725.005477px;}
.y67{bottom:725.020480px;}
.yb9{bottom:726.100675px;}
.y19e{bottom:726.387122px;}
.yda{bottom:726.460739px;}
.y10{bottom:726.885000px;}
.y175{bottom:728.187446px;}
.y115{bottom:732.941906px;}
.y12b{bottom:741.943526px;}
.y156{bottom:742.663655px;}
.y4e{bottom:744.103915px;}
.y146{bottom:745.544174px;}
.y8d{bottom:745.904239px;}
.yff{bottom:752.745470px;}
.y174{bottom:756.632565px;}
.y66{bottom:762.107155px;}
.yb8{bottom:763.907479px;}
.y19d{bottom:764.193926px;}
.y9e{bottom:764.267543px;}
.y3b{bottom:765.707803px;}
.y114{bottom:770.748710px;}
.y12a{bottom:779.750330px;}
.y4d{bottom:781.910719px;}
.yf{bottom:782.178000px;}
.y145{bottom:782.270783px;}
.yab{bottom:783.711043px;}
.ycc{bottom:784.071107px;}
.y173{bottom:785.077684px;}
.yfe{bottom:799.553894px;}
.y65{bottom:799.913959px;}
.ye{bottom:801.604500px;}
.y8c{bottom:801.714283px;}
.yb7{bottom:802.074347px;}
.y19b{bottom:802.360795px;}
.y113{bottom:808.555514px;}
.y3a{bottom:811.436032px;}
.y172{bottom:813.522804px;}
.y129{bottom:817.557134px;}
.y144{bottom:818.637328px;}
.y4c{bottom:819.717523px;}
.yd{bottom:821.032500px;}
.yaa{bottom:821.877911px;}
.y64{bottom:837.765771px;}
.y8b{bottom:839.926159px;}
.y197{bottom:840.212607px;}
.y171{bottom:842.012931px;}
.y112{bottom:846.767391px;}
.y128{bottom:855.769011px;}
.y4b{bottom:857.929399px;}
.y39{bottom:859.729723px;}
.yea{bottom:860.089788px;}
.yc{bottom:864.370500px;}
.y170{bottom:870.458050px;}
.y2f{bottom:870.531668px;}
.yfd{bottom:875.572575px;}
.y63{bottom:875.932639px;}
.ya9{bottom:877.732963px;}
.y9d{bottom:878.093028px;}
.yb{bottom:883.797000px;}
.y111{bottom:884.574195px;}
.y127{bottom:893.575815px;}
.y4a{bottom:895.736203px;}
.y8a{bottom:896.096268px;}
.y16f{bottom:898.903169px;}
.y2e{bottom:902.937499px;}
.ya{bottom:903.223500px;}
.y38{bottom:905.457953px;}
.y62{bottom:913.739443px;}
.ya8{bottom:915.899832px;}
.y9{bottom:922.651500px;}
.y110{bottom:922.741063px;}
.y16d{bottom:927.348289px;}
.y126{bottom:931.742683px;}
.y49{bottom:933.903072px;}
.y9c{bottom:934.263137px;}
.y2d{bottom:936.423526px;}
.y8{bottom:942.078000px;}
.yfc{bottom:951.576253px;}
.y61{bottom:951.936318px;}
.y37{bottom:953.736642px;}
.y195{bottom:953.993084px;}
.y16b{bottom:955.793408px;}
.y2c{bottom:957.697354px;}
.y10f{bottom:960.577873px;}
.y125{bottom:969.579493px;}
.y48{bottom:971.739882px;}
.ycb{bottom:972.099946px;}
.y2b{bottom:978.581113px;}
.y169{bottom:984.973659px;}
.y7{bottom:985.416000px;}
.yfb{bottom:989.383057px;}
.y60{bottom:989.743122px;}
.ya7{bottom:991.543446px;}
.y193{bottom:992.174955px;}
.y10e{bottom:998.384677px;}
.y2a{bottom:1000.545066px;}
.y6{bottom:1004.842500px;}
.y124{bottom:1007.386297px;}
.y167{bottom:1008.377871px;}
.y36{bottom:1009.546686px;}
.yb6{bottom:1009.906750px;}
.y29{bottom:1021.428824px;}
.y5{bottom:1024.270500px;}
.y5f{bottom:1027.549926px;}
.y89{bottom:1027.909991px;}
.y191{bottom:1030.701889px;}
.y163{bottom:1031.422018px;}
.y28{bottom:1043.032712px;}
.y4{bottom:1043.697000px;}
.y10d{bottom:1045.553166px;}
.y47{bottom:1047.713554px;}
.ya6{bottom:1048.073619px;}
.y18d{bottom:1050.505453px;}
.y27{bottom:1063.916471px;}
.yfa{bottom:1065.356730px;}
.y5e{bottom:1065.716794px;}
.y35{bottom:1066.076859px;}
.y1b6{bottom:1066.348304px;}
.y10c{bottom:1083.404978px;}
.yf9{bottom:1085.205302px;}
.y46{bottom:1085.565367px;}
.y26{bottom:1085.925431px;}
.y1b4{bottom:1088.717330px;}
.y162{bottom:1093.126727px;}
.y5d{bottom:1103.568607px;}
.y34{bottom:1103.928671px;}
.y25{bottom:1106.449125px;}
.y10b{bottom:1121.571847px;}
.y3{bottom:1125.889500px;}
.y10a{bottom:1141.375411px;}
.y24{bottom:1141.735475px;}
.y33{bottom:1142.095540px;}
.y1{bottom:1145.659500px;}
.y31{bottom:1149.156000px;}
.y32{bottom:1150.628715px;}
.h2{height:5.598633px;}
.h2e{height:18.708367px;}
.h26{height:19.068432px;}
.h33{height:21.273829px;}
.h1d{height:22.309015px;}
.h1e{height:22.669080px;}
.h20{height:28.430117px;}
.h1f{height:28.445119px;}
.h21{height:28.466123px;}
.h24{height:28.475125px;}
.h22{height:28.481126px;}
.h23{height:28.805184px;}
.h15{height:32.037168px;}
.h27{height:37.791801px;}
.h30{height:37.806804px;}
.h2a{height:37.827808px;}
.h2c{height:37.842810px;}
.h2b{height:38.151866px;}
.h28{height:38.166869px;}
.h31{height:38.187873px;}
.hf{height:41.351192px;}
.h17{height:42.427601px;}
.h19{height:42.448720px;}
.he{height:43.562215px;}
.h7{height:45.289401px;}
.h4{height:47.868475px;}
.ha{height:49.227609px;}
.h5{height:50.827378px;}
.h13{height:54.011495px;}
.h16{height:54.953650px;}
.h32{height:56.875236px;}
.h1c{height:57.280309px;}
.hc{height:57.372000px;}
.h10{height:59.393814px;}
.h3{height:65.275392px;}
.h12{height:67.689369px;}
.h8{height:69.098686px;}
.h35{height:70.676782px;}
.hd{height:73.807658px;}
.h11{height:73.987690px;}
.h9{height:75.107267px;}
.h2d{height:76.003678px;}
.h14{height:82.426026px;}
.h1b{height:91.117398px;}
.h1a{height:91.132401px;}
.h25{height:95.087113px;}
.h29{height:113.765474px;}
.h2f{height:114.170547px;}
.h1{height:117.340500px;}
.h18{height:143.622554px;}
.h34{height:740.473261px;}
.hb{height:1212.259500px;}
.h6{height:1254.087000px;}
.h0{height:1263.000000px;}
.w11{width:61.571081px;}
.w7{width:67.677180px;}
.wf{width:69.477504px;}
.w15{width:70.593705px;}
.w16{width:71.292830px;}
.w1{width:71.317500px;}
.wc{width:73.123160px;}
.w10{width:74.554417px;}
.w19{width:74.569420px;}
.wd{width:77.443937px;}
.we{width:77.810003px;}
.w1a{width:86.775617px;}
.w9{width:105.859051px;}
.w14{width:106.255122px;}
.w1d{width:122.812102px;}
.w1c{width:122.827105px;}
.w1f{width:123.163165px;}
.w1e{width:123.178168px;}
.w5{width:168.550832px;}
.wb{width:205.642009px;}
.wa{width:228.386102px;}
.w13{width:329.909373px;}
.w18{width:340.351252px;}
.w1b{width:492.373611px;}
.w8{width:539.917168px;}
.w17{width:572.323000px;}
.w12{width:578.084036px;}
.w6{width:581.729692px;}
.w3{width:870.583500px;}
.w2{width:874.797204px;}
.w4{width:878.553000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:5.400972px;}
.x1a{left:7.906423px;}
.x38{left:9.751755px;}
.x26{left:11.867136px;}
.x3c{left:13.682462px;}
.x1{left:15.367500px;}
.x31{left:16.908043px;}
.x22{left:17.988237px;}
.x1f{left:19.803564px;}
.x24{left:21.273829px;}
.x39{left:22.309015px;}
.x1b{left:23.389209px;}
.x36{left:24.469404px;}
.x2a{left:25.909663px;}
.x37{left:26.989857px;}
.x29{left:29.870376px;}
.x27{left:32.045767px;}
.x28{left:34.206156px;}
.x2e{left:36.756615px;}
.x2b{left:43.552838px;}
.xb{left:44.752897px;}
.xf{left:47.602205px;}
.x41{left:49.688942px;}
.xe{left:50.774996px;}
.x40{left:52.224399px;}
.xc{left:53.479550px;}
.x3f{left:56.905241px;}
.x10{left:58.673001px;}
.x2{left:59.776500px;}
.x3{left:64.345500px;}
.x1d{left:88.620949px;}
.x5{left:109.335446px;}
.x11{left:114.394356px;}
.xa{left:119.891345px;}
.xd{left:129.859915px;}
.x6{left:136.379313px;}
.x2c{left:150.076778px;}
.x15{left:151.862099px;}
.x32{left:152.957296px;}
.x7{left:163.384173px;}
.x19{left:169.160212px;}
.x12{left:173.962308px;}
.x3a{left:192.924489px;}
.x1c{left:275.034266px;}
.x8{left:311.083500px;}
.x3b{left:316.126661px;}
.x20{left:348.172429px;}
.x21{left:425.616366px;}
.x9{left:430.657273px;}
.x4{left:434.978051px;}
.x18{left:436.418310px;}
.x3d{left:438.938764px;}
.x2d{left:479.986151px;}
.x33{left:493.308548px;}
.x1e{left:503.435371px;}
.x3e{left:562.125933px;}
.x34{left:567.886970px;}
.x23{left:572.927877px;}
.x2f{left:586.250275px;}
.x16{left:617.965983px;}
.x35{left:638.504679px;}
.x25{left:647.506299px;}
.x30{left:656.867984px;}
.x13{left:696.130050px;}
.x17{left:768.863139px;}
@media print{
.v7{vertical-align:-70.412672pt;}
.v2{vertical-align:-26.884838pt;}
.v5{vertical-align:-7.681382pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.681382pt;}
.v4{vertical-align:16.526533pt;}
.v1{vertical-align:26.884838pt;}
.v3{vertical-align:46.447777pt;}
.ls1d{letter-spacing:-1.685637pt;}
.ls1f{letter-spacing:-1.360245pt;}
.ls2a{letter-spacing:-1.280230pt;}
.ls27{letter-spacing:-1.146873pt;}
.ls4{letter-spacing:-1.024184pt;}
.lsa{letter-spacing:-1.008181pt;}
.ls17{letter-spacing:-0.907465pt;}
.ls29{letter-spacing:-0.752135pt;}
.lsb{letter-spacing:-0.736132pt;}
.ls2b{letter-spacing:-0.640115pt;}
.ls3{letter-spacing:-0.448081pt;}
.ls22{letter-spacing:-0.439012pt;}
.ls12{letter-spacing:-0.412341pt;}
.ls20{letter-spacing:-0.407007pt;}
.ls9{letter-spacing:-0.271516pt;}
.ls1e{letter-spacing:-0.158962pt;}
.ls18{letter-spacing:-0.079481pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.024324pt;}
.lsc{letter-spacing:0.081935pt;}
.ls2e{letter-spacing:0.128023pt;}
.ls15{letter-spacing:0.129180pt;}
.ls16{letter-spacing:0.235562pt;}
.ls7{letter-spacing:0.271409pt;}
.ls5{letter-spacing:0.271516pt;}
.ls1c{letter-spacing:0.378095pt;}
.ls19{letter-spacing:0.407113pt;}
.ls11{letter-spacing:0.439119pt;}
.ls23{letter-spacing:0.513799pt;}
.ls8{letter-spacing:0.542818pt;}
.ls6{letter-spacing:0.544098pt;}
.ls26{letter-spacing:0.567142pt;}
.ls21{letter-spacing:0.640115pt;}
.ls24{letter-spacing:0.649504pt;}
.ls1a{letter-spacing:0.720130pt;}
.ls10{letter-spacing:0.873117pt;}
.ls13{letter-spacing:1.001140pt;}
.lsd{letter-spacing:1.552279pt;}
.ls0{letter-spacing:16.249887pt;}
.ls2c{letter-spacing:19.474865pt;}
.ls2{letter-spacing:48.776778pt;}
.lse{letter-spacing:57.881777pt;}
.lsf{letter-spacing:74.524772pt;}
.ls25{letter-spacing:89.887537pt;}
.ls28{letter-spacing:123.184196pt;}
.ls2d{letter-spacing:137.896604pt;}
.ls14{letter-spacing:364.111053pt;}
.ws18{word-spacing:-36.204348pt;}
.wsd{word-spacing:-35.142324pt;}
.ws15{word-spacing:-17.923866pt;}
.wse{word-spacing:-17.347122pt;}
.ws12{word-spacing:-16.915684pt;}
.ws10{word-spacing:-16.643102pt;}
.ws11{word-spacing:-16.371586pt;}
.ws1{word-spacing:-16.248396pt;}
.ws13{word-spacing:-16.100071pt;}
.ws21{word-spacing:-15.964580pt;}
.ws14{word-spacing:-15.635454pt;}
.ws16{word-spacing:-15.363405pt;}
.ws24{word-spacing:-15.224713pt;}
.ws25{word-spacing:-15.091356pt;}
.ws1e{word-spacing:-14.685950pt;}
.ws17{word-spacing:-12.896934pt;}
.ws1d{word-spacing:-11.041347pt;}
.ws22{word-spacing:-10.961333pt;}
.wsf{word-spacing:-10.321217pt;}
.ws26{word-spacing:-10.241737pt;}
.ws1f{word-spacing:-10.162256pt;}
.ws23{word-spacing:-9.882205pt;}
.ws27{word-spacing:-9.681102pt;}
.ws20{word-spacing:-8.960973pt;}
.ws8{word-spacing:-3.506848pt;}
.ws19{word-spacing:-0.167626pt;}
.ws1c{word-spacing:-0.065946pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.869019pt;}
.wsb{word-spacing:0.993607pt;}
.wsc{word-spacing:1.987214pt;}
.wsa{word-spacing:2.688583pt;}
.ws9{word-spacing:2.863926pt;}
.ws6{word-spacing:8.825567pt;}
.ws5{word-spacing:10.871229pt;}
.ws7{word-spacing:16.185716pt;}
.ws4{word-spacing:16.189948pt;}
.ws1b{word-spacing:436.028744pt;}
.ws3{word-spacing:437.713078pt;}
.ws2{word-spacing:470.151422pt;}
._1a{margin-left:-395.901983pt;}
._22{margin-left:-259.867982pt;}
._1e{margin-left:-252.438106pt;}
._1b{margin-left:-173.837131pt;}
._1f{margin-left:-166.510026pt;}
._20{margin-left:-102.912769pt;}
._21{margin-left:-100.349576pt;}
._1d{margin-left:-94.225915pt;}
._1c{margin-left:-91.493727pt;}
._18{margin-left:-8.601377pt;}
._19{margin-left:-7.519418pt;}
._4{margin-left:-6.487669pt;}
._d{margin-left:-5.377167pt;}
._0{margin-left:-4.325113pt;}
._1{margin-left:-3.214611pt;}
._5{margin-left:-2.162556pt;}
._2{margin-left:-1.052054pt;}
._f{width:0.984744pt;}
._e{width:2.339228pt;}
._12{width:3.609365pt;}
._29{width:4.708678pt;}
._2a{width:5.612135pt;}
._28{width:6.654638pt;}
._2c{width:14.291407pt;}
._2b{width:15.236712pt;}
._25{width:17.552270pt;}
._27{width:19.382607pt;}
._c{width:28.580811pt;}
._3{width:32.496791pt;}
._13{width:34.902938pt;}
._10{width:48.776778pt;}
._24{width:53.611142pt;}
._17{width:57.359870pt;}
._26{width:69.415257pt;}
._16{width:73.731456pt;}
._23{width:74.808163pt;}
._a{width:98.191744pt;}
._b{width:114.440140pt;}
._15{width:123.920575pt;}
._8{width:184.284862pt;}
._9{width:216.781654pt;}
._7{width:236.269862pt;}
._6{width:288.262906pt;}
._11{width:752.172060pt;}
._14{width:756.391699pt;}
.fs0{font-size:7.466667pt;}
.fsb{font-size:34.566221pt;}
.fs6{font-size:37.126682pt;}
.fs9{font-size:38.445540pt;}
.fs7{font-size:53.769677pt;}
.fs2{font-size:58.447467pt;}
.fs3{font-size:58.890598pt;}
.fs4{font-size:64.011520pt;}
.fsa{font-size:65.945990pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:79.701333pt;}
.fs8{font-size:98.913647pt;}
.y0{bottom:0.000000pt;}
.y1a8{bottom:3.200576pt;}
.y166{bottom:3.520634pt;}
.y1a6{bottom:3.547305pt;}
.y192{bottom:3.840691pt;}
.yc4{bottom:4.846528pt;}
.y1b7{bottom:5.761037pt;}
.y168{bottom:6.721210pt;}
.y16a{bottom:7.041267pt;}
.y21{bottom:7.922667pt;}
.y16e{bottom:11.508738pt;}
.y179{bottom:11.522074pt;}
.y16c{bottom:11.535409pt;}
.y177{bottom:11.548745pt;}
.y17b{bottom:11.842131pt;}
.yc3{bottom:16.750730pt;}
.y19c{bottom:20.150293pt;}
.y194{bottom:20.163629pt;}
.y1a0{bottom:20.190300pt;}
.y19a{bottom:20.470351pt;}
.y165{bottom:20.483686pt;}
.y196{bottom:20.497022pt;}
.y1a5{bottom:20.510358pt;}
.yc5{bottom:20.590106pt;}
.y1d1{bottom:36.819960pt;}
.y1a4{bottom:37.153353pt;}
.y190{bottom:37.166689pt;}
.yc6{bottom:37.308808pt;}
.y1b5{bottom:37.446739pt;}
.y164{bottom:37.766797pt;}
.y30{bottom:45.102667pt;}
.y23{bottom:51.209216pt;}
.yca{bottom:51.876003pt;}
.yc8{bottom:53.489626pt;}
.y199{bottom:54.076399pt;}
.y1ad{bottom:54.089734pt;}
.y18f{bottom:54.129742pt;}
.y1a3{bottom:54.436463pt;}
.y1d0{bottom:62.104510pt;}
.y22{bottom:69.164447pt;}
.y18e{bottom:71.412852pt;}
.y198{bottom:87.682447pt;}
.y1cf{bottom:87.709118pt;}
.y1ac{bottom:88.055847pt;}
.y161{bottom:101.810323pt;}
.y2{bottom:102.533333pt;}
.y1d7{bottom:103.090553pt;}
.y80{bottom:105.330956pt;}
.yde{bottom:106.931244pt;}
.yec{bottom:108.851590pt;}
.yb5{bottom:109.171647pt;}
.y1ce{bottom:112.993669pt;}
.y143{bottom:119.413491pt;}
.yf8{bottom:121.013779pt;}
.y88{bottom:123.254182pt;}
.yd9{bottom:124.854470pt;}
.ya5{bottom:126.454758pt;}
.y9b{bottom:126.774815pt;}
.y1d6{bottom:131.575679pt;}
.y1cd{bottom:138.318226pt;}
.y7f{bottom:138.931670pt;}
.y75{bottom:140.211900pt;}
.ydd{bottom:140.852015pt;}
.y153{bottom:141.492131pt;}
.y1b3{bottom:142.132246pt;}
.yb4{bottom:142.452303pt;}
.y137{bottom:145.012764pt;}
.y18c{bottom:147.573225pt;}
.yc7{bottom:150.374970pt;}
.yc9{bottom:150.388306pt;}
.y160{bottom:150.773801pt;}
.y142{bottom:153.014204pt;}
.ye6{bottom:156.854895pt;}
.y5c{bottom:158.135126pt;}
.yd8{bottom:158.455183pt;}
.y1d5{bottom:161.335702pt;}
.y123{bottom:162.935990pt;}
.y1b2{bottom:163.510667pt;}
.y1cc{bottom:163.602777pt;}
.yf7{bottom:170.937430pt;}
.y18b{bottom:171.897603pt;}
.y109{bottom:172.537718pt;}
.y7e{bottom:172.857775pt;}
.y74{bottom:173.817948pt;}
.y152{bottom:174.138006pt;}
.ydc{bottom:174.458063pt;}
.y15f{bottom:175.098179pt;}
.y9a{bottom:176.378409pt;}
.y136{bottom:178.978877pt;}
.y1d4{bottom:181.539338pt;}
.yc2{bottom:183.820989pt;}
.y141{bottom:186.980317pt;}
.y1cb{bottom:188.887327pt;}
.ye5{bottom:190.500951pt;}
.y5b{bottom:191.461123pt;}
.yb3{bottom:192.421296pt;}
.y18a{bottom:196.261987pt;}
.y122{bottom:196.582045pt;}
.y1b1{bottom:197.476780pt;}
.y15e{bottom:200.422736pt;}
.y45{bottom:206.183773pt;}
.y7d{bottom:206.503831pt;}
.y151{bottom:206.823888pt;}
.y73{bottom:207.784061pt;}
.yd7{bottom:208.424176pt;}
.y99{bottom:210.024464pt;}
.y1d3{bottom:211.944810pt;}
.y135{bottom:212.584925pt;}
.y1ca{bottom:214.171877pt;}
.yf6{bottom:220.586365pt;}
.y189{bottom:220.906423pt;}
.y5a{bottom:224.427056pt;}
.yed{bottom:224.747114pt;}
.yb2{bottom:226.027344pt;}
.y1b0{bottom:231.082828pt;}
.y121{bottom:238.509591pt;}
.y150{bottom:239.149706pt;}
.y1c9{bottom:239.483099pt;}
.y108{bottom:240.109879pt;}
.y7c{bottom:240.429936pt;}
.y72{bottom:241.390109pt;}
.yd6{bottom:242.030224pt;}
.y188{bottom:242.284844pt;}
.y20{bottom:242.301333pt;}
.y98{bottom:243.630512pt;}
.y134{bottom:246.511031pt;}
.y15d{bottom:248.111319pt;}
.yf5{bottom:254.192413pt;}
.y140{bottom:254.512471pt;}
.y44{bottom:254.832528pt;}
.y59{bottom:258.033104pt;}
.ye4{bottom:258.353162pt;}
.yb1{bottom:259.633392pt;}
.y155{bottom:264.754314pt;}
.y1c8{bottom:264.767650pt;}
.y1af{bottom:265.008934pt;}
.y187{bottom:267.569395pt;}
.y1d2{bottom:267.634832pt;}
.y14f{bottom:271.795581pt;}
.y120{bottom:272.115639pt;}
.y107{bottom:273.715927pt;}
.y7b{bottom:274.035984pt;}
.y71{bottom:275.316215pt;}
.yd5{bottom:275.636272pt;}
.y97{bottom:277.556618pt;}
.y133{bottom:280.117079pt;}
.y1f{bottom:280.824000pt;}
.yf4{bottom:287.798461pt;}
.y13f{bottom:288.118519pt;}
.y1b8{bottom:289.013254pt;}
.y1c7{bottom:290.052200pt;}
.y186{bottom:292.853945pt;}
.yb0{bottom:293.586169pt;}
.yc1{bottom:293.906227pt;}
.y154{bottom:294.866400pt;}
.y1e{bottom:298.092000pt;}
.y1ae{bottom:298.628318pt;}
.y43{bottom:304.468128pt;}
.y11f{bottom:305.748358pt;}
.y7a{bottom:307.668704pt;}
.y58{bottom:307.988761pt;}
.y70{bottom:308.948934pt;}
.yd4{bottom:309.589049pt;}
.ya4{bottom:311.189337pt;}
.y15c{bottom:313.429741pt;}
.y132{bottom:313.749798pt;}
.y1c6{bottom:315.336750pt;}
.y1d{bottom:315.361333pt;}
.y185{bottom:318.151831pt;}
.y13e{bottom:321.751238pt;}
.y96{bottom:327.192217pt;}
.yeb{bottom:327.512275pt;}
.y1ab{bottom:332.234366pt;}
.y1c{bottom:332.629333pt;}
.y14e{bottom:337.114003pt;}
.yf3{bottom:338.074176pt;}
.y15b{bottom:338.714291pt;}
.y11e{bottom:339.674464pt;}
.y1c5{bottom:340.621301pt;}
.y106{bottom:341.274752pt;}
.y79{bottom:341.594809pt;}
.ye3{bottom:341.914867pt;}
.y6f{bottom:342.875040pt;}
.yd3{bottom:343.195097pt;}
.y184{bottom:343.436382pt;}
.ya3{bottom:345.115443pt;}
.y131{bottom:347.675904pt;}
.y1b{bottom:349.897333pt;}
.y42{bottom:354.077056pt;}
.y13d{bottom:355.677344pt;}
.y57{bottom:357.597689pt;}
.y95{bottom:361.118323pt;}
.ye9{bottom:361.438381pt;}
.y15a{bottom:363.998841pt;}
.y1c4{bottom:365.932523pt;}
.y1a{bottom:367.166667pt;}
.yf2{bottom:367.519475pt;}
.y183{bottom:368.720932pt;}
.y14d{bottom:369.439821pt;}
.y11d{bottom:373.280512pt;}
.y78{bottom:375.200857pt;}
.yd2{bottom:377.121203pt;}
.yc0{bottom:377.441261pt;}
.ya2{bottom:378.721491pt;}
.y130{bottom:381.281952pt;}
.y105{bottom:383.202297pt;}
.y13c{bottom:389.283392pt;}
.y56{bottom:391.203737pt;}
.y1c3{bottom:391.217073pt;}
.y6e{bottom:392.483968pt;}
.y182{bottom:394.005482pt;}
.y94{bottom:394.724371pt;}
.yf1{bottom:399.205177pt;}
.y14c{bottom:402.125703pt;}
.y41{bottom:402.765818pt;}
.y11c{bottom:407.246625pt;}
.y77{bottom:409.166970pt;}
.y87{bottom:409.487028pt;}
.yd1{bottom:410.767258pt;}
.ybf{bottom:411.087316pt;}
.y159{bottom:414.607949pt;}
.y12f{bottom:415.248065pt;}
.y1c2{bottom:416.501623pt;}
.y104{bottom:416.848353pt;}
.y181{bottom:419.330040pt;}
.y13b{bottom:423.249505pt;}
.y55{bottom:425.169850pt;}
.y6d{bottom:426.130023pt;}
.y93{bottom:428.370426pt;}
.ye8{bottom:428.690484pt;}
.yf0{bottom:430.930887pt;}
.y1aa{bottom:433.732632pt;}
.y14b{bottom:434.771578pt;}
.y158{bottom:440.212557pt;}
.y11b{bottom:440.852673pt;}
.y1c1{bottom:441.786174pt;}
.y86{bottom:442.773018pt;}
.ye2{bottom:443.093076pt;}
.yd0{bottom:444.373306pt;}
.y180{bottom:444.614590pt;}
.y19{bottom:448.196000pt;}
.y12e{bottom:448.854113pt;}
.y103{bottom:450.774458pt;}
.y40{bottom:451.414573pt;}
.y13a{bottom:456.855553pt;}
.y76{bottom:458.775898pt;}
.y6c{bottom:460.056129pt;}
.ybe{bottom:460.376186pt;}
.y92{bottom:462.296532pt;}
.yef{bottom:462.936647pt;}
.y18{bottom:465.464000pt;}
.y54{bottom:465.497108pt;}
.y1c0{bottom:467.110731pt;}
.y1a9{bottom:467.338680pt;}
.y14a{bottom:467.417453pt;}
.y17f{bottom:469.899141pt;}
.y85{bottom:476.379066pt;}
.ycf{bottom:478.299412pt;}
.ydb{bottom:478.619469pt;}
.y17{bottom:482.733333pt;}
.y11a{bottom:482.780218pt;}
.y139{bottom:490.781658pt;}
.y53{bottom:492.381946pt;}
.y1bf{bottom:492.395282pt;}
.y6b{bottom:493.662177pt;}
.ybd{bottom:494.622349pt;}
.y17e{bottom:495.183691pt;}
.ya1{bottom:495.902580pt;}
.yaf{bottom:496.222637pt;}
.y3f{bottom:499.743271pt;}
.y16{bottom:500.001333pt;}
.y1a7{bottom:501.904901pt;}
.y84{bottom:510.305172pt;}
.y91{bottom:511.932131pt;}
.y119{bottom:516.412938pt;}
.y15{bottom:517.270667pt;}
.y1be{bottom:517.679832pt;}
.y1a2{bottom:519.188011pt;}
.y17d{bottom:520.494913pt;}
.y138{bottom:524.414378pt;}
.y102{bottom:526.014666pt;}
.y52{bottom:526.334723pt;}
.ye1{bottom:526.654781pt;}
.y6a{bottom:527.614954pt;}
.ybc{bottom:527.935011pt;}
.yae{bottom:529.855357pt;}
.y149{bottom:532.415818pt;}
.y14{bottom:534.538667pt;}
.y1bd{bottom:543.284440pt;}
.y17c{bottom:545.779463pt;}
.y90{bottom:545.858237pt;}
.y3e{bottom:548.418698pt;}
.y118{bottom:550.018986pt;}
.yee{bottom:558.020426pt;}
.y51{bottom:559.940771pt;}
.y83{bottom:560.260829pt;}
.y69{bottom:561.221002pt;}
.yce{bottom:561.861117pt;}
.yad{bottom:563.461405pt;}
.y148{bottom:565.061693pt;}
.y1bc{bottom:568.595662pt;}
.y17a{bottom:571.064014pt;}
.y13{bottom:573.061333pt;}
.ye0{bottom:575.943651pt;}
.ybb{bottom:578.184054pt;}
.ye7{bottom:579.464285pt;}
.ya0{bottom:579.784342pt;}
.y117{bottom:583.945091pt;}
.y12{bottom:590.329333pt;}
.y1a1{bottom:590.346243pt;}
.y12d{bottom:591.946531pt;}
.y50{bottom:593.866877pt;}
.y1bb{bottom:593.880213pt;}
.y82{bottom:594.186934pt;}
.y8f{bottom:595.467165pt;}
.ycd{bottom:595.787222pt;}
.y178{bottom:596.668622pt;}
.y3d{bottom:597.387510pt;}
.y101{bottom:601.548259pt;}
.y11{bottom:607.598667pt;}
.ydf{bottom:609.869757pt;}
.y68{bottom:611.149987pt;}
.yba{bottom:611.470045pt;}
.y19f{bottom:612.031387pt;}
.yac{bottom:613.710448pt;}
.y116{bottom:617.551139pt;}
.y1ba{bottom:619.164763pt;}
.y176{bottom:621.953172pt;}
.y12c{bottom:625.579251pt;}
.y4f{bottom:627.499596pt;}
.y8e{bottom:629.419942pt;}
.y9f{bottom:629.739999pt;}
.y147{bottom:630.060057pt;}
.y157{bottom:630.380115pt;}
.y100{bottom:635.501036pt;}
.y3c{bottom:637.741439pt;}
.y81{bottom:643.502476pt;}
.y1b9{bottom:644.449313pt;}
.y67{bottom:644.462649pt;}
.yb9{bottom:645.422822pt;}
.y19e{bottom:645.677442pt;}
.yda{bottom:645.742879pt;}
.y10{bottom:646.120000pt;}
.y175{bottom:647.277730pt;}
.y115{bottom:651.503916pt;}
.y12b{bottom:659.505356pt;}
.y156{bottom:660.145471pt;}
.y4e{bottom:661.425702pt;}
.y146{bottom:662.705932pt;}
.y8d{bottom:663.025990pt;}
.yff{bottom:669.107084pt;}
.y174{bottom:672.562280pt;}
.y66{bottom:677.428582pt;}
.yb8{bottom:679.028870pt;}
.y19d{bottom:679.283490pt;}
.y9e{bottom:679.348927pt;}
.y3b{bottom:680.629158pt;}
.y114{bottom:685.109964pt;}
.y12a{bottom:693.111404pt;}
.y4d{bottom:695.031750pt;}
.yf{bottom:695.269333pt;}
.y145{bottom:695.351807pt;}
.yab{bottom:696.632038pt;}
.ycc{bottom:696.952095pt;}
.y173{bottom:697.846831pt;}
.yfe{bottom:710.714572pt;}
.y65{bottom:711.034630pt;}
.ye{bottom:712.537333pt;}
.y8c{bottom:712.634918pt;}
.yb7{bottom:712.954975pt;}
.y19b{bottom:713.209595pt;}
.y113{bottom:718.716012pt;}
.y3a{bottom:721.276473pt;}
.y172{bottom:723.131381pt;}
.y129{bottom:726.717452pt;}
.y144{bottom:727.677625pt;}
.y4c{bottom:728.637798pt;}
.yd{bottom:729.806667pt;}
.yaa{bottom:730.558143pt;}
.y64{bottom:744.680685pt;}
.y8b{bottom:746.601031pt;}
.y197{bottom:746.855651pt;}
.y171{bottom:748.455939pt;}
.y112{bottom:752.682125pt;}
.y128{bottom:760.683565pt;}
.y4b{bottom:762.603911pt;}
.y39{bottom:764.204199pt;}
.yea{bottom:764.524256pt;}
.yc{bottom:768.329333pt;}
.y170{bottom:773.740489pt;}
.y2f{bottom:773.805927pt;}
.yfd{bottom:778.286733pt;}
.y63{bottom:778.606791pt;}
.ya9{bottom:780.207079pt;}
.y9d{bottom:780.527136pt;}
.yb{bottom:785.597333pt;}
.y111{bottom:786.288173pt;}
.y127{bottom:794.289613pt;}
.y4a{bottom:796.209959pt;}
.y8a{bottom:796.530016pt;}
.y16f{bottom:799.025039pt;}
.y2e{bottom:802.611111pt;}
.ya{bottom:802.865333pt;}
.y38{bottom:804.851514pt;}
.y62{bottom:812.212839pt;}
.ya8{bottom:814.133184pt;}
.y9{bottom:820.134667pt;}
.y110{bottom:820.214279pt;}
.y16d{bottom:824.309590pt;}
.y126{bottom:828.215719pt;}
.y49{bottom:830.136064pt;}
.y9c{bottom:830.456122pt;}
.y2d{bottom:832.376467pt;}
.y8{bottom:837.402667pt;}
.yfc{bottom:845.845558pt;}
.y61{bottom:846.165616pt;}
.y37{bottom:847.765904pt;}
.y195{bottom:847.993852pt;}
.y16b{bottom:849.594140pt;}
.y2c{bottom:851.286537pt;}
.y10f{bottom:853.846998pt;}
.y125{bottom:861.848438pt;}
.y48{bottom:863.768784pt;}
.ycb{bottom:864.088841pt;}
.y2b{bottom:869.849878pt;}
.y169{bottom:875.532142pt;}
.y7{bottom:875.925333pt;}
.yfb{bottom:879.451606pt;}
.y60{bottom:879.771664pt;}
.ya7{bottom:881.371952pt;}
.y193{bottom:881.933294pt;}
.y10e{bottom:887.453046pt;}
.y2a{bottom:889.373392pt;}
.y6{bottom:893.193333pt;}
.y124{bottom:895.454486pt;}
.y167{bottom:896.335886pt;}
.y36{bottom:897.374832pt;}
.yb6{bottom:897.694889pt;}
.y29{bottom:907.936733pt;}
.y5{bottom:910.462667pt;}
.y5f{bottom:913.377712pt;}
.y89{bottom:913.697769pt;}
.y191{bottom:916.179457pt;}
.y163{bottom:916.819572pt;}
.y28{bottom:927.140189pt;}
.y4{bottom:927.730667pt;}
.y10d{bottom:929.380592pt;}
.y47{bottom:931.300937pt;}
.ya6{bottom:931.620995pt;}
.y18d{bottom:933.782625pt;}
.y27{bottom:945.703529pt;}
.yfa{bottom:946.983760pt;}
.y5e{bottom:947.303817pt;}
.y35{bottom:947.623875pt;}
.y1b6{bottom:947.865159pt;}
.y10c{bottom:963.026647pt;}
.yf9{bottom:964.626935pt;}
.y46{bottom:964.946993pt;}
.y26{bottom:965.267050pt;}
.y1b4{bottom:967.748738pt;}
.y162{bottom:971.668202pt;}
.y5d{bottom:980.949873pt;}
.y34{bottom:981.269930pt;}
.y25{bottom:983.510333pt;}
.y10b{bottom:996.952753pt;}
.y3{bottom:1000.790667pt;}
.y10a{bottom:1014.555921pt;}
.y24{bottom:1014.875978pt;}
.y33{bottom:1015.196036pt;}
.y1{bottom:1018.364000pt;}
.y31{bottom:1021.472000pt;}
.y32{bottom:1022.781080pt;}
.h2{height:4.976563pt;}
.h2e{height:16.629659pt;}
.h26{height:16.949717pt;}
.h33{height:18.910070pt;}
.h1d{height:19.830235pt;}
.h1e{height:20.150293pt;}
.h20{height:25.271215pt;}
.h1f{height:25.284550pt;}
.h21{height:25.303220pt;}
.h24{height:25.311222pt;}
.h22{height:25.316556pt;}
.h23{height:25.604608pt;}
.h15{height:28.477483pt;}
.h27{height:33.592712pt;}
.h30{height:33.606048pt;}
.h2a{height:33.624718pt;}
.h2c{height:33.638054pt;}
.h2b{height:33.912770pt;}
.h28{height:33.926106pt;}
.h31{height:33.944776pt;}
.hf{height:36.756615pt;}
.h17{height:37.713423pt;}
.h19{height:37.732196pt;}
.he{height:38.721969pt;}
.h7{height:40.257245pt;}
.h4{height:42.549756pt;}
.ha{height:43.757875pt;}
.h5{height:45.179892pt;}
.h13{height:48.010218pt;}
.h16{height:48.847689pt;}
.h32{height:50.555765pt;}
.h1c{height:50.915830pt;}
.hc{height:50.997333pt;}
.h10{height:52.794501pt;}
.h3{height:58.022571pt;}
.h12{height:60.168328pt;}
.h8{height:61.421054pt;}
.h35{height:62.823806pt;}
.hd{height:65.606807pt;}
.h11{height:65.766836pt;}
.h9{height:66.762015pt;}
.h2d{height:67.558825pt;}
.h14{height:73.267579pt;}
.h1b{height:80.993243pt;}
.h1a{height:81.006579pt;}
.h25{height:84.521878pt;}
.h29{height:101.124866pt;}
.h2f{height:101.484931pt;}
.h1{height:104.302667pt;}
.h18{height:127.664492pt;}
.h34{height:658.198454pt;}
.hb{height:1077.564000pt;}
.h6{height:1114.744000pt;}
.h0{height:1122.666667pt;}
.w11{width:54.729850pt;}
.w7{width:60.157493pt;}
.wf{width:61.757781pt;}
.w15{width:62.749960pt;}
.w16{width:63.371405pt;}
.w1{width:63.393333pt;}
.wc{width:64.998364pt;}
.w10{width:66.270593pt;}
.w19{width:66.283929pt;}
.wd{width:68.839055pt;}
.we{width:69.164447pt;}
.w1a{width:77.133882pt;}
.w9{width:94.096934pt;}
.w14{width:94.448998pt;}
.w1d{width:109.166313pt;}
.w1c{width:109.179649pt;}
.w1f{width:109.478369pt;}
.w1e{width:109.491705pt;}
.w5{width:149.822962pt;}
.wb{width:182.792897pt;}
.wa{width:203.009869pt;}
.w13{width:293.252776pt;}
.w18{width:302.534446pt;}
.w1b{width:437.665432pt;}
.w8{width:479.926371pt;}
.w17{width:508.731555pt;}
.w12{width:513.852477pt;}
.w6{width:517.093060pt;}
.w3{width:773.852000pt;}
.w2{width:777.597515pt;}
.w4{width:780.936000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:4.800864pt;}
.x1a{left:7.027931pt;}
.x38{left:8.668227pt;}
.x26{left:10.548565pt;}
.x3c{left:12.162189pt;}
.x1{left:13.660000pt;}
.x31{left:15.029371pt;}
.x22{left:15.989544pt;}
.x1f{left:17.603168pt;}
.x24{left:18.910070pt;}
.x39{left:19.830235pt;}
.x1b{left:20.790408pt;}
.x36{left:21.750581pt;}
.x2a{left:23.030811pt;}
.x37{left:23.990984pt;}
.x29{left:26.551445pt;}
.x27{left:28.485126pt;}
.x28{left:30.405472pt;}
.x2e{left:32.672547pt;}
.x2b{left:38.713634pt;}
.xb{left:39.780353pt;}
.xf{left:42.313071pt;}
.x41{left:44.167949pt;}
.xe{left:45.133330pt;}
.x40{left:46.421688pt;}
.xc{left:47.537377pt;}
.x3f{left:50.582437pt;}
.x10{left:52.153779pt;}
.x2{left:53.134667pt;}
.x3{left:57.196000pt;}
.x1d{left:78.774177pt;}
.x5{left:97.187063pt;}
.x11{left:101.683872pt;}
.xa{left:106.570085pt;}
.xd{left:115.431036pt;}
.x6{left:121.226056pt;}
.x2c{left:133.401580pt;}
.x15{left:134.988533pt;}
.x32{left:135.962041pt;}
.x7{left:145.230376pt;}
.x19{left:150.364633pt;}
.x12{left:154.633162pt;}
.x3a{left:171.488435pt;}
.x1c{left:244.474903pt;}
.x8{left:276.518667pt;}
.x3b{left:281.001477pt;}
.x20{left:309.486603pt;}
.x21{left:378.325659pt;}
.x9{left:382.806465pt;}
.x4{left:386.647156pt;}
.x18{left:387.927387pt;}
.x3d{left:390.167790pt;}
.x2d{left:426.654356pt;}
.x33{left:438.496487pt;}
.x1e{left:447.498107pt;}
.x3e{left:499.667496pt;}
.x34{left:504.788418pt;}
.x23{left:509.269224pt;}
.x2f{left:521.111355pt;}
.x16{left:549.303096pt;}
.x35{left:567.559715pt;}
.x25{left:575.561155pt;}
.x30{left:583.882652pt;}
.x13{left:618.782266pt;}
.x17{left:683.433902pt;}
}




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