
    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_1dc7b6b5043626201178dc3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_cef8418f3dbc356478a11f52.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_7c2c9e4c1e85041bc2fff6dc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b5e22e546a9376b9d931a34f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1dc7b6b5043626201178dc3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_3bb8fb58a8b56977fc15791c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9921aabb148e150493bf2eea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_ed4f9f575c11a185f7f19c2b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b24d97adea98fe509f79932e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_9ac0171f9473ae7c4bb70528.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.982000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.975400px;}
.v5{vertical-align:32.400000px;}
.ls9{letter-spacing:-1.998000px;}
.ls1{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.397500px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.005580px;}
.ls7{letter-spacing:30.267000px;}
.ls5{letter-spacing:43.149000px;}
.ls8{letter-spacing:53.466000px;}
.ls2{letter-spacing:213.665400px;}
.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;}
}
.ws10{word-spacing:-60.790500px;}
.ws5{word-spacing:-21.000000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-10.494000px;}
.wsc{word-spacing:-9.540000px;}
.wsf{word-spacing:-8.920500px;}
.ws1{word-spacing:-8.745000px;}
.ws8{word-spacing:-7.870500px;}
.ws6{word-spacing:0.000000px;}
.ws12{word-spacing:0.600000px;}
.ws7{word-spacing:0.720000px;}
.ws11{word-spacing:1.998000px;}
.wse{word-spacing:33.037200px;}
.wsd{word-spacing:36.138000px;}
.ws4{word-spacing:123.483600px;}
.ws3{word-spacing:160.203600px;}
.wsb{word-spacing:406.131000px;}
.ws9{word-spacing:429.369600px;}
.wsa{word-spacing:468.295800px;}
._3a{margin-left:-327.961500px;}
._34{margin-left:-203.319000px;}
._6{margin-left:-14.567400px;}
._33{margin-left:-10.620000px;}
._17{margin-left:-8.428200px;}
._2{margin-left:-6.949800px;}
._9{margin-left:-5.706000px;}
._1{margin-left:-3.850200px;}
._0{margin-left:-1.906200px;}
._d{width:1.920000px;}
._12{width:3.090000px;}
._8{width:4.344000px;}
._a{width:6.060000px;}
._11{width:7.170000px;}
._b{width:8.340000px;}
._7{width:9.354000px;}
._f{width:10.398000px;}
._13{width:11.880000px;}
._10{width:13.266000px;}
._c{width:16.362000px;}
._1c{width:17.832000px;}
._1a{width:19.488000px;}
._14{width:20.760000px;}
._15{width:22.500000px;}
._1b{width:23.550000px;}
._5{width:24.654000px;}
._4{width:25.740000px;}
._29{width:27.366000px;}
._18{width:28.620000px;}
._39{width:29.940000px;}
._37{width:32.604000px;}
._3c{width:34.290000px;}
._2c{width:35.460000px;}
._19{width:36.726000px;}
._3b{width:37.914000px;}
._e{width:38.970000px;}
._16{width:40.500000px;}
._38{width:41.676000px;}
._32{width:43.525800px;}
._31{width:45.202200px;}
._3d{width:46.398000px;}
._2f{width:47.808000px;}
._3{width:52.560000px;}
._2d{width:54.060000px;}
._2b{width:55.807800px;}
._2a{width:56.962200px;}
._2e{width:59.930400px;}
._35{width:67.370400px;}
._26{width:68.527800px;}
._30{width:74.040000px;}
._36{width:87.349800px;}
._1f{width:93.621600px;}
._28{width:119.611800px;}
._1d{width:144.089400px;}
._22{width:173.163600px;}
._1e{width:189.132600px;}
._24{width:241.057800px;}
._20{width:257.757600px;}
._25{width:348.795600px;}
._23{width:350.769600px;}
._27{width:356.026200px;}
._21{width:384.519600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:25.779000px;}
.fs7{font-size:31.482000px;}
.fs4{font-size:34.980000px;}
.fs8{font-size:39.750000px;}
.fs3{font-size:41.976000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y123{bottom:13.875750px;}
.y3{bottom:59.427750px;}
.yfd{bottom:100.221150px;}
.yc5{bottom:108.087750px;}
.yd{bottom:111.294150px;}
.y87{bottom:112.633200px;}
.y18d{bottom:114.493950px;}
.yfc{bottom:118.221150px;}
.ya0{bottom:119.851650px;}
.y86{bottom:120.841950px;}
.y16f{bottom:121.349700px;}
.y1ec{bottom:123.139800px;}
.y1ad{bottom:124.131900px;}
.y1b9{bottom:125.974500px;}
.yc4{bottom:126.087750px;}
.y189{bottom:126.314550px;}
.y121{bottom:127.080000px;}
.yc{bottom:128.551200px;}
.y88{bottom:128.833200px;}
.y18c{bottom:132.493950px;}
.yfb{bottom:136.221150px;}
.y9f{bottom:137.851650px;}
.y16e{bottom:139.349700px;}
.y1eb{bottom:141.139800px;}
.y1ac{bottom:142.131900px;}
.y1b8{bottom:143.974500px;}
.y188{bottom:144.314550px;}
.y1a6{bottom:146.383950px;}
.y13b{bottom:147.999600px;}
.yc3{bottom:148.339800px;}
.y120{bottom:149.331900px;}
.y85{bottom:150.302400px;}
.yb{bottom:151.546200px;}
.yfa{bottom:154.221150px;}
.y9e{bottom:155.851650px;}
.y16d{bottom:157.349700px;}
.y1ea{bottom:159.139800px;}
.y1ab{bottom:160.131900px;}
.y1b7{bottom:161.974500px;}
.y122{bottom:163.357500px;}
.y1a5{bottom:164.383950px;}
.y13a{bottom:165.999600px;}
.yc2{bottom:166.339800px;}
.y187{bottom:166.566450px;}
.y1d7{bottom:168.154050px;}
.ya{bottom:168.803100px;}
.y124{bottom:170.858250px;}
.y11f{bottom:171.583950px;}
.y84{bottom:171.662700px;}
.yf9{bottom:172.221150px;}
.y9d{bottom:173.851650px;}
.y1e9{bottom:177.139800px;}
.y1ee{bottom:178.103550px;}
.y16c{bottom:179.601600px;}
.y1b6{bottom:179.974500px;}
.y82{bottom:182.234100px;}
.y1a4{bottom:182.383950px;}
.y139{bottom:183.999600px;}
.y186{bottom:184.566450px;}
.y1d6{bottom:186.154050px;}
.yc1{bottom:188.591700px;}
.yf8{bottom:190.221150px;}
.y1aa{bottom:190.887750px;}
.y9{bottom:191.798100px;}
.y9c{bottom:191.851650px;}
.y83{bottom:193.023150px;}
.y11e{bottom:193.835850px;}
.y1e8{bottom:195.139800px;}
.y1ed{bottom:196.103550px;}
.y16b{bottom:197.601600px;}
.y1b5{bottom:197.974500px;}
.y1a3{bottom:200.383950px;}
.y138{bottom:201.999600px;}
.y185{bottom:202.566450px;}
.yc0{bottom:206.591700px;}
.yf7{bottom:208.221150px;}
.y9b{bottom:209.851650px;}
.y11d{bottom:211.835850px;}
.y1a9{bottom:212.487900px;}
.y1e7{bottom:213.139800px;}
.y81{bottom:214.383450px;}
.y16a{bottom:215.601600px;}
.y1b4{bottom:215.974500px;}
.y1a2{bottom:218.383950px;}
.y137{bottom:219.999600px;}
.yf6{bottom:226.221150px;}
.y9a{bottom:227.851650px;}
.ybf{bottom:228.843750px;}
.y11c{bottom:229.835850px;}
.y1e6{bottom:231.139800px;}
.y184{bottom:233.322300px;}
.y169{bottom:233.601600px;}
.y7f{bottom:235.635000px;}
.y1a1{bottom:236.383950px;}
.y31{bottom:236.502300px;}
.y136{bottom:237.999600px;}
.y7e{bottom:243.735000px;}
.yf5{bottom:244.221150px;}
.y99{bottom:245.851650px;}
.y1b3{bottom:246.730350px;}
.ybe{bottom:246.843750px;}
.y11b{bottom:247.835850px;}
.y1e5{bottom:249.139800px;}
.y168{bottom:251.601600px;}
.y80{bottom:251.835000px;}
.y1a0{bottom:254.383950px;}
.y30{bottom:254.502300px;}
.y183{bottom:254.922300px;}
.y135{bottom:255.999600px;}
.y98{bottom:263.851650px;}
.ybd{bottom:264.843750px;}
.y11a{bottom:265.835850px;}
.yf4{bottom:266.473050px;}
.y1e4{bottom:267.139800px;}
.y1a8{bottom:268.103550px;}
.y1b2{bottom:268.330350px;}
.y167{bottom:269.601600px;}
.y19f{bottom:272.383950px;}
.y2f{bottom:272.502300px;}
.y134{bottom:273.999600px;}
.y89{bottom:278.520900px;}
.y97{bottom:281.851650px;}
.ybc{bottom:282.843750px;}
.yf3{bottom:284.473050px;}
.y1e3{bottom:285.139800px;}
.y1a7{bottom:286.103550px;}
.y166{bottom:287.601600px;}
.y119{bottom:288.087750px;}
.y19e{bottom:290.383950px;}
.y2e{bottom:290.502300px;}
.y133{bottom:291.999600px;}
.y96{bottom:299.851650px;}
.ybb{bottom:300.843750px;}
.yf2{bottom:302.473050px;}
.y1e2{bottom:303.139800px;}
.y165{bottom:305.601600px;}
.y118{bottom:306.087750px;}
.y19d{bottom:308.383950px;}
.y132{bottom:309.999600px;}
.y182{bottom:310.538100px;}
.y2d{bottom:312.754200px;}
.y95{bottom:317.851650px;}
.yba{bottom:318.843750px;}
.yf1{bottom:320.473050px;}
.y1e1{bottom:321.139800px;}
.y7c{bottom:322.443750px;}
.y1b1{bottom:323.946150px;}
.y117{bottom:324.087750px;}
.y5f{bottom:324.535500px;}
.y19c{bottom:326.383950px;}
.y164{bottom:327.853650px;}
.y131{bottom:327.999600px;}
.y181{bottom:328.538100px;}
.y2c{bottom:330.754200px;}
.y94{bottom:335.851650px;}
.yb9{bottom:336.843750px;}
.yf0{bottom:338.473050px;}
.y1e0{bottom:339.139800px;}
.y7b{bottom:340.443750px;}
.y1b0{bottom:341.946150px;}
.y116{bottom:342.087750px;}
.y5e{bottom:342.535500px;}
.y19b{bottom:344.383950px;}
.y163{bottom:345.853650px;}
.y130{bottom:345.999600px;}
.y2b{bottom:348.754350px;}
.y93{bottom:353.851650px;}
.yb8{bottom:354.843750px;}
.yef{bottom:356.473050px;}
.y1df{bottom:357.139800px;}
.y7a{bottom:358.443750px;}
.y115{bottom:360.087900px;}
.y5d{bottom:360.535500px;}
.y19a{bottom:362.383950px;}
.y162{bottom:363.853650px;}
.y12f{bottom:363.999600px;}
.y45{bottom:365.331900px;}
.y2a{bottom:366.754350px;}
.y92{bottom:371.851650px;}
.yb7{bottom:372.843750px;}
.y1de{bottom:375.139800px;}
.y79{bottom:376.443750px;}
.y114{bottom:378.087900px;}
.y5c{bottom:378.535500px;}
.yee{bottom:378.725100px;}
.y199{bottom:380.383950px;}
.y161{bottom:381.853650px;}
.y12e{bottom:381.999600px;}
.y44{bottom:383.331900px;}
.y29{bottom:389.006250px;}
.y91{bottom:389.851650px;}
.yb6{bottom:390.843750px;}
.y1dd{bottom:393.139800px;}
.y78{bottom:394.443750px;}
.y113{bottom:396.087900px;}
.y5b{bottom:396.535500px;}
.yed{bottom:396.725100px;}
.y160{bottom:399.853650px;}
.y12d{bottom:399.999600px;}
.y43{bottom:401.331900px;}
.y28{bottom:407.006250px;}
.y1dc{bottom:411.139800px;}
.y77{bottom:412.443750px;}
.y112{bottom:414.087900px;}
.y5a{bottom:414.535500px;}
.yec{bottom:414.725100px;}
.yb5{bottom:417.347700px;}
.y15f{bottom:417.853650px;}
.y12c{bottom:417.999600px;}
.y42{bottom:419.331900px;}
.y198{bottom:419.643750px;}
.y27{bottom:425.006250px;}
.y90{bottom:429.111450px;}
.y1db{bottom:429.139800px;}
.y111{bottom:432.087900px;}
.yeb{bottom:432.725100px;}
.yb4{bottom:435.347700px;}
.y15e{bottom:435.853650px;}
.y12b{bottom:435.999600px;}
.y59{bottom:436.787550px;}
.y41{bottom:437.331900px;}
.y197{bottom:437.643750px;}
.y26{bottom:443.006250px;}
.y76{bottom:443.199600px;}
.y1da{bottom:447.139800px;}
.yea{bottom:450.725100px;}
.yb3{bottom:453.347700px;}
.y15d{bottom:453.853650px;}
.y12a{bottom:453.999600px;}
.y58{bottom:454.787550px;}
.y40{bottom:455.331900px;}
.y25{bottom:461.006250px;}
.y110{bottom:462.843750px;}
.y75{bottom:468.399600px;}
.yb2{bottom:471.347700px;}
.y15c{bottom:471.853650px;}
.y129{bottom:471.999600px;}
.y57{bottom:472.787550px;}
.ye9{bottom:472.977000px;}
.y3f{bottom:473.331900px;}
.y1d9{bottom:477.895650px;}
.y24{bottom:479.006250px;}
.yb1{bottom:489.347700px;}
.y15b{bottom:489.853650px;}
.y128{bottom:489.999600px;}
.y56{bottom:490.787550px;}
.ye8{bottom:490.977000px;}
.y3e{bottom:491.331900px;}
.y23{bottom:497.006250px;}
.yb0{bottom:507.347700px;}
.y55{bottom:508.787550px;}
.ye7{bottom:508.977000px;}
.y3d{bottom:509.331900px;}
.y10f{bottom:509.955600px;}
.y208{bottom:513.730650px;}
.y22{bottom:515.006250px;}
.y74{bottom:519.111450px;}
.y15a{bottom:520.609500px;}
.y127{bottom:520.755450px;}
.yaf{bottom:525.347700px;}
.ye6{bottom:526.977000px;}
.y3c{bottom:527.331900px;}
.y54{bottom:531.039450px;}
.y207{bottom:531.730650px;}
.y21{bottom:533.006250px;}
.y10e{bottom:535.155600px;}
.y73{bottom:537.111450px;}
.yae{bottom:543.347700px;}
.ye5{bottom:544.977000px;}
.y53{bottom:549.039450px;}
.y3b{bottom:549.583950px;}
.y18b{bottom:549.753900px;}
.y20{bottom:551.006250px;}
.y206{bottom:553.982550px;}
.y1d8{bottom:555.111450px;}
.y126{bottom:559.363350px;}
.y159{bottom:562.817400px;}
.ye4{bottom:562.977000px;}
.yad{bottom:565.599600px;}
.y52{bottom:567.039450px;}
.y3a{bottom:567.583950px;}
.y18a{bottom:567.753900px;}
.y1d5{bottom:568.405950px;}
.y1f{bottom:569.006250px;}
.y205{bottom:571.982550px;}
.y10d{bottom:577.363350px;}
.y158{bottom:580.817400px;}
.ye3{bottom:580.977000px;}
.yac{bottom:583.599600px;}
.y39{bottom:585.583950px;}
.y1d4{bottom:586.405950px;}
.y1e{bottom:587.006250px;}
.y51{bottom:589.291500px;}
.y204{bottom:594.234600px;}
.y10c{bottom:595.363350px;}
.y157{bottom:598.817400px;}
.ye2{bottom:598.977000px;}
.y38{bottom:603.583950px;}
.y1d3{bottom:604.405950px;}
.y1d{bottom:605.006250px;}
.yab{bottom:605.851650px;}
.y50{bottom:607.291500px;}
.y203{bottom:612.234600px;}
.y10b{bottom:613.363350px;}
.y156{bottom:616.817400px;}
.ye1{bottom:616.977000px;}
.y37{bottom:621.583950px;}
.y1d2{bottom:622.405950px;}
.y1c{bottom:623.006250px;}
.y4f{bottom:625.291500px;}
.yaa{bottom:628.103550px;}
.y10a{bottom:631.363350px;}
.y202{bottom:634.486500px;}
.y155{bottom:634.817400px;}
.ye0{bottom:634.977000px;}
.y36{bottom:639.583950px;}
.y1d1{bottom:640.405950px;}
.y1b{bottom:641.006250px;}
.y4e{bottom:643.291500px;}
.ya9{bottom:646.103550px;}
.y109{bottom:649.363350px;}
.y201{bottom:652.486500px;}
.y154{bottom:652.817400px;}
.ydf{bottom:652.977000px;}
.y35{bottom:657.583950px;}
.y1d0{bottom:658.405950px;}
.y1a{bottom:659.006250px;}
.y4d{bottom:661.291500px;}
.y108{bottom:667.363350px;}
.ya8{bottom:668.355600px;}
.y153{bottom:670.817400px;}
.yde{bottom:670.977000px;}
.y200{bottom:674.738400px;}
.y34{bottom:675.583950px;}
.y1cf{bottom:676.405950px;}
.y19{bottom:677.006250px;}
.y4c{bottom:679.291500px;}
.y107{bottom:685.363350px;}
.y152{bottom:688.817400px;}
.ydd{bottom:688.977000px;}
.yc6{bottom:690.973650px;}
.y1ff{bottom:692.738400px;}
.y33{bottom:693.583950px;}
.y1ce{bottom:694.405950px;}
.yc8{bottom:694.629900px;}
.ya7{bottom:694.859550px;}
.y4b{bottom:697.291500px;}
.yc7{bottom:701.000588px;}
.y106{bottom:703.363350px;}
.y151{bottom:706.817400px;}
.y18{bottom:707.762100px;}
.y32{bottom:711.583950px;}
.y1cd{bottom:712.405950px;}
.y1fe{bottom:714.990450px;}
.y4a{bottom:715.291500px;}
.ya6{bottom:717.111450px;}
.ydc{bottom:719.733000px;}
.y105{bottom:721.363350px;}
.y150{bottom:724.817400px;}
.y1cc{bottom:730.405950px;}
.y1fd{bottom:732.990450px;}
.y49{bottom:733.291500px;}
.ya5{bottom:735.111450px;}
.y104{bottom:739.363350px;}
.y1af{bottom:741.205950px;}
.y14f{bottom:742.817400px;}
.y180{bottom:746.790000px;}
.y48{bottom:751.291500px;}
.y1cb{bottom:752.657850px;}
.ya4{bottom:753.111450px;}
.y1fc{bottom:755.242350px;}
.y103{bottom:757.363350px;}
.ydb{bottom:758.340750px;}
.y1ae{bottom:759.205950px;}
.y14e{bottom:760.817400px;}
.y17f{bottom:764.790000px;}
.y1ca{bottom:770.657850px;}
.ya3{bottom:771.111450px;}
.y1fb{bottom:773.242350px;}
.y72{bottom:775.363350px;}
.yda{bottom:776.340750px;}
.y14d{bottom:778.817400px;}
.y17e{bottom:787.042050px;}
.y16{bottom:787.268700px;}
.y1c9{bottom:788.657850px;}
.ya2{bottom:789.111450px;}
.y47{bottom:790.551300px;}
.y71{bottom:793.363350px;}
.yd9{bottom:794.340750px;}
.y1fa{bottom:795.494400px;}
.y14c{bottom:796.817400px;}
.y17d{bottom:805.042050px;}
.y1c8{bottom:806.657850px;}
.ya1{bottom:807.111450px;}
.y46{bottom:808.551300px;}
.y15{bottom:809.427300px;}
.y70{bottom:811.363350px;}
.yd8{bottom:812.340750px;}
.y1f9{bottom:813.494400px;}
.y14b{bottom:814.817400px;}
.y17c{bottom:827.294100px;}
.y14{bottom:827.427300px;}
.y1c7{bottom:828.909900px;}
.y6f{bottom:829.363350px;}
.yd7{bottom:830.340750px;}
.y7d{bottom:830.763750px;}
.y1f8{bottom:831.494400px;}
.y14a{bottom:832.817400px;}
.y196{bottom:837.895800px;}
.y17b{bottom:845.294100px;}
.y13{bottom:845.427300px;}
.y1c6{bottom:846.909900px;}
.y6e{bottom:847.363350px;}
.yd6{bottom:848.340750px;}
.y149{bottom:850.817400px;}
.y1f7{bottom:853.746300px;}
.y195{bottom:855.895800px;}
.y17a{bottom:863.294100px;}
.y12{bottom:863.427300px;}
.y1c5{bottom:864.909900px;}
.y6d{bottom:865.363350px;}
.yd5{bottom:866.340750px;}
.y148{bottom:868.817400px;}
.y102{bottom:869.615400px;}
.y1f6{bottom:871.746300px;}
.y194{bottom:878.147700px;}
.y11{bottom:881.427300px;}
.y1c4{bottom:882.909900px;}
.y6c{bottom:883.363350px;}
.yd4{bottom:884.340750px;}
.y147{bottom:886.817400px;}
.y101{bottom:887.615400px;}
.y1f5{bottom:893.998350px;}
.y179{bottom:894.049950px;}
.y193{bottom:896.147700px;}
.y10{bottom:899.427300px;}
.y1c3{bottom:900.909900px;}
.y6b{bottom:901.363350px;}
.yd3{bottom:902.340750px;}
.y146{bottom:904.817400px;}
.y100{bottom:905.615400px;}
.y178{bottom:915.649950px;}
.yf{bottom:917.427300px;}
.y192{bottom:918.399600px;}
.y1c2{bottom:918.909900px;}
.y6a{bottom:919.363350px;}
.yd2{bottom:920.340750px;}
.y145{bottom:922.817400px;}
.yff{bottom:923.615400px;}
.y1f4{bottom:924.754200px;}
.ye{bottom:935.669100px;}
.y191{bottom:936.399600px;}
.y69{bottom:937.363350px;}
.y144{bottom:940.817400px;}
.y1c1{bottom:941.161800px;}
.yfe{bottom:941.615400px;}
.yd1{bottom:946.844850px;}
.y177{bottom:954.257850px;}
.y190{bottom:954.399600px;}
.y68{bottom:955.363350px;}
.y143{bottom:958.817400px;}
.y1c0{bottom:959.161800px;}
.y8f{bottom:959.615400px;}
.yd0{bottom:964.844850px;}
.y176{bottom:972.257850px;}
.y67{bottom:973.363350px;}
.y142{bottom:976.817400px;}
.y1bf{bottom:977.161800px;}
.y8e{bottom:977.615400px;}
.y1f3{bottom:979.037700px;}
.y17{bottom:980.195550px;}
.ycf{bottom:982.844850px;}
.y18f{bottom:985.155600px;}
.y175{bottom:990.257850px;}
.y66{bottom:991.363350px;}
.y1be{bottom:995.161800px;}
.y8d{bottom:995.615400px;}
.y1f2{bottom:997.037700px;}
.y141{bottom:999.069450px;}
.yce{bottom:1005.096750px;}
.y18e{bottom:1006.755450px;}
.y65{bottom:1009.363350px;}
.y174{bottom:1012.509750px;}
.y1bd{bottom:1013.161800px;}
.y8c{bottom:1013.615400px;}
.y8{bottom:1015.037700px;}
.y140{bottom:1017.069450px;}
.ycd{bottom:1023.096750px;}
.y64{bottom:1027.363350px;}
.y173{bottom:1030.509750px;}
.y1bc{bottom:1031.161800px;}
.y8b{bottom:1031.615400px;}
.y1f1{bottom:1033.037700px;}
.y13f{bottom:1035.069450px;}
.ycc{bottom:1045.348800px;}
.y63{bottom:1045.363350px;}
.y1bb{bottom:1049.161800px;}
.y7{bottom:1049.393550px;}
.y8a{bottom:1049.615400px;}
.y1f0{bottom:1051.037700px;}
.y172{bottom:1052.761800px;}
.y13e{bottom:1053.069450px;}
.ycb{bottom:1063.348800px;}
.y125{bottom:1063.363350px;}
.y62{bottom:1067.615400px;}
.y1ef{bottom:1069.037700px;}
.y171{bottom:1070.761800px;}
.y13d{bottom:1071.069450px;}
.y6{bottom:1074.593550px;}
.y1ba{bottom:1079.917650px;}
.yca{bottom:1085.600700px;}
.y61{bottom:1085.615400px;}
.y5{bottom:1099.793550px;}
.y170{bottom:1101.517800px;}
.y13c{bottom:1101.825300px;}
.yc9{bottom:1103.600700px;}
.y60{bottom:1103.615400px;}
.y4{bottom:1158.513750px;}
.y2{bottom:1158.612900px;}
.y1{bottom:1183.316850px;}
.h9{height:17.181804px;}
.h13{height:25.500000px;}
.h10{height:27.599854px;}
.h5{height:32.666484px;}
.hb{height:36.597656px;}
.h2{height:37.494141px;}
.h11{height:39.577148px;}
.h8{height:40.664062px;}
.h15{height:41.660156px;}
.hd{height:46.946236px;}
.hc{height:46.946836px;}
.hf{height:47.381836px;}
.h12{height:48.761719px;}
.h14{height:49.992188px;}
.h7{height:51.679284px;}
.h6{height:52.646484px;}
.h3{height:56.929688px;}
.h4{height:63.175781px;}
.ha{height:68.997656px;}
.he{height:79.346836px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:100.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:74.766150px;}
.x1{left:106.299150px;}
.x18{left:110.716950px;}
.x14{left:112.486650px;}
.x8{left:119.055150px;}
.x10{left:120.994950px;}
.x31{left:122.823900px;}
.x5{left:127.559100px;}
.x30{left:128.621100px;}
.x32{left:134.257050px;}
.x29{left:137.758050px;}
.xb{left:152.798250px;}
.x2d{left:176.136900px;}
.x26{left:183.988500px;}
.xc{left:201.958500px;}
.x22{left:212.308500px;}
.x24{left:215.309100px;}
.x6{left:231.885750px;}
.x16{left:261.118050px;}
.x17{left:384.425100px;}
.xf{left:397.345500px;}
.x21{left:401.328600px;}
.xa{left:474.094500px;}
.x2e{left:476.586000px;}
.x2b{left:477.611400px;}
.xd{left:484.331400px;}
.x1b{left:486.850350px;}
.x27{left:488.085000px;}
.x9{left:495.354300px;}
.x1a{left:503.858250px;}
.x2f{left:505.820550px;}
.x28{left:529.075050px;}
.x25{left:535.128450px;}
.x11{left:538.591950px;}
.x2a{left:543.932250px;}
.xe{left:561.638550px;}
.x4{left:569.882550px;}
.x1f{left:591.166800px;}
.x1e{left:598.751812px;}
.x2c{left:618.273000px;}
.x1c{left:637.995000px;}
.x1d{left:663.912000px;}
.x2{left:668.601300px;}
.x12{left:673.013550px;}
.x7{left:683.188950px;}
.x13{left:700.218000px;}
.x15{left:709.584900px;}
.x19{left:769.123950px;}
.x20{left:773.114100px;}
.x3{left:779.864100px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.984000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.311467pt;}
.v5{vertical-align:28.800000pt;}
.ls9{letter-spacing:-1.776000pt;}
.ls1{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.353333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.004960pt;}
.ls7{letter-spacing:26.904000pt;}
.ls5{letter-spacing:38.354667pt;}
.ls8{letter-spacing:47.525333pt;}
.ls2{letter-spacing:189.924800pt;}
.ws10{word-spacing:-54.036000pt;}
.ws5{word-spacing:-18.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-9.328000pt;}
.wsc{word-spacing:-8.480000pt;}
.wsf{word-spacing:-7.929333pt;}
.ws1{word-spacing:-7.773333pt;}
.ws8{word-spacing:-6.996000pt;}
.ws6{word-spacing:0.000000pt;}
.ws12{word-spacing:0.533333pt;}
.ws7{word-spacing:0.640000pt;}
.ws11{word-spacing:1.776000pt;}
.wse{word-spacing:29.366400pt;}
.wsd{word-spacing:32.122667pt;}
.ws4{word-spacing:109.763200pt;}
.ws3{word-spacing:142.403200pt;}
.wsb{word-spacing:361.005333pt;}
.ws9{word-spacing:381.661867pt;}
.wsa{word-spacing:416.262933pt;}
._3a{margin-left:-291.521333pt;}
._34{margin-left:-180.728000pt;}
._6{margin-left:-12.948800pt;}
._33{margin-left:-9.440000pt;}
._17{margin-left:-7.491733pt;}
._2{margin-left:-6.177600pt;}
._9{margin-left:-5.072000pt;}
._1{margin-left:-3.422400pt;}
._0{margin-left:-1.694400pt;}
._d{width:1.706667pt;}
._12{width:2.746667pt;}
._8{width:3.861333pt;}
._a{width:5.386667pt;}
._11{width:6.373333pt;}
._b{width:7.413333pt;}
._7{width:8.314667pt;}
._f{width:9.242667pt;}
._13{width:10.560000pt;}
._10{width:11.792000pt;}
._c{width:14.544000pt;}
._1c{width:15.850667pt;}
._1a{width:17.322667pt;}
._14{width:18.453333pt;}
._15{width:20.000000pt;}
._1b{width:20.933333pt;}
._5{width:21.914667pt;}
._4{width:22.880000pt;}
._29{width:24.325333pt;}
._18{width:25.440000pt;}
._39{width:26.613333pt;}
._37{width:28.981333pt;}
._3c{width:30.480000pt;}
._2c{width:31.520000pt;}
._19{width:32.645333pt;}
._3b{width:33.701333pt;}
._e{width:34.640000pt;}
._16{width:36.000000pt;}
._38{width:37.045333pt;}
._32{width:38.689600pt;}
._31{width:40.179733pt;}
._3d{width:41.242667pt;}
._2f{width:42.496000pt;}
._3{width:46.720000pt;}
._2d{width:48.053333pt;}
._2b{width:49.606933pt;}
._2a{width:50.633067pt;}
._2e{width:53.271467pt;}
._35{width:59.884800pt;}
._26{width:60.913600pt;}
._30{width:65.813333pt;}
._36{width:77.644267pt;}
._1f{width:83.219200pt;}
._28{width:106.321600pt;}
._1d{width:128.079467pt;}
._22{width:153.923200pt;}
._1e{width:168.117867pt;}
._24{width:214.273600pt;}
._20{width:229.117867pt;}
._25{width:310.040533pt;}
._23{width:311.795200pt;}
._27{width:316.467733pt;}
._21{width:341.795200pt;}
.fs6{font-size:22.914667pt;}
.fs7{font-size:27.984000pt;}
.fs4{font-size:31.093333pt;}
.fs8{font-size:35.333333pt;}
.fs3{font-size:37.312000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:12.334000pt;}
.y3{bottom:52.824667pt;}
.yfd{bottom:89.085467pt;}
.yc5{bottom:96.078000pt;}
.yd{bottom:98.928133pt;}
.y87{bottom:100.118400pt;}
.y18d{bottom:101.772400pt;}
.yfc{bottom:105.085467pt;}
.ya0{bottom:106.534800pt;}
.y86{bottom:107.415067pt;}
.y16f{bottom:107.866400pt;}
.y1ec{bottom:109.457600pt;}
.y1ad{bottom:110.339467pt;}
.y1b9{bottom:111.977333pt;}
.yc4{bottom:112.078000pt;}
.y189{bottom:112.279600pt;}
.y121{bottom:112.960000pt;}
.yc{bottom:114.267733pt;}
.y88{bottom:114.518400pt;}
.y18c{bottom:117.772400pt;}
.yfb{bottom:121.085467pt;}
.y9f{bottom:122.534800pt;}
.y16e{bottom:123.866400pt;}
.y1eb{bottom:125.457600pt;}
.y1ac{bottom:126.339467pt;}
.y1b8{bottom:127.977333pt;}
.y188{bottom:128.279600pt;}
.y1a6{bottom:130.119067pt;}
.y13b{bottom:131.555200pt;}
.yc3{bottom:131.857600pt;}
.y120{bottom:132.739467pt;}
.y85{bottom:133.602133pt;}
.yb{bottom:134.707733pt;}
.yfa{bottom:137.085467pt;}
.y9e{bottom:138.534800pt;}
.y16d{bottom:139.866400pt;}
.y1ea{bottom:141.457600pt;}
.y1ab{bottom:142.339467pt;}
.y1b7{bottom:143.977333pt;}
.y122{bottom:145.206667pt;}
.y1a5{bottom:146.119067pt;}
.y13a{bottom:147.555200pt;}
.yc2{bottom:147.857600pt;}
.y187{bottom:148.059067pt;}
.y1d7{bottom:149.470267pt;}
.ya{bottom:150.047200pt;}
.y124{bottom:151.874000pt;}
.y11f{bottom:152.519067pt;}
.y84{bottom:152.589067pt;}
.yf9{bottom:153.085467pt;}
.y9d{bottom:154.534800pt;}
.y1e9{bottom:157.457600pt;}
.y1ee{bottom:158.314267pt;}
.y16c{bottom:159.645867pt;}
.y1b6{bottom:159.977333pt;}
.y82{bottom:161.985867pt;}
.y1a4{bottom:162.119067pt;}
.y139{bottom:163.555200pt;}
.y186{bottom:164.059067pt;}
.y1d6{bottom:165.470267pt;}
.yc1{bottom:167.637067pt;}
.yf8{bottom:169.085467pt;}
.y1aa{bottom:169.678000pt;}
.y9{bottom:170.487200pt;}
.y9c{bottom:170.534800pt;}
.y83{bottom:171.576133pt;}
.y11e{bottom:172.298533pt;}
.y1e8{bottom:173.457600pt;}
.y1ed{bottom:174.314267pt;}
.y16b{bottom:175.645867pt;}
.y1b5{bottom:175.977333pt;}
.y1a3{bottom:178.119067pt;}
.y138{bottom:179.555200pt;}
.y185{bottom:180.059067pt;}
.yc0{bottom:183.637067pt;}
.yf7{bottom:185.085467pt;}
.y9b{bottom:186.534800pt;}
.y11d{bottom:188.298533pt;}
.y1a9{bottom:188.878133pt;}
.y1e7{bottom:189.457600pt;}
.y81{bottom:190.563067pt;}
.y16a{bottom:191.645867pt;}
.y1b4{bottom:191.977333pt;}
.y1a2{bottom:194.119067pt;}
.y137{bottom:195.555200pt;}
.yf6{bottom:201.085467pt;}
.y9a{bottom:202.534800pt;}
.ybf{bottom:203.416667pt;}
.y11c{bottom:204.298533pt;}
.y1e6{bottom:205.457600pt;}
.y184{bottom:207.397600pt;}
.y169{bottom:207.645867pt;}
.y7f{bottom:209.453333pt;}
.y1a1{bottom:210.119067pt;}
.y31{bottom:210.224267pt;}
.y136{bottom:211.555200pt;}
.y7e{bottom:216.653333pt;}
.yf5{bottom:217.085467pt;}
.y99{bottom:218.534800pt;}
.y1b3{bottom:219.315867pt;}
.ybe{bottom:219.416667pt;}
.y11b{bottom:220.298533pt;}
.y1e5{bottom:221.457600pt;}
.y168{bottom:223.645867pt;}
.y80{bottom:223.853333pt;}
.y1a0{bottom:226.119067pt;}
.y30{bottom:226.224267pt;}
.y183{bottom:226.597600pt;}
.y135{bottom:227.555200pt;}
.y98{bottom:234.534800pt;}
.ybd{bottom:235.416667pt;}
.y11a{bottom:236.298533pt;}
.yf4{bottom:236.864933pt;}
.y1e4{bottom:237.457600pt;}
.y1a8{bottom:238.314267pt;}
.y1b2{bottom:238.515867pt;}
.y167{bottom:239.645867pt;}
.y19f{bottom:242.119067pt;}
.y2f{bottom:242.224267pt;}
.y134{bottom:243.555200pt;}
.y89{bottom:247.574133pt;}
.y97{bottom:250.534800pt;}
.ybc{bottom:251.416667pt;}
.yf3{bottom:252.864933pt;}
.y1e3{bottom:253.457600pt;}
.y1a7{bottom:254.314267pt;}
.y166{bottom:255.645867pt;}
.y119{bottom:256.078000pt;}
.y19e{bottom:258.119067pt;}
.y2e{bottom:258.224267pt;}
.y133{bottom:259.555200pt;}
.y96{bottom:266.534800pt;}
.ybb{bottom:267.416667pt;}
.yf2{bottom:268.864933pt;}
.y1e2{bottom:269.457600pt;}
.y165{bottom:271.645867pt;}
.y118{bottom:272.078000pt;}
.y19d{bottom:274.119067pt;}
.y132{bottom:275.555200pt;}
.y182{bottom:276.033867pt;}
.y2d{bottom:278.003733pt;}
.y95{bottom:282.534800pt;}
.yba{bottom:283.416667pt;}
.yf1{bottom:284.864933pt;}
.y1e1{bottom:285.457600pt;}
.y7c{bottom:286.616667pt;}
.y1b1{bottom:287.952133pt;}
.y117{bottom:288.078000pt;}
.y5f{bottom:288.476000pt;}
.y19c{bottom:290.119067pt;}
.y164{bottom:291.425467pt;}
.y131{bottom:291.555200pt;}
.y181{bottom:292.033867pt;}
.y2c{bottom:294.003733pt;}
.y94{bottom:298.534800pt;}
.yb9{bottom:299.416667pt;}
.yf0{bottom:300.864933pt;}
.y1e0{bottom:301.457600pt;}
.y7b{bottom:302.616667pt;}
.y1b0{bottom:303.952133pt;}
.y116{bottom:304.078000pt;}
.y5e{bottom:304.476000pt;}
.y19b{bottom:306.119067pt;}
.y163{bottom:307.425467pt;}
.y130{bottom:307.555200pt;}
.y2b{bottom:310.003867pt;}
.y93{bottom:314.534800pt;}
.yb8{bottom:315.416667pt;}
.yef{bottom:316.864933pt;}
.y1df{bottom:317.457600pt;}
.y7a{bottom:318.616667pt;}
.y115{bottom:320.078133pt;}
.y5d{bottom:320.476000pt;}
.y19a{bottom:322.119067pt;}
.y162{bottom:323.425467pt;}
.y12f{bottom:323.555200pt;}
.y45{bottom:324.739467pt;}
.y2a{bottom:326.003867pt;}
.y92{bottom:330.534800pt;}
.yb7{bottom:331.416667pt;}
.y1de{bottom:333.457600pt;}
.y79{bottom:334.616667pt;}
.y114{bottom:336.078133pt;}
.y5c{bottom:336.476000pt;}
.yee{bottom:336.644533pt;}
.y199{bottom:338.119067pt;}
.y161{bottom:339.425467pt;}
.y12e{bottom:339.555200pt;}
.y44{bottom:340.739467pt;}
.y29{bottom:345.783333pt;}
.y91{bottom:346.534800pt;}
.yb6{bottom:347.416667pt;}
.y1dd{bottom:349.457600pt;}
.y78{bottom:350.616667pt;}
.y113{bottom:352.078133pt;}
.y5b{bottom:352.476000pt;}
.yed{bottom:352.644533pt;}
.y160{bottom:355.425467pt;}
.y12d{bottom:355.555200pt;}
.y43{bottom:356.739467pt;}
.y28{bottom:361.783333pt;}
.y1dc{bottom:365.457600pt;}
.y77{bottom:366.616667pt;}
.y112{bottom:368.078133pt;}
.y5a{bottom:368.476000pt;}
.yec{bottom:368.644533pt;}
.yb5{bottom:370.975733pt;}
.y15f{bottom:371.425467pt;}
.y12c{bottom:371.555200pt;}
.y42{bottom:372.739467pt;}
.y198{bottom:373.016667pt;}
.y27{bottom:377.783333pt;}
.y90{bottom:381.432400pt;}
.y1db{bottom:381.457600pt;}
.y111{bottom:384.078133pt;}
.yeb{bottom:384.644533pt;}
.yb4{bottom:386.975733pt;}
.y15e{bottom:387.425467pt;}
.y12b{bottom:387.555200pt;}
.y59{bottom:388.255600pt;}
.y41{bottom:388.739467pt;}
.y197{bottom:389.016667pt;}
.y26{bottom:393.783333pt;}
.y76{bottom:393.955200pt;}
.y1da{bottom:397.457600pt;}
.yea{bottom:400.644533pt;}
.yb3{bottom:402.975733pt;}
.y15d{bottom:403.425467pt;}
.y12a{bottom:403.555200pt;}
.y58{bottom:404.255600pt;}
.y40{bottom:404.739467pt;}
.y25{bottom:409.783333pt;}
.y110{bottom:411.416667pt;}
.y75{bottom:416.355200pt;}
.yb2{bottom:418.975733pt;}
.y15c{bottom:419.425467pt;}
.y129{bottom:419.555200pt;}
.y57{bottom:420.255600pt;}
.ye9{bottom:420.424000pt;}
.y3f{bottom:420.739467pt;}
.y1d9{bottom:424.796133pt;}
.y24{bottom:425.783333pt;}
.yb1{bottom:434.975733pt;}
.y15b{bottom:435.425467pt;}
.y128{bottom:435.555200pt;}
.y56{bottom:436.255600pt;}
.ye8{bottom:436.424000pt;}
.y3e{bottom:436.739467pt;}
.y23{bottom:441.783333pt;}
.yb0{bottom:450.975733pt;}
.y55{bottom:452.255600pt;}
.ye7{bottom:452.424000pt;}
.y3d{bottom:452.739467pt;}
.y10f{bottom:453.293867pt;}
.y208{bottom:456.649467pt;}
.y22{bottom:457.783333pt;}
.y74{bottom:461.432400pt;}
.y15a{bottom:462.764000pt;}
.y127{bottom:462.893733pt;}
.yaf{bottom:466.975733pt;}
.ye6{bottom:468.424000pt;}
.y3c{bottom:468.739467pt;}
.y54{bottom:472.035067pt;}
.y207{bottom:472.649467pt;}
.y21{bottom:473.783333pt;}
.y10e{bottom:475.693867pt;}
.y73{bottom:477.432400pt;}
.yae{bottom:482.975733pt;}
.ye5{bottom:484.424000pt;}
.y53{bottom:488.035067pt;}
.y3b{bottom:488.519067pt;}
.y18b{bottom:488.670133pt;}
.y20{bottom:489.783333pt;}
.y206{bottom:492.428933pt;}
.y1d8{bottom:493.432400pt;}
.y126{bottom:497.211867pt;}
.y159{bottom:500.282133pt;}
.ye4{bottom:500.424000pt;}
.yad{bottom:502.755200pt;}
.y52{bottom:504.035067pt;}
.y3a{bottom:504.519067pt;}
.y18a{bottom:504.670133pt;}
.y1d5{bottom:505.249733pt;}
.y1f{bottom:505.783333pt;}
.y205{bottom:508.428933pt;}
.y10d{bottom:513.211867pt;}
.y158{bottom:516.282133pt;}
.ye3{bottom:516.424000pt;}
.yac{bottom:518.755200pt;}
.y39{bottom:520.519067pt;}
.y1d4{bottom:521.249733pt;}
.y1e{bottom:521.783333pt;}
.y51{bottom:523.814667pt;}
.y204{bottom:528.208533pt;}
.y10c{bottom:529.211867pt;}
.y157{bottom:532.282133pt;}
.ye2{bottom:532.424000pt;}
.y38{bottom:536.519067pt;}
.y1d3{bottom:537.249733pt;}
.y1d{bottom:537.783333pt;}
.yab{bottom:538.534800pt;}
.y50{bottom:539.814667pt;}
.y203{bottom:544.208533pt;}
.y10b{bottom:545.211867pt;}
.y156{bottom:548.282133pt;}
.ye1{bottom:548.424000pt;}
.y37{bottom:552.519067pt;}
.y1d2{bottom:553.249733pt;}
.y1c{bottom:553.783333pt;}
.y4f{bottom:555.814667pt;}
.yaa{bottom:558.314267pt;}
.y10a{bottom:561.211867pt;}
.y202{bottom:563.988000pt;}
.y155{bottom:564.282133pt;}
.ye0{bottom:564.424000pt;}
.y36{bottom:568.519067pt;}
.y1d1{bottom:569.249733pt;}
.y1b{bottom:569.783333pt;}
.y4e{bottom:571.814667pt;}
.ya9{bottom:574.314267pt;}
.y109{bottom:577.211867pt;}
.y201{bottom:579.988000pt;}
.y154{bottom:580.282133pt;}
.ydf{bottom:580.424000pt;}
.y35{bottom:584.519067pt;}
.y1d0{bottom:585.249733pt;}
.y1a{bottom:585.783333pt;}
.y4d{bottom:587.814667pt;}
.y108{bottom:593.211867pt;}
.ya8{bottom:594.093867pt;}
.y153{bottom:596.282133pt;}
.yde{bottom:596.424000pt;}
.y200{bottom:599.767467pt;}
.y34{bottom:600.519067pt;}
.y1cf{bottom:601.249733pt;}
.y19{bottom:601.783333pt;}
.y4c{bottom:603.814667pt;}
.y107{bottom:609.211867pt;}
.y152{bottom:612.282133pt;}
.ydd{bottom:612.424000pt;}
.yc6{bottom:614.198800pt;}
.y1ff{bottom:615.767467pt;}
.y33{bottom:616.519067pt;}
.y1ce{bottom:617.249733pt;}
.yc8{bottom:617.448800pt;}
.ya7{bottom:617.652933pt;}
.y4b{bottom:619.814667pt;}
.yc7{bottom:623.111633pt;}
.y106{bottom:625.211867pt;}
.y151{bottom:628.282133pt;}
.y18{bottom:629.121867pt;}
.y32{bottom:632.519067pt;}
.y1cd{bottom:633.249733pt;}
.y1fe{bottom:635.547067pt;}
.y4a{bottom:635.814667pt;}
.ya6{bottom:637.432400pt;}
.ydc{bottom:639.762667pt;}
.y105{bottom:641.211867pt;}
.y150{bottom:644.282133pt;}
.y1cc{bottom:649.249733pt;}
.y1fd{bottom:651.547067pt;}
.y49{bottom:651.814667pt;}
.ya5{bottom:653.432400pt;}
.y104{bottom:657.211867pt;}
.y1af{bottom:658.849733pt;}
.y14f{bottom:660.282133pt;}
.y180{bottom:663.813333pt;}
.y48{bottom:667.814667pt;}
.y1cb{bottom:669.029200pt;}
.ya4{bottom:669.432400pt;}
.y1fc{bottom:671.326533pt;}
.y103{bottom:673.211867pt;}
.ydb{bottom:674.080667pt;}
.y1ae{bottom:674.849733pt;}
.y14e{bottom:676.282133pt;}
.y17f{bottom:679.813333pt;}
.y1ca{bottom:685.029200pt;}
.ya3{bottom:685.432400pt;}
.y1fb{bottom:687.326533pt;}
.y72{bottom:689.211867pt;}
.yda{bottom:690.080667pt;}
.y14d{bottom:692.282133pt;}
.y17e{bottom:699.592933pt;}
.y16{bottom:699.794400pt;}
.y1c9{bottom:701.029200pt;}
.ya2{bottom:701.432400pt;}
.y47{bottom:702.712267pt;}
.y71{bottom:705.211867pt;}
.yd9{bottom:706.080667pt;}
.y1fa{bottom:707.106133pt;}
.y14c{bottom:708.282133pt;}
.y17d{bottom:715.592933pt;}
.y1c8{bottom:717.029200pt;}
.ya1{bottom:717.432400pt;}
.y46{bottom:718.712267pt;}
.y15{bottom:719.490933pt;}
.y70{bottom:721.211867pt;}
.yd8{bottom:722.080667pt;}
.y1f9{bottom:723.106133pt;}
.y14b{bottom:724.282133pt;}
.y17c{bottom:735.372533pt;}
.y14{bottom:735.490933pt;}
.y1c7{bottom:736.808800pt;}
.y6f{bottom:737.211867pt;}
.yd7{bottom:738.080667pt;}
.y7d{bottom:738.456667pt;}
.y1f8{bottom:739.106133pt;}
.y14a{bottom:740.282133pt;}
.y196{bottom:744.796267pt;}
.y17b{bottom:751.372533pt;}
.y13{bottom:751.490933pt;}
.y1c6{bottom:752.808800pt;}
.y6e{bottom:753.211867pt;}
.yd6{bottom:754.080667pt;}
.y149{bottom:756.282133pt;}
.y1f7{bottom:758.885600pt;}
.y195{bottom:760.796267pt;}
.y17a{bottom:767.372533pt;}
.y12{bottom:767.490933pt;}
.y1c5{bottom:768.808800pt;}
.y6d{bottom:769.211867pt;}
.yd5{bottom:770.080667pt;}
.y148{bottom:772.282133pt;}
.y102{bottom:772.991467pt;}
.y1f6{bottom:774.885600pt;}
.y194{bottom:780.575733pt;}
.y11{bottom:783.490933pt;}
.y1c4{bottom:784.808800pt;}
.y6c{bottom:785.211867pt;}
.yd4{bottom:786.080667pt;}
.y147{bottom:788.282133pt;}
.y101{bottom:788.991467pt;}
.y1f5{bottom:794.665200pt;}
.y179{bottom:794.711067pt;}
.y193{bottom:796.575733pt;}
.y10{bottom:799.490933pt;}
.y1c3{bottom:800.808800pt;}
.y6b{bottom:801.211867pt;}
.yd3{bottom:802.080667pt;}
.y146{bottom:804.282133pt;}
.y100{bottom:804.991467pt;}
.y178{bottom:813.911067pt;}
.yf{bottom:815.490933pt;}
.y192{bottom:816.355200pt;}
.y1c2{bottom:816.808800pt;}
.y6a{bottom:817.211867pt;}
.yd2{bottom:818.080667pt;}
.y145{bottom:820.282133pt;}
.yff{bottom:820.991467pt;}
.y1f4{bottom:822.003733pt;}
.ye{bottom:831.705867pt;}
.y191{bottom:832.355200pt;}
.y69{bottom:833.211867pt;}
.y144{bottom:836.282133pt;}
.y1c1{bottom:836.588267pt;}
.yfe{bottom:836.991467pt;}
.yd1{bottom:841.639867pt;}
.y177{bottom:848.229200pt;}
.y190{bottom:848.355200pt;}
.y68{bottom:849.211867pt;}
.y143{bottom:852.282133pt;}
.y1c0{bottom:852.588267pt;}
.y8f{bottom:852.991467pt;}
.yd0{bottom:857.639867pt;}
.y176{bottom:864.229200pt;}
.y67{bottom:865.211867pt;}
.y142{bottom:868.282133pt;}
.y1bf{bottom:868.588267pt;}
.y8e{bottom:868.991467pt;}
.y1f3{bottom:870.255733pt;}
.y17{bottom:871.284933pt;}
.ycf{bottom:873.639867pt;}
.y18f{bottom:875.693867pt;}
.y175{bottom:880.229200pt;}
.y66{bottom:881.211867pt;}
.y1be{bottom:884.588267pt;}
.y8d{bottom:884.991467pt;}
.y1f2{bottom:886.255733pt;}
.y141{bottom:888.061733pt;}
.yce{bottom:893.419333pt;}
.y18e{bottom:894.893733pt;}
.y65{bottom:897.211867pt;}
.y174{bottom:900.008667pt;}
.y1bd{bottom:900.588267pt;}
.y8c{bottom:900.991467pt;}
.y8{bottom:902.255733pt;}
.y140{bottom:904.061733pt;}
.ycd{bottom:909.419333pt;}
.y64{bottom:913.211867pt;}
.y173{bottom:916.008667pt;}
.y1bc{bottom:916.588267pt;}
.y8b{bottom:916.991467pt;}
.y1f1{bottom:918.255733pt;}
.y13f{bottom:920.061733pt;}
.ycc{bottom:929.198933pt;}
.y63{bottom:929.211867pt;}
.y1bb{bottom:932.588267pt;}
.y7{bottom:932.794267pt;}
.y8a{bottom:932.991467pt;}
.y1f0{bottom:934.255733pt;}
.y172{bottom:935.788267pt;}
.y13e{bottom:936.061733pt;}
.ycb{bottom:945.198933pt;}
.y125{bottom:945.211867pt;}
.y62{bottom:948.991467pt;}
.y1ef{bottom:950.255733pt;}
.y171{bottom:951.788267pt;}
.y13d{bottom:952.061733pt;}
.y6{bottom:955.194267pt;}
.y1ba{bottom:959.926800pt;}
.yca{bottom:964.978400pt;}
.y61{bottom:964.991467pt;}
.y5{bottom:977.594267pt;}
.y170{bottom:979.126933pt;}
.y13c{bottom:979.400267pt;}
.yc9{bottom:980.978400pt;}
.y60{bottom:980.991467pt;}
.y4{bottom:1029.790000pt;}
.y2{bottom:1029.878133pt;}
.y1{bottom:1051.837200pt;}
.h9{height:15.272715pt;}
.h13{height:22.666667pt;}
.h10{height:24.533203pt;}
.h5{height:29.036875pt;}
.hb{height:32.531250pt;}
.h2{height:33.328125pt;}
.h11{height:35.179688pt;}
.h8{height:36.145833pt;}
.h15{height:37.031250pt;}
.hd{height:41.729987pt;}
.hc{height:41.730521pt;}
.hf{height:42.117188pt;}
.h12{height:43.343750pt;}
.h14{height:44.437500pt;}
.h7{height:45.937142pt;}
.h6{height:46.796875pt;}
.h3{height:50.604167pt;}
.h4{height:56.156250pt;}
.ha{height:61.331250pt;}
.he{height:70.530521pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:89.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:66.458800pt;}
.x1{left:94.488133pt;}
.x18{left:98.415067pt;}
.x14{left:99.988133pt;}
.x8{left:105.826800pt;}
.x10{left:107.551067pt;}
.x31{left:109.176800pt;}
.x5{left:113.385867pt;}
.x30{left:114.329867pt;}
.x32{left:119.339600pt;}
.x29{left:122.451600pt;}
.xb{left:135.820667pt;}
.x2d{left:156.566133pt;}
.x26{left:163.545333pt;}
.xc{left:179.518667pt;}
.x22{left:188.718667pt;}
.x24{left:191.385867pt;}
.x6{left:206.120667pt;}
.x16{left:232.104933pt;}
.x17{left:341.711200pt;}
.xf{left:353.196000pt;}
.x21{left:356.736533pt;}
.xa{left:421.417333pt;}
.x2e{left:423.632000pt;}
.x2b{left:424.543467pt;}
.xd{left:430.516800pt;}
.x1b{left:432.755867pt;}
.x27{left:433.853333pt;}
.x9{left:440.314933pt;}
.x1a{left:447.874000pt;}
.x2f{left:449.618267pt;}
.x28{left:470.288933pt;}
.x25{left:475.669733pt;}
.x11{left:478.748400pt;}
.x2a{left:483.495333pt;}
.xe{left:499.234267pt;}
.x4{left:506.562267pt;}
.x1f{left:525.481600pt;}
.x1e{left:532.223833pt;}
.x2c{left:549.576000pt;}
.x1c{left:567.106667pt;}
.x1d{left:590.144000pt;}
.x2{left:594.312267pt;}
.x12{left:598.234267pt;}
.x7{left:607.279067pt;}
.x13{left:622.416000pt;}
.x15{left:630.742133pt;}
.x19{left:683.665733pt;}
.x20{left:687.212533pt;}
.x3{left:693.212533pt;}
}




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