
    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_7543c6b4c96696acae156362.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_d10fe5b99cefce0903bfefe0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.092000;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_744aa849d20a7152b67efe92.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7014d4cf2037a4dc5b2afde1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_e1aa3bfe3484c260a6a1df85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_5ea12fa54e70c829dce9e395.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079102;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_9ee00286286f40acf727c15b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.089000;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_5e79c2aae25c58e4dd9c7058.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093000;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_138ca331e3a8aea9f042f551.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.693359;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_5a8b0fb6e74c4e0331976e74.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912598;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_04f7e7cfc5191f733ff8cc0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_a7d35e9f28072f3615cd9614.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_d8e100290b063cf97eda5b04.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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:-20.789400px;}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.820000px;}
.v3{vertical-align:20.706000px;}
.v1{vertical-align:24.750000px;}
.v4{vertical-align:32.400000px;}
.ls6{letter-spacing:-1.575000px;}
.ls8{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.510000px;}
.lsc{letter-spacing:-0.408000px;}
.ls7{letter-spacing:-0.276000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.009000px;}
.ls14{letter-spacing:0.013200px;}
.ls17{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.026400px;}
.ls18{letter-spacing:0.028200px;}
.ls19{letter-spacing:0.037200px;}
.ls15{letter-spacing:0.073800px;}
.ls9{letter-spacing:0.225000px;}
.lse{letter-spacing:0.364800px;}
.ls13{letter-spacing:0.375000px;}
.ls4{letter-spacing:0.630000px;}
.ls1{letter-spacing:0.793800px;}
.ls0{letter-spacing:0.840000px;}
.ls12{letter-spacing:0.945000px;}
.lsa{letter-spacing:3.927000px;}
.ls10{letter-spacing:5.859000px;}
.ls1a{letter-spacing:10.908000px;}
.ls5{letter-spacing:57.499200px;}
.ls11{letter-spacing:559.602000px;}
.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;}
}
.ws4e{word-spacing:-16.650000px;}
.wsb{word-spacing:-16.500000px;}
.ws25{word-spacing:-16.380000px;}
.ws18{word-spacing:-15.750000px;}
.ws1b{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.700000px;}
.ws2b{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.750000px;}
.ws1c{word-spacing:-10.500000px;}
.ws9{word-spacing:-9.135000px;}
.ws4{word-spacing:-7.395000px;}
.ws28{word-spacing:-2.835000px;}
.ws19{word-spacing:-2.583000px;}
.wsd{word-spacing:-1.764000px;}
.ws7{word-spacing:-1.134000px;}
.ws4d{word-spacing:-0.945000px;}
.ws6{word-spacing:-0.630000px;}
.ws1a{word-spacing:-0.567000px;}
.ws2d{word-spacing:-0.561000px;}
.ws1{word-spacing:-0.420000px;}
.ws56{word-spacing:-0.378000px;}
.ws29{word-spacing:-0.054000px;}
.ws50{word-spacing:-0.044100px;}
.ws2a{word-spacing:-0.037800px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.276000px;}
.ws17{word-spacing:0.408000px;}
.ws13{word-spacing:0.510000px;}
.ws2{word-spacing:0.540000px;}
.ws22{word-spacing:0.600000px;}
.ws24{word-spacing:0.630000px;}
.ws8{word-spacing:0.828000px;}
.ws26{word-spacing:0.867000px;}
.ws4c{word-spacing:0.882000px;}
.ws23{word-spacing:0.945000px;}
.ws4a{word-spacing:1.197000px;}
.ws15{word-spacing:1.275000px;}
.ws52{word-spacing:1.512000px;}
.ws16{word-spacing:1.581000px;}
.wsa{word-spacing:1.938000px;}
.wsc{word-spacing:2.520000px;}
.ws4f{word-spacing:2.709000px;}
.ws2c{word-spacing:2.898000px;}
.ws12{word-spacing:4.032000px;}
.ws10{word-spacing:4.095000px;}
.ws55{word-spacing:4.158000px;}
.ws14{word-spacing:4.488000px;}
.ws27{word-spacing:4.914000px;}
.ws11{word-spacing:5.229000px;}
.ws51{word-spacing:5.859000px;}
.wse{word-spacing:7.119000px;}
.ws54{word-spacing:7.812000px;}
.ws4b{word-spacing:8.064000px;}
.ws57{word-spacing:8.631000px;}
.ws58{word-spacing:10.908000px;}
.ws53{word-spacing:12.033000px;}
.ws48{word-spacing:193.104000px;}
.ws1d{word-spacing:228.690000px;}
.ws2f{word-spacing:313.200000px;}
.ws34{word-spacing:334.800000px;}
.ws30{word-spacing:336.474000px;}
.ws35{word-spacing:337.230000px;}
.ws32{word-spacing:363.258000px;}
.ws3e{word-spacing:379.782000px;}
.ws43{word-spacing:381.294000px;}
.ws2e{word-spacing:382.428000px;}
.ws36{word-spacing:384.264000px;}
.ws3c{word-spacing:385.830000px;}
.ws45{word-spacing:391.824000px;}
.ws3a{word-spacing:393.282000px;}
.ws33{word-spacing:394.254000px;}
.ws39{word-spacing:397.278000px;}
.ws38{word-spacing:397.764000px;}
.ws21{word-spacing:403.002000px;}
.ws44{word-spacing:403.488000px;}
.ws47{word-spacing:409.428000px;}
.ws46{word-spacing:410.994000px;}
.ws3f{word-spacing:412.236000px;}
.ws49{word-spacing:413.748000px;}
.ws40{word-spacing:414.342000px;}
.ws20{word-spacing:418.230000px;}
.ws1f{word-spacing:419.958000px;}
.ws42{word-spacing:437.940000px;}
.ws37{word-spacing:443.934000px;}
.ws3d{word-spacing:446.904000px;}
.ws1e{word-spacing:455.274000px;}
.ws3b{word-spacing:458.730000px;}
.ws41{word-spacing:460.296000px;}
.ws31{word-spacing:490.266000px;}
._42{margin-left:-15.439500px;}
._46{margin-left:-13.590600px;}
._2{margin-left:-11.163600px;}
._4{margin-left:-6.132000px;}
._0{margin-left:-4.116000px;}
._b{margin-left:-3.019800px;}
._1{margin-left:-1.932000px;}
._3{width:1.596000px;}
._9{width:3.115800px;}
._8{width:4.606200px;}
._a{width:5.778000px;}
._7{width:6.814800px;}
._c{width:8.108100px;}
._d{width:9.828000px;}
._43{width:11.144700px;}
._f{width:12.852000px;}
._45{width:13.960800px;}
._44{width:18.062100px;}
._1c{width:47.118600px;}
._10{width:57.477000px;}
._1a{width:84.728400px;}
._15{width:94.316400px;}
._21{width:120.312000px;}
._11{width:123.012000px;}
._22{width:129.708000px;}
._24{width:133.812000px;}
._26{width:147.312000px;}
._17{width:152.842200px;}
._13{width:154.323600px;}
._1b{width:156.060000px;}
._27{width:157.356000px;}
._2a{width:160.812000px;}
._2c{width:170.208000px;}
._1d{width:184.962000px;}
._12{width:186.948000px;}
._40{width:212.544000px;}
._3f{width:221.982000px;}
._1e{width:264.276000px;}
._14{width:278.648400px;}
._19{width:280.746000px;}
._2d{width:289.386000px;}
._16{width:294.246000px;}
._32{width:300.942000px;}
._34{width:309.906000px;}
._18{width:315.792000px;}
._25{width:317.898000px;}
._28{width:325.350000px;}
._20{width:326.862000px;}
._2b{width:328.374000px;}
._29{width:331.344000px;}
._30{width:336.042000px;}
._23{width:337.338000px;}
._33{width:353.700000px;}
._37{width:364.392000px;}
._31{width:381.888000px;}
._2f{width:383.400000px;}
._2e{width:399.492000px;}
._36{width:421.416000px;}
._1f{width:439.020000px;}
._41{width:440.910000px;}
._3b{width:446.742000px;}
._3c{width:454.248000px;}
._3d{width:460.242000px;}
._38{width:463.266000px;}
._3a{width:466.236000px;}
._3e{width:476.928000px;}
._39{width:478.494000px;}
._35{width:510.192000px;}
._6{width:643.380000px;}
._5{width:913.020000px;}
._e{width:1026.120000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.580000px;}
.fse{font-size:31.320000px;}
.fsb{font-size:36.540000px;}
.fsd{font-size:37.800000px;}
.fsc{font-size:42.000000px;}
.fs5{font-size:43.500000px;}
.fs10{font-size:44.100000px;}
.fsf{font-size:46.200000px;}
.fsa{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:69.000000px;}
.fs4{font-size:75.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.173200px;}
.y4a{bottom:116.172450px;}
.y145{bottom:116.199600px;}
.yb6{bottom:116.220600px;}
.y167{bottom:116.236350px;}
.y80{bottom:116.257350px;}
.y182{bottom:116.273100px;}
.y124{bottom:116.367600px;}
.y26{bottom:119.251350px;}
.y157{bottom:127.277400px;}
.ya0{bottom:131.472450px;}
.y49{bottom:135.679950px;}
.y25{bottom:135.748350px;}
.y144{bottom:137.194350px;}
.yb5{bottom:137.215350px;}
.y166{bottom:137.231100px;}
.y7f{bottom:137.252100px;}
.y181{bottom:137.267850px;}
.y6e{bottom:137.278350px;}
.y123{bottom:137.362350px;}
.y9f{bottom:146.772450px;}
.y156{bottom:149.390400px;}
.yf3{bottom:150.979950px;}
.y155{bottom:157.490400px;}
.y143{bottom:158.189100px;}
.yb4{bottom:158.210100px;}
.y165{bottom:158.225850px;}
.y7e{bottom:158.246850px;}
.y180{bottom:158.262600px;}
.y6d{bottom:158.273100px;}
.y122{bottom:158.357100px;}
.y116{bottom:160.181400px;}
.y9e{bottom:162.072450px;}
.yda{bottom:166.279950px;}
.yf2{bottom:166.324650px;}
.y24{bottom:167.243850px;}
.y159{bottom:177.372450px;}
.y142{bottom:179.183850px;}
.yb3{bottom:179.204850px;}
.y164{bottom:179.220600px;}
.y7d{bottom:179.241600px;}
.y17f{bottom:179.257350px;}
.y6c{bottom:179.267850px;}
.y48{bottom:179.336100px;}
.y121{bottom:179.351850px;}
.y9d{bottom:181.579950px;}
.yd9{bottom:181.624650px;}
.y115{bottom:182.294400px;}
.y23{bottom:183.740850px;}
.yf1{bottom:185.832150px;}
.y154{bottom:187.703400px;}
.y158{bottom:196.879950px;}
.yd8{bottom:196.924650px;}
.y141{bottom:200.178600px;}
.yb2{bottom:200.199600px;}
.y163{bottom:200.215350px;}
.y7c{bottom:200.236350px;}
.y22{bottom:200.237850px;}
.y134{bottom:200.246850px;}
.y17e{bottom:200.252100px;}
.y6b{bottom:200.262600px;}
.y47{bottom:200.330850px;}
.y120{bottom:200.346600px;}
.y114{bottom:204.407400px;}
.y153{bottom:209.816400px;}
.yd7{bottom:212.224650px;}
.y21{bottom:216.734850px;}
.y140{bottom:221.173350px;}
.yb1{bottom:221.194350px;}
.y162{bottom:221.210100px;}
.y7b{bottom:221.231100px;}
.y133{bottom:221.241600px;}
.y17d{bottom:221.246850px;}
.y6a{bottom:221.257350px;}
.y9c{bottom:221.320350px;}
.y46{bottom:221.325600px;}
.y11f{bottom:221.341350px;}
.y113{bottom:226.520400px;}
.yd6{bottom:227.524650px;}
.y152{bottom:231.929400px;}
.y20{bottom:233.231850px;}
.yb0{bottom:242.189100px;}
.y161{bottom:242.204850px;}
.y7a{bottom:242.225850px;}
.y132{bottom:242.236350px;}
.y17c{bottom:242.241600px;}
.y69{bottom:242.252100px;}
.y9b{bottom:242.315100px;}
.y45{bottom:242.320350px;}
.y11e{bottom:242.336100px;}
.yd5{bottom:242.824650px;}
.y112{bottom:248.633400px;}
.y1f{bottom:249.728850px;}
.y151{bottom:254.042400px;}
.yd4{bottom:258.124650px;}
.y13f{bottom:259.607400px;}
.yaf{bottom:263.183850px;}
.y160{bottom:263.199600px;}
.y79{bottom:263.220600px;}
.y131{bottom:263.231100px;}
.y17b{bottom:263.236350px;}
.y68{bottom:263.246850px;}
.y9a{bottom:263.309850px;}
.y44{bottom:263.315100px;}
.y11d{bottom:263.330850px;}
.y1e{bottom:266.225850px;}
.y111{bottom:270.746400px;}
.yd3{bottom:273.424650px;}
.y150{bottom:276.155400px;}
.y13e{bottom:281.720400px;}
.y1d{bottom:282.722850px;}
.yae{bottom:284.178600px;}
.y15f{bottom:284.194350px;}
.y78{bottom:284.215350px;}
.y130{bottom:284.225850px;}
.y17a{bottom:284.231100px;}
.y67{bottom:284.241600px;}
.y99{bottom:284.304600px;}
.y43{bottom:284.309850px;}
.y11c{bottom:284.325600px;}
.yd2{bottom:288.724650px;}
.y110{bottom:292.859400px;}
.y14f{bottom:298.268400px;}
.y1c{bottom:299.219850px;}
.y13d{bottom:303.833400px;}
.yd1{bottom:304.024650px;}
.yad{bottom:305.173350px;}
.y15e{bottom:305.189100px;}
.y77{bottom:305.210100px;}
.y12f{bottom:305.220600px;}
.y179{bottom:305.225850px;}
.y66{bottom:305.236350px;}
.y98{bottom:305.299350px;}
.y42{bottom:305.304600px;}
.y11b{bottom:305.320350px;}
.y10f{bottom:314.972400px;}
.y1b{bottom:315.716850px;}
.y14e{bottom:320.381400px;}
.yd0{bottom:323.532000px;}
.y13c{bottom:325.946400px;}
.y15d{bottom:326.183850px;}
.y76{bottom:326.204850px;}
.y12e{bottom:326.215350px;}
.y178{bottom:326.220600px;}
.y65{bottom:326.231100px;}
.yf0{bottom:326.236350px;}
.y97{bottom:326.294100px;}
.y41{bottom:326.299350px;}
.y11a{bottom:326.315100px;}
.y10e{bottom:331.172400px;}
.y1a{bottom:332.213850px;}
.y14d{bottom:342.494400px;}
.yac{bottom:345.673350px;}
.y15c{bottom:347.178600px;}
.y75{bottom:347.199600px;}
.y12d{bottom:347.210100px;}
.y177{bottom:347.215350px;}
.y64{bottom:347.225850px;}
.yef{bottom:347.231100px;}
.y96{bottom:347.288850px;}
.y40{bottom:347.294100px;}
.y119{bottom:347.309850px;}
.y13b{bottom:348.059400px;}
.y19{bottom:348.710850px;}
.y10d{bottom:353.173200px;}
.y1a2{bottom:354.754350px;}
.y14c{bottom:364.607400px;}
.y18{bottom:365.207850px;}
.y15b{bottom:368.173350px;}
.y74{bottom:368.194350px;}
.y12c{bottom:368.204850px;}
.y176{bottom:368.210100px;}
.y63{bottom:368.220600px;}
.yee{bottom:368.225850px;}
.y95{bottom:368.283600px;}
.y3f{bottom:368.288850px;}
.ycf{bottom:368.299350px;}
.y118{bottom:368.304600px;}
.y13a{bottom:370.172400px;}
.y10c{bottom:371.173200px;}
.y1a1{bottom:371.251350px;}
.y17{bottom:381.704850px;}
.y14b{bottom:386.720400px;}
.y73{bottom:389.189100px;}
.y12b{bottom:389.199600px;}
.y175{bottom:389.204850px;}
.y62{bottom:389.215350px;}
.yed{bottom:389.220600px;}
.y94{bottom:389.278350px;}
.y3e{bottom:389.283600px;}
.yce{bottom:389.294100px;}
.y117{bottom:389.299350px;}
.y139{bottom:392.173350px;}
.y16{bottom:398.201850px;}
.y1a0{bottom:402.746850px;}
.y15a{bottom:408.673350px;}
.y14a{bottom:408.833400px;}
.y72{bottom:410.183850px;}
.y12a{bottom:410.194350px;}
.y174{bottom:410.199600px;}
.y61{bottom:410.210100px;}
.yec{bottom:410.215350px;}
.y10b{bottom:410.230950px;}
.y93{bottom:410.273100px;}
.y3d{bottom:410.278350px;}
.ycd{bottom:410.288850px;}
.yab{bottom:410.294100px;}
.y15{bottom:414.698850px;}
.y19f{bottom:419.243850px;}
.y149{bottom:430.946400px;}
.y71{bottom:431.178600px;}
.y129{bottom:431.189100px;}
.y173{bottom:431.194350px;}
.y14{bottom:431.195850px;}
.y60{bottom:431.204850px;}
.yeb{bottom:431.210100px;}
.y10a{bottom:431.225700px;}
.y92{bottom:431.267850px;}
.y3c{bottom:431.273100px;}
.ycc{bottom:431.283600px;}
.yaa{bottom:431.288850px;}
.y19e{bottom:435.740850px;}
.y13{bottom:447.692850px;}
.y70{bottom:452.173350px;}
.y128{bottom:452.183850px;}
.y172{bottom:452.189100px;}
.y5f{bottom:452.199600px;}
.yea{bottom:452.204850px;}
.y109{bottom:452.220450px;}
.y19d{bottom:452.237850px;}
.y91{bottom:452.262600px;}
.y3b{bottom:452.267850px;}
.ycb{bottom:452.278350px;}
.ya9{bottom:452.283600px;}
.y148{bottom:453.059400px;}
.y12{bottom:464.189850px;}
.y19c{bottom:468.734850px;}
.y127{bottom:473.178600px;}
.y171{bottom:473.183850px;}
.y5e{bottom:473.194350px;}
.ye9{bottom:473.199600px;}
.y108{bottom:473.215200px;}
.y90{bottom:473.257350px;}
.y3a{bottom:473.262600px;}
.yca{bottom:473.273100px;}
.ya8{bottom:473.278350px;}
.y147{bottom:475.172400px;}
.y11{bottom:480.686850px;}
.y6f{bottom:483.973350px;}
.y19b{bottom:485.231850px;}
.y170{bottom:494.178600px;}
.y184{bottom:494.183850px;}
.y5d{bottom:494.189100px;}
.ye8{bottom:494.194350px;}
.y107{bottom:494.209950px;}
.y8f{bottom:494.252100px;}
.y39{bottom:494.257350px;}
.yc9{bottom:494.267850px;}
.ya7{bottom:494.273100px;}
.y146{bottom:497.173350px;}
.y10{bottom:497.183850px;}
.y126{bottom:499.370700px;}
.y19a{bottom:501.728850px;}
.yf{bottom:513.680850px;}
.y183{bottom:515.178600px;}
.y5c{bottom:515.183850px;}
.ye7{bottom:515.189100px;}
.y106{bottom:515.204700px;}
.y8e{bottom:515.246850px;}
.y38{bottom:515.252100px;}
.yc8{bottom:515.262600px;}
.ya6{bottom:515.267850px;}
.y199{bottom:518.225850px;}
.y138{bottom:528.297450px;}
.ye{bottom:530.177850px;}
.y198{bottom:534.722850px;}
.y5b{bottom:536.178600px;}
.ye6{bottom:536.183850px;}
.y105{bottom:536.199450px;}
.y8d{bottom:536.241600px;}
.y37{bottom:536.246850px;}
.yc7{bottom:536.257350px;}
.ya5{bottom:536.262600px;}
.y137{bottom:544.497450px;}
.y197{bottom:551.219850px;}
.y5a{bottom:557.173350px;}
.ye5{bottom:557.178600px;}
.y104{bottom:557.194200px;}
.y16f{bottom:557.194350px;}
.y8c{bottom:557.236350px;}
.y36{bottom:557.241600px;}
.yc6{bottom:557.252100px;}
.ya4{bottom:557.257350px;}
.y136{bottom:560.697450px;}
.yd{bottom:561.673350px;}
.y196{bottom:567.716850px;}
.ye4{bottom:578.173350px;}
.y103{bottom:578.188950px;}
.y16e{bottom:578.189100px;}
.y8b{bottom:578.231100px;}
.y35{bottom:578.236350px;}
.yc5{bottom:578.246850px;}
.ya3{bottom:578.252100px;}
.y135{bottom:580.497450px;}
.y195{bottom:584.213850px;}
.y125{bottom:586.771650px;}
.y59{bottom:588.973350px;}
.y102{bottom:599.183700px;}
.y16d{bottom:599.183850px;}
.y8a{bottom:599.225850px;}
.y34{bottom:599.231100px;}
.yc4{bottom:599.241600px;}
.ya2{bottom:599.246850px;}
.y194{bottom:600.710850px;}
.y193{bottom:617.207850px;}
.ye3{bottom:618.673350px;}
.y101{bottom:620.178450px;}
.y16c{bottom:620.178600px;}
.y89{bottom:620.220600px;}
.y33{bottom:620.225850px;}
.yc3{bottom:620.236350px;}
.ya1{bottom:620.241600px;}
.yc{bottom:624.373350px;}
.y192{bottom:633.704850px;}
.y100{bottom:641.173200px;}
.y88{bottom:641.215350px;}
.y32{bottom:641.220600px;}
.y16b{bottom:641.225850px;}
.yc2{bottom:641.231100px;}
.y58{bottom:641.236350px;}
.yb{bottom:644.173350px;}
.y191{bottom:650.201850px;}
.ya{bottom:662.173350px;}
.y87{bottom:662.210100px;}
.y31{bottom:662.215350px;}
.y16a{bottom:662.220600px;}
.yc1{bottom:662.225850px;}
.y57{bottom:662.231100px;}
.y190{bottom:666.698850px;}
.y9{bottom:680.173350px;}
.yff{bottom:680.411250px;}
.y18f{bottom:683.195850px;}
.y86{bottom:683.204850px;}
.y30{bottom:683.210100px;}
.ye2{bottom:683.215350px;}
.yc0{bottom:683.220600px;}
.y56{bottom:683.225850px;}
.yfe{bottom:688.514550px;}
.y18e{bottom:699.692850px;}
.y85{bottom:704.199600px;}
.y2f{bottom:704.204850px;}
.ye1{bottom:704.210100px;}
.ybf{bottom:704.215350px;}
.y55{bottom:704.220600px;}
.y8{bottom:716.173350px;}
.y18d{bottom:716.189850px;}
.yfd{bottom:718.727550px;}
.y84{bottom:725.194350px;}
.y2e{bottom:725.199600px;}
.ye0{bottom:725.204850px;}
.ybe{bottom:725.210100px;}
.y54{bottom:725.215350px;}
.yfc{bottom:726.830700px;}
.y18c{bottom:732.686850px;}
.y7{bottom:734.173350px;}
.y83{bottom:746.189100px;}
.y2d{bottom:746.194350px;}
.ydf{bottom:746.199600px;}
.ybd{bottom:746.204850px;}
.y53{bottom:746.210100px;}
.y18b{bottom:749.183850px;}
.y6{bottom:752.173350px;}
.yfb{bottom:757.043700px;}
.yfa{bottom:765.147000px;}
.y18a{bottom:765.680850px;}
.y82{bottom:767.183850px;}
.y2c{bottom:767.189100px;}
.yde{bottom:767.194350px;}
.ybc{bottom:767.199600px;}
.y52{bottom:767.204850px;}
.y5{bottom:770.173350px;}
.y189{bottom:782.177850px;}
.y81{bottom:788.178600px;}
.y2b{bottom:788.183850px;}
.ydd{bottom:788.189100px;}
.ybb{bottom:788.194350px;}
.y51{bottom:788.199600px;}
.yf9{bottom:795.360000px;}
.yf8{bottom:803.463300px;}
.y2a{bottom:809.178600px;}
.ydc{bottom:809.183850px;}
.yba{bottom:809.189100px;}
.y50{bottom:809.194350px;}
.y188{bottom:813.673350px;}
.y29{bottom:830.173350px;}
.ydb{bottom:830.178600px;}
.yb9{bottom:830.183850px;}
.y4f{bottom:830.189100px;}
.yf7{bottom:833.679600px;}
.y4{bottom:838.726950px;}
.y187{bottom:849.732750px;}
.y169{bottom:851.173350px;}
.yb8{bottom:851.178600px;}
.y4e{bottom:851.183850px;}
.yf6{bottom:855.792600px;}
.y3{bottom:863.926950px;}
.y28{bottom:864.842250px;}
.y186{bottom:870.432750px;}
.yf5{bottom:871.992600px;}
.yb7{bottom:872.173350px;}
.y4d{bottom:872.178600px;}
.y2{bottom:889.126950px;}
.y27{bottom:890.042250px;}
.y185{bottom:891.132750px;}
.y168{bottom:893.171700px;}
.y4c{bottom:893.173350px;}
.yf4{bottom:893.993250px;}
.y4b{bottom:961.422600px;}
.hc{height:27.919512px;}
.hf{height:27.920112px;}
.h17{height:34.489409px;}
.he{height:40.128000px;}
.h18{height:44.730469px;}
.hd{height:44.749512px;}
.h8{height:46.617188px;}
.h7{height:47.381836px;}
.h6{height:48.120117px;}
.h16{height:51.796875px;}
.h5{height:52.646484px;}
.h4{height:53.466797px;}
.h1a{height:54.386719px;}
.h15{height:54.921809px;}
.h19{height:55.068809px;}
.h1b{height:55.194809px;}
.h1c{height:55.236809px;}
.hb{height:55.278809px;}
.h2{height:57.911133px;}
.ha{height:58.305000px;}
.h9{height:63.600000px;}
.h13{height:69.907908px;}
.h3{height:71.232000px;}
.h11{height:79.768636px;}
.h12{height:79.781836px;}
.h14{height:80.520117px;}
.h10{height:112.920117px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:93.543300px;}
.x10{left:98.717400px;}
.x1f{left:103.990500px;}
.x7{left:106.299150px;}
.x13{left:112.859550px;}
.x8{left:114.803100px;}
.xe{left:117.760350px;}
.xc{left:119.266350px;}
.x4{left:121.737150px;}
.x9{left:124.882350px;}
.x1a{left:128.054400px;}
.x1d{left:129.289500px;}
.x3{left:132.384150px;}
.xa{left:133.522350px;}
.x6{left:136.068300px;}
.x1c{left:144.112500px;}
.x19{left:146.373900px;}
.x14{left:148.459050px;}
.x16{left:153.008550px;}
.x17{left:154.898550px;}
.x15{left:158.611050px;}
.x2{left:162.561150px;}
.x18{left:180.866400px;}
.x11{left:231.537000px;}
.x12{left:242.992650px;}
.x1b{left:263.776500px;}
.xf{left:274.851900px;}
.xd{left:309.703350px;}
.x1{left:349.042350px;}
.xb{left:522.983850px;}
.x1e{left:547.222500px;}
@media print{
.v5{vertical-align:-18.479467pt;}
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.840000pt;}
.v3{vertical-align:18.405333pt;}
.v1{vertical-align:22.000000pt;}
.v4{vertical-align:28.800000pt;}
.ls6{letter-spacing:-1.400000pt;}
.ls8{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.453333pt;}
.lsc{letter-spacing:-0.362667pt;}
.ls7{letter-spacing:-0.245333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.008000pt;}
.ls14{letter-spacing:0.011733pt;}
.ls17{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.023467pt;}
.ls18{letter-spacing:0.025067pt;}
.ls19{letter-spacing:0.033067pt;}
.ls15{letter-spacing:0.065600pt;}
.ls9{letter-spacing:0.200000pt;}
.lse{letter-spacing:0.324267pt;}
.ls13{letter-spacing:0.333333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls1{letter-spacing:0.705600pt;}
.ls0{letter-spacing:0.746667pt;}
.ls12{letter-spacing:0.840000pt;}
.lsa{letter-spacing:3.490667pt;}
.ls10{letter-spacing:5.208000pt;}
.ls1a{letter-spacing:9.696000pt;}
.ls5{letter-spacing:51.110400pt;}
.ls11{letter-spacing:497.424000pt;}
.ws4e{word-spacing:-14.800000pt;}
.wsb{word-spacing:-14.666667pt;}
.ws25{word-spacing:-14.560000pt;}
.ws18{word-spacing:-14.000000pt;}
.ws1b{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.066667pt;}
.ws2b{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.333333pt;}
.ws1c{word-spacing:-9.333333pt;}
.ws9{word-spacing:-8.120000pt;}
.ws4{word-spacing:-6.573333pt;}
.ws28{word-spacing:-2.520000pt;}
.ws19{word-spacing:-2.296000pt;}
.wsd{word-spacing:-1.568000pt;}
.ws7{word-spacing:-1.008000pt;}
.ws4d{word-spacing:-0.840000pt;}
.ws6{word-spacing:-0.560000pt;}
.ws1a{word-spacing:-0.504000pt;}
.ws2d{word-spacing:-0.498667pt;}
.ws1{word-spacing:-0.373333pt;}
.ws56{word-spacing:-0.336000pt;}
.ws29{word-spacing:-0.048000pt;}
.ws50{word-spacing:-0.039200pt;}
.ws2a{word-spacing:-0.033600pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.245333pt;}
.ws17{word-spacing:0.362667pt;}
.ws13{word-spacing:0.453333pt;}
.ws2{word-spacing:0.480000pt;}
.ws22{word-spacing:0.533333pt;}
.ws24{word-spacing:0.560000pt;}
.ws8{word-spacing:0.736000pt;}
.ws26{word-spacing:0.770667pt;}
.ws4c{word-spacing:0.784000pt;}
.ws23{word-spacing:0.840000pt;}
.ws4a{word-spacing:1.064000pt;}
.ws15{word-spacing:1.133333pt;}
.ws52{word-spacing:1.344000pt;}
.ws16{word-spacing:1.405333pt;}
.wsa{word-spacing:1.722667pt;}
.wsc{word-spacing:2.240000pt;}
.ws4f{word-spacing:2.408000pt;}
.ws2c{word-spacing:2.576000pt;}
.ws12{word-spacing:3.584000pt;}
.ws10{word-spacing:3.640000pt;}
.ws55{word-spacing:3.696000pt;}
.ws14{word-spacing:3.989333pt;}
.ws27{word-spacing:4.368000pt;}
.ws11{word-spacing:4.648000pt;}
.ws51{word-spacing:5.208000pt;}
.wse{word-spacing:6.328000pt;}
.ws54{word-spacing:6.944000pt;}
.ws4b{word-spacing:7.168000pt;}
.ws57{word-spacing:7.672000pt;}
.ws58{word-spacing:9.696000pt;}
.ws53{word-spacing:10.696000pt;}
.ws48{word-spacing:171.648000pt;}
.ws1d{word-spacing:203.280000pt;}
.ws2f{word-spacing:278.400000pt;}
.ws34{word-spacing:297.600000pt;}
.ws30{word-spacing:299.088000pt;}
.ws35{word-spacing:299.760000pt;}
.ws32{word-spacing:322.896000pt;}
.ws3e{word-spacing:337.584000pt;}
.ws43{word-spacing:338.928000pt;}
.ws2e{word-spacing:339.936000pt;}
.ws36{word-spacing:341.568000pt;}
.ws3c{word-spacing:342.960000pt;}
.ws45{word-spacing:348.288000pt;}
.ws3a{word-spacing:349.584000pt;}
.ws33{word-spacing:350.448000pt;}
.ws39{word-spacing:353.136000pt;}
.ws38{word-spacing:353.568000pt;}
.ws21{word-spacing:358.224000pt;}
.ws44{word-spacing:358.656000pt;}
.ws47{word-spacing:363.936000pt;}
.ws46{word-spacing:365.328000pt;}
.ws3f{word-spacing:366.432000pt;}
.ws49{word-spacing:367.776000pt;}
.ws40{word-spacing:368.304000pt;}
.ws20{word-spacing:371.760000pt;}
.ws1f{word-spacing:373.296000pt;}
.ws42{word-spacing:389.280000pt;}
.ws37{word-spacing:394.608000pt;}
.ws3d{word-spacing:397.248000pt;}
.ws1e{word-spacing:404.688000pt;}
.ws3b{word-spacing:407.760000pt;}
.ws41{word-spacing:409.152000pt;}
.ws31{word-spacing:435.792000pt;}
._42{margin-left:-13.724000pt;}
._46{margin-left:-12.080533pt;}
._2{margin-left:-9.923200pt;}
._4{margin-left:-5.450667pt;}
._0{margin-left:-3.658667pt;}
._b{margin-left:-2.684267pt;}
._1{margin-left:-1.717333pt;}
._3{width:1.418667pt;}
._9{width:2.769600pt;}
._8{width:4.094400pt;}
._a{width:5.136000pt;}
._7{width:6.057600pt;}
._c{width:7.207200pt;}
._d{width:8.736000pt;}
._43{width:9.906400pt;}
._f{width:11.424000pt;}
._45{width:12.409600pt;}
._44{width:16.055200pt;}
._1c{width:41.883200pt;}
._10{width:51.090667pt;}
._1a{width:75.314133pt;}
._15{width:83.836800pt;}
._21{width:106.944000pt;}
._11{width:109.344000pt;}
._22{width:115.296000pt;}
._24{width:118.944000pt;}
._26{width:130.944000pt;}
._17{width:135.859733pt;}
._13{width:137.176533pt;}
._1b{width:138.720000pt;}
._27{width:139.872000pt;}
._2a{width:142.944000pt;}
._2c{width:151.296000pt;}
._1d{width:164.410667pt;}
._12{width:166.176000pt;}
._40{width:188.928000pt;}
._3f{width:197.317333pt;}
._1e{width:234.912000pt;}
._14{width:247.687467pt;}
._19{width:249.552000pt;}
._2d{width:257.232000pt;}
._16{width:261.552000pt;}
._32{width:267.504000pt;}
._34{width:275.472000pt;}
._18{width:280.704000pt;}
._25{width:282.576000pt;}
._28{width:289.200000pt;}
._20{width:290.544000pt;}
._2b{width:291.888000pt;}
._29{width:294.528000pt;}
._30{width:298.704000pt;}
._23{width:299.856000pt;}
._33{width:314.400000pt;}
._37{width:323.904000pt;}
._31{width:339.456000pt;}
._2f{width:340.800000pt;}
._2e{width:355.104000pt;}
._36{width:374.592000pt;}
._1f{width:390.240000pt;}
._41{width:391.920000pt;}
._3b{width:397.104000pt;}
._3c{width:403.776000pt;}
._3d{width:409.104000pt;}
._38{width:411.792000pt;}
._3a{width:414.432000pt;}
._3e{width:423.936000pt;}
._39{width:425.328000pt;}
._35{width:453.504000pt;}
._6{width:571.893333pt;}
._5{width:811.573333pt;}
._e{width:912.106667pt;}
.fs8{font-size:26.293333pt;}
.fse{font-size:27.840000pt;}
.fsb{font-size:32.480000pt;}
.fsd{font-size:33.600000pt;}
.fsc{font-size:37.333333pt;}
.fs5{font-size:38.666667pt;}
.fs10{font-size:39.200000pt;}
.fsf{font-size:41.066667pt;}
.fsa{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:61.333333pt;}
.fs4{font-size:66.666667pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.265067pt;}
.y4a{bottom:103.264400pt;}
.y145{bottom:103.288533pt;}
.yb6{bottom:103.307200pt;}
.y167{bottom:103.321200pt;}
.y80{bottom:103.339867pt;}
.y182{bottom:103.353867pt;}
.y124{bottom:103.437867pt;}
.y26{bottom:106.001200pt;}
.y157{bottom:113.135467pt;}
.ya0{bottom:116.864400pt;}
.y49{bottom:120.604400pt;}
.y25{bottom:120.665200pt;}
.y144{bottom:121.950533pt;}
.yb5{bottom:121.969200pt;}
.y166{bottom:121.983200pt;}
.y7f{bottom:122.001867pt;}
.y181{bottom:122.015867pt;}
.y6e{bottom:122.025200pt;}
.y123{bottom:122.099867pt;}
.y9f{bottom:130.464400pt;}
.y156{bottom:132.791467pt;}
.yf3{bottom:134.204400pt;}
.y155{bottom:139.991467pt;}
.y143{bottom:140.612533pt;}
.yb4{bottom:140.631200pt;}
.y165{bottom:140.645200pt;}
.y7e{bottom:140.663867pt;}
.y180{bottom:140.677867pt;}
.y6d{bottom:140.687200pt;}
.y122{bottom:140.761867pt;}
.y116{bottom:142.383467pt;}
.y9e{bottom:144.064400pt;}
.yda{bottom:147.804400pt;}
.yf2{bottom:147.844133pt;}
.y24{bottom:148.661200pt;}
.y159{bottom:157.664400pt;}
.y142{bottom:159.274533pt;}
.yb3{bottom:159.293200pt;}
.y164{bottom:159.307200pt;}
.y7d{bottom:159.325867pt;}
.y17f{bottom:159.339867pt;}
.y6c{bottom:159.349200pt;}
.y48{bottom:159.409867pt;}
.y121{bottom:159.423867pt;}
.y9d{bottom:161.404400pt;}
.yd9{bottom:161.444133pt;}
.y115{bottom:162.039467pt;}
.y23{bottom:163.325200pt;}
.yf1{bottom:165.184133pt;}
.y154{bottom:166.847467pt;}
.y158{bottom:175.004400pt;}
.yd8{bottom:175.044133pt;}
.y141{bottom:177.936533pt;}
.yb2{bottom:177.955200pt;}
.y163{bottom:177.969200pt;}
.y7c{bottom:177.987867pt;}
.y22{bottom:177.989200pt;}
.y134{bottom:177.997200pt;}
.y17e{bottom:178.001867pt;}
.y6b{bottom:178.011200pt;}
.y47{bottom:178.071867pt;}
.y120{bottom:178.085867pt;}
.y114{bottom:181.695467pt;}
.y153{bottom:186.503467pt;}
.yd7{bottom:188.644133pt;}
.y21{bottom:192.653200pt;}
.y140{bottom:196.598533pt;}
.yb1{bottom:196.617200pt;}
.y162{bottom:196.631200pt;}
.y7b{bottom:196.649867pt;}
.y133{bottom:196.659200pt;}
.y17d{bottom:196.663867pt;}
.y6a{bottom:196.673200pt;}
.y9c{bottom:196.729200pt;}
.y46{bottom:196.733867pt;}
.y11f{bottom:196.747867pt;}
.y113{bottom:201.351467pt;}
.yd6{bottom:202.244133pt;}
.y152{bottom:206.159467pt;}
.y20{bottom:207.317200pt;}
.yb0{bottom:215.279200pt;}
.y161{bottom:215.293200pt;}
.y7a{bottom:215.311867pt;}
.y132{bottom:215.321200pt;}
.y17c{bottom:215.325867pt;}
.y69{bottom:215.335200pt;}
.y9b{bottom:215.391200pt;}
.y45{bottom:215.395867pt;}
.y11e{bottom:215.409867pt;}
.yd5{bottom:215.844133pt;}
.y112{bottom:221.007467pt;}
.y1f{bottom:221.981200pt;}
.y151{bottom:225.815467pt;}
.yd4{bottom:229.444133pt;}
.y13f{bottom:230.762133pt;}
.yaf{bottom:233.941200pt;}
.y160{bottom:233.955200pt;}
.y79{bottom:233.973867pt;}
.y131{bottom:233.983200pt;}
.y17b{bottom:233.987867pt;}
.y68{bottom:233.997200pt;}
.y9a{bottom:234.053200pt;}
.y44{bottom:234.057867pt;}
.y11d{bottom:234.071867pt;}
.y1e{bottom:236.645200pt;}
.y111{bottom:240.663467pt;}
.yd3{bottom:243.044133pt;}
.y150{bottom:245.471467pt;}
.y13e{bottom:250.418133pt;}
.y1d{bottom:251.309200pt;}
.yae{bottom:252.603200pt;}
.y15f{bottom:252.617200pt;}
.y78{bottom:252.635867pt;}
.y130{bottom:252.645200pt;}
.y17a{bottom:252.649867pt;}
.y67{bottom:252.659200pt;}
.y99{bottom:252.715200pt;}
.y43{bottom:252.719867pt;}
.y11c{bottom:252.733867pt;}
.yd2{bottom:256.644133pt;}
.y110{bottom:260.319467pt;}
.y14f{bottom:265.127467pt;}
.y1c{bottom:265.973200pt;}
.y13d{bottom:270.074133pt;}
.yd1{bottom:270.244133pt;}
.yad{bottom:271.265200pt;}
.y15e{bottom:271.279200pt;}
.y77{bottom:271.297867pt;}
.y12f{bottom:271.307200pt;}
.y179{bottom:271.311867pt;}
.y66{bottom:271.321200pt;}
.y98{bottom:271.377200pt;}
.y42{bottom:271.381867pt;}
.y11b{bottom:271.395867pt;}
.y10f{bottom:279.975467pt;}
.y1b{bottom:280.637200pt;}
.y14e{bottom:284.783467pt;}
.yd0{bottom:287.584000pt;}
.y13c{bottom:289.730133pt;}
.y15d{bottom:289.941200pt;}
.y76{bottom:289.959867pt;}
.y12e{bottom:289.969200pt;}
.y178{bottom:289.973867pt;}
.y65{bottom:289.983200pt;}
.yf0{bottom:289.987867pt;}
.y97{bottom:290.039200pt;}
.y41{bottom:290.043867pt;}
.y11a{bottom:290.057867pt;}
.y10e{bottom:294.375467pt;}
.y1a{bottom:295.301200pt;}
.y14d{bottom:304.439467pt;}
.yac{bottom:307.265200pt;}
.y15c{bottom:308.603200pt;}
.y75{bottom:308.621867pt;}
.y12d{bottom:308.631200pt;}
.y177{bottom:308.635867pt;}
.y64{bottom:308.645200pt;}
.yef{bottom:308.649867pt;}
.y96{bottom:308.701200pt;}
.y40{bottom:308.705867pt;}
.y119{bottom:308.719867pt;}
.y13b{bottom:309.386133pt;}
.y19{bottom:309.965200pt;}
.y10d{bottom:313.931733pt;}
.y1a2{bottom:315.337200pt;}
.y14c{bottom:324.095467pt;}
.y18{bottom:324.629200pt;}
.y15b{bottom:327.265200pt;}
.y74{bottom:327.283867pt;}
.y12c{bottom:327.293200pt;}
.y176{bottom:327.297867pt;}
.y63{bottom:327.307200pt;}
.yee{bottom:327.311867pt;}
.y95{bottom:327.363200pt;}
.y3f{bottom:327.367867pt;}
.ycf{bottom:327.377200pt;}
.y118{bottom:327.381867pt;}
.y13a{bottom:329.042133pt;}
.y10c{bottom:329.931733pt;}
.y1a1{bottom:330.001200pt;}
.y17{bottom:339.293200pt;}
.y14b{bottom:343.751467pt;}
.y73{bottom:345.945867pt;}
.y12b{bottom:345.955200pt;}
.y175{bottom:345.959867pt;}
.y62{bottom:345.969200pt;}
.yed{bottom:345.973867pt;}
.y94{bottom:346.025200pt;}
.y3e{bottom:346.029867pt;}
.yce{bottom:346.039200pt;}
.y117{bottom:346.043867pt;}
.y139{bottom:348.598533pt;}
.y16{bottom:353.957200pt;}
.y1a0{bottom:357.997200pt;}
.y15a{bottom:363.265200pt;}
.y14a{bottom:363.407467pt;}
.y72{bottom:364.607867pt;}
.y12a{bottom:364.617200pt;}
.y174{bottom:364.621867pt;}
.y61{bottom:364.631200pt;}
.yec{bottom:364.635867pt;}
.y10b{bottom:364.649733pt;}
.y93{bottom:364.687200pt;}
.y3d{bottom:364.691867pt;}
.ycd{bottom:364.701200pt;}
.yab{bottom:364.705867pt;}
.y15{bottom:368.621200pt;}
.y19f{bottom:372.661200pt;}
.y149{bottom:383.063467pt;}
.y71{bottom:383.269867pt;}
.y129{bottom:383.279200pt;}
.y173{bottom:383.283867pt;}
.y14{bottom:383.285200pt;}
.y60{bottom:383.293200pt;}
.yeb{bottom:383.297867pt;}
.y10a{bottom:383.311733pt;}
.y92{bottom:383.349200pt;}
.y3c{bottom:383.353867pt;}
.ycc{bottom:383.363200pt;}
.yaa{bottom:383.367867pt;}
.y19e{bottom:387.325200pt;}
.y13{bottom:397.949200pt;}
.y70{bottom:401.931867pt;}
.y128{bottom:401.941200pt;}
.y172{bottom:401.945867pt;}
.y5f{bottom:401.955200pt;}
.yea{bottom:401.959867pt;}
.y109{bottom:401.973733pt;}
.y19d{bottom:401.989200pt;}
.y91{bottom:402.011200pt;}
.y3b{bottom:402.015867pt;}
.ycb{bottom:402.025200pt;}
.ya9{bottom:402.029867pt;}
.y148{bottom:402.719467pt;}
.y12{bottom:412.613200pt;}
.y19c{bottom:416.653200pt;}
.y127{bottom:420.603200pt;}
.y171{bottom:420.607867pt;}
.y5e{bottom:420.617200pt;}
.ye9{bottom:420.621867pt;}
.y108{bottom:420.635733pt;}
.y90{bottom:420.673200pt;}
.y3a{bottom:420.677867pt;}
.yca{bottom:420.687200pt;}
.ya8{bottom:420.691867pt;}
.y147{bottom:422.375467pt;}
.y11{bottom:427.277200pt;}
.y6f{bottom:430.198533pt;}
.y19b{bottom:431.317200pt;}
.y170{bottom:439.269867pt;}
.y184{bottom:439.274533pt;}
.y5d{bottom:439.279200pt;}
.ye8{bottom:439.283867pt;}
.y107{bottom:439.297733pt;}
.y8f{bottom:439.335200pt;}
.y39{bottom:439.339867pt;}
.yc9{bottom:439.349200pt;}
.ya7{bottom:439.353867pt;}
.y146{bottom:441.931867pt;}
.y10{bottom:441.941200pt;}
.y126{bottom:443.885067pt;}
.y19a{bottom:445.981200pt;}
.yf{bottom:456.605200pt;}
.y183{bottom:457.936533pt;}
.y5c{bottom:457.941200pt;}
.ye7{bottom:457.945867pt;}
.y106{bottom:457.959733pt;}
.y8e{bottom:457.997200pt;}
.y38{bottom:458.001867pt;}
.yc8{bottom:458.011200pt;}
.ya6{bottom:458.015867pt;}
.y199{bottom:460.645200pt;}
.y138{bottom:469.597733pt;}
.ye{bottom:471.269200pt;}
.y198{bottom:475.309200pt;}
.y5b{bottom:476.603200pt;}
.ye6{bottom:476.607867pt;}
.y105{bottom:476.621733pt;}
.y8d{bottom:476.659200pt;}
.y37{bottom:476.663867pt;}
.yc7{bottom:476.673200pt;}
.ya5{bottom:476.677867pt;}
.y137{bottom:483.997733pt;}
.y197{bottom:489.973200pt;}
.y5a{bottom:495.265200pt;}
.ye5{bottom:495.269867pt;}
.y104{bottom:495.283733pt;}
.y16f{bottom:495.283867pt;}
.y8c{bottom:495.321200pt;}
.y36{bottom:495.325867pt;}
.yc6{bottom:495.335200pt;}
.ya4{bottom:495.339867pt;}
.y136{bottom:498.397733pt;}
.yd{bottom:499.265200pt;}
.y196{bottom:504.637200pt;}
.ye4{bottom:513.931867pt;}
.y103{bottom:513.945733pt;}
.y16e{bottom:513.945867pt;}
.y8b{bottom:513.983200pt;}
.y35{bottom:513.987867pt;}
.yc5{bottom:513.997200pt;}
.ya3{bottom:514.001867pt;}
.y135{bottom:515.997733pt;}
.y195{bottom:519.301200pt;}
.y125{bottom:521.574800pt;}
.y59{bottom:523.531867pt;}
.y102{bottom:532.607733pt;}
.y16d{bottom:532.607867pt;}
.y8a{bottom:532.645200pt;}
.y34{bottom:532.649867pt;}
.yc4{bottom:532.659200pt;}
.ya2{bottom:532.663867pt;}
.y194{bottom:533.965200pt;}
.y193{bottom:548.629200pt;}
.ye3{bottom:549.931867pt;}
.y101{bottom:551.269733pt;}
.y16c{bottom:551.269867pt;}
.y89{bottom:551.307200pt;}
.y33{bottom:551.311867pt;}
.yc3{bottom:551.321200pt;}
.ya1{bottom:551.325867pt;}
.yc{bottom:554.998533pt;}
.y192{bottom:563.293200pt;}
.y100{bottom:569.931733pt;}
.y88{bottom:569.969200pt;}
.y32{bottom:569.973867pt;}
.y16b{bottom:569.978533pt;}
.yc2{bottom:569.983200pt;}
.y58{bottom:569.987867pt;}
.yb{bottom:572.598533pt;}
.y191{bottom:577.957200pt;}
.ya{bottom:588.598533pt;}
.y87{bottom:588.631200pt;}
.y31{bottom:588.635867pt;}
.y16a{bottom:588.640533pt;}
.yc1{bottom:588.645200pt;}
.y57{bottom:588.649867pt;}
.y190{bottom:592.621200pt;}
.y9{bottom:604.598533pt;}
.yff{bottom:604.810000pt;}
.y18f{bottom:607.285200pt;}
.y86{bottom:607.293200pt;}
.y30{bottom:607.297867pt;}
.ye2{bottom:607.302533pt;}
.yc0{bottom:607.307200pt;}
.y56{bottom:607.311867pt;}
.yfe{bottom:612.012933pt;}
.y18e{bottom:621.949200pt;}
.y85{bottom:625.955200pt;}
.y2f{bottom:625.959867pt;}
.ye1{bottom:625.964533pt;}
.ybf{bottom:625.969200pt;}
.y55{bottom:625.973867pt;}
.y8{bottom:636.598533pt;}
.y18d{bottom:636.613200pt;}
.yfd{bottom:638.868933pt;}
.y84{bottom:644.617200pt;}
.y2e{bottom:644.621867pt;}
.ye0{bottom:644.626533pt;}
.ybe{bottom:644.631200pt;}
.y54{bottom:644.635867pt;}
.yfc{bottom:646.071733pt;}
.y18c{bottom:651.277200pt;}
.y7{bottom:652.598533pt;}
.y83{bottom:663.279200pt;}
.y2d{bottom:663.283867pt;}
.ydf{bottom:663.288533pt;}
.ybd{bottom:663.293200pt;}
.y53{bottom:663.297867pt;}
.y18b{bottom:665.941200pt;}
.y6{bottom:668.598533pt;}
.yfb{bottom:672.927733pt;}
.yfa{bottom:680.130667pt;}
.y18a{bottom:680.605200pt;}
.y82{bottom:681.941200pt;}
.y2c{bottom:681.945867pt;}
.yde{bottom:681.950533pt;}
.ybc{bottom:681.955200pt;}
.y52{bottom:681.959867pt;}
.y5{bottom:684.598533pt;}
.y189{bottom:695.269200pt;}
.y81{bottom:700.603200pt;}
.y2b{bottom:700.607867pt;}
.ydd{bottom:700.612533pt;}
.ybb{bottom:700.617200pt;}
.y51{bottom:700.621867pt;}
.yf9{bottom:706.986667pt;}
.yf8{bottom:714.189600pt;}
.y2a{bottom:719.269867pt;}
.ydc{bottom:719.274533pt;}
.yba{bottom:719.279200pt;}
.y50{bottom:719.283867pt;}
.y188{bottom:723.265200pt;}
.y29{bottom:737.931867pt;}
.ydb{bottom:737.936533pt;}
.yb9{bottom:737.941200pt;}
.y4f{bottom:737.945867pt;}
.yf7{bottom:741.048533pt;}
.y4{bottom:745.535067pt;}
.y187{bottom:755.318000pt;}
.y169{bottom:756.598533pt;}
.yb8{bottom:756.603200pt;}
.y4e{bottom:756.607867pt;}
.yf6{bottom:760.704533pt;}
.y3{bottom:767.935067pt;}
.y28{bottom:768.748667pt;}
.y186{bottom:773.718000pt;}
.yf5{bottom:775.104533pt;}
.yb7{bottom:775.265200pt;}
.y4d{bottom:775.269867pt;}
.y2{bottom:790.335067pt;}
.y27{bottom:791.148667pt;}
.y185{bottom:792.118000pt;}
.y168{bottom:793.930400pt;}
.y4c{bottom:793.931867pt;}
.yf4{bottom:794.660667pt;}
.y4b{bottom:854.597867pt;}
.hc{height:24.817344pt;}
.hf{height:24.817877pt;}
.h17{height:30.657252pt;}
.he{height:35.669333pt;}
.h18{height:39.760417pt;}
.hd{height:39.777344pt;}
.h8{height:41.437500pt;}
.h7{height:42.117188pt;}
.h6{height:42.773438pt;}
.h16{height:46.041667pt;}
.h5{height:46.796875pt;}
.h4{height:47.526042pt;}
.h1a{height:48.343750pt;}
.h15{height:48.819385pt;}
.h19{height:48.950052pt;}
.h1b{height:49.062052pt;}
.h1c{height:49.099385pt;}
.hb{height:49.136719pt;}
.h2{height:51.476562pt;}
.ha{height:51.826667pt;}
.h9{height:56.533333pt;}
.h13{height:62.140362pt;}
.h3{height:63.317333pt;}
.h11{height:70.905454pt;}
.h12{height:70.917188pt;}
.h14{height:71.573437pt;}
.h10{height:100.373438pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:83.149600pt;}
.x10{left:87.748800pt;}
.x1f{left:92.436000pt;}
.x7{left:94.488133pt;}
.x13{left:100.319600pt;}
.x8{left:102.047200pt;}
.xe{left:104.675867pt;}
.xc{left:106.014533pt;}
.x4{left:108.210800pt;}
.x9{left:111.006533pt;}
.x1a{left:113.826133pt;}
.x1d{left:114.924000pt;}
.x3{left:117.674800pt;}
.xa{left:118.686533pt;}
.x6{left:120.949600pt;}
.x1c{left:128.100000pt;}
.x19{left:130.110133pt;}
.x14{left:131.963600pt;}
.x16{left:136.007600pt;}
.x17{left:137.687600pt;}
.x15{left:140.987600pt;}
.x2{left:144.498800pt;}
.x18{left:160.770133pt;}
.x11{left:205.810667pt;}
.x12{left:215.993467pt;}
.x1b{left:234.468000pt;}
.xf{left:244.312800pt;}
.xd{left:275.291867pt;}
.x1{left:310.259867pt;}
.xb{left:464.874533pt;}
.x1e{left:486.420000pt;}
}




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