
    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_66acfd5eb085c3470463b59d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_f36972050928b3491ee214dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.060000;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_2548f81c6bb18cf9b5710e5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_fa7851c9d03d6732d762e592.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065000;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_b8addb08bd4b5dfdb985d2b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_f1180169efb924435c8fd48d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.121000;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_3e69b63b4b5228c5a37a2983.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.059000;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_f511be65b7fe0a942a0fbba7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_82b9822a6adcb594ca65a384.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121000;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_2f6d289e364c8500416bcef6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.062000;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_e93051bfc88258ceb76c7f05.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.968000;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_362052db992e195f4798d264.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.121000;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_a6aece8941696ce2b77523e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_67ed672c8b96a719523c419a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e313adc9ffc29589524db6ee.woff2')format("woff");}.fff{font-family:fff;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_38d3c73a59e2239656f4c0c9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_10e01a6230ec9a10e240e4c9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-38.928930px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:68.013991px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-18.346572px;}
.ws3{word-spacing:-18.006785px;}
.ws1{word-spacing:-16.498716px;}
.ws5{word-spacing:-15.001902px;}
.ws0{word-spacing:-12.004785px;}
.ws6{word-spacing:-12.004672px;}
.ws9{word-spacing:-10.504682px;}
.ws7{word-spacing:-6.996050px;}
.ws8{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-1.003317px;}
._a{width:1.524975px;}
._15{width:3.396939px;}
._11{width:4.720890px;}
._b{width:5.892269px;}
._9{width:7.553358px;}
._1{width:9.246621px;}
._e{width:10.582473px;}
._1d{width:12.018927px;}
._1c{width:13.207793px;}
._2{width:14.256685px;}
._4{width:15.402435px;}
._36{width:17.123437px;}
._3{width:18.142264px;}
._32{width:19.249963px;}
._c{width:20.322983px;}
._18{width:21.520186px;}
._20{width:23.088096px;}
._2a{width:24.165468px;}
._27{width:25.504494px;}
._f{width:26.545685px;}
._17{width:27.546855px;}
._0{width:28.591351px;}
._2b{width:29.762020px;}
._1a{width:30.824902px;}
._6{width:31.875355px;}
._25{width:33.054963px;}
._14{width:34.764287px;}
._1f{width:36.140858px;}
._19{width:37.291251px;}
._26{width:38.996366px;}
._13{width:40.341048px;}
._1b{width:41.550313px;}
._10{width:43.460142px;}
._12{width:44.758698px;}
._d{width:46.013354px;}
._2d{width:47.401035px;}
._1e{width:49.139265px;}
._28{width:50.317936px;}
._22{width:51.768560px;}
._7{width:53.704795px;}
._2e{width:54.919029px;}
._23{width:56.189802px;}
._24{width:61.882283px;}
._35{width:65.649625px;}
._2c{width:68.950317px;}
._31{width:75.032875px;}
._29{width:79.655939px;}
._37{width:87.994835px;}
._8{width:92.686917px;}
._34{width:94.201853px;}
._30{width:101.702583px;}
._16{width:104.129655px;}
._33{width:110.305320px;}
._21{width:755.970630px;}
._2f{width:849.881322px;}
.fc3{color:rgb(1,52,44);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs8{font-size:18.675507px;}
.fs7{font-size:27.984200px;}
.fs9{font-size:29.750527px;}
.fsa{font-size:42.018727px;}
.fs6{font-size:48.018688px;}
.fs3{font-size:48.019141px;}
.fs4{font-size:54.020354px;}
.fs5{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y15f{bottom:3.849181px;}
.y159{bottom:4.994094px;}
.y15b{bottom:5.135862px;}
.y15d{bottom:5.139904px;}
.y165{bottom:5.617678px;}
.y167{bottom:8.020639px;}
.y14e{bottom:9.017648px;}
.y57{bottom:9.031099px;}
.y5c{bottom:9.101390px;}
.y9a{bottom:9.102550px;}
.y112{bottom:9.131807px;}
.y9d{bottom:9.150626px;}
.y55{bottom:9.153223px;}
.y95{bottom:9.166220px;}
.yc3{bottom:9.186596px;}
.y97{bottom:9.193521px;}
.y155{bottom:9.195461px;}
.yc0{bottom:9.196949px;}
.ybc{bottom:9.207144px;}
.y14{bottom:9.216281px;}
.y5a{bottom:9.292394px;}
.y157{bottom:9.293459px;}
.y17{bottom:9.304699px;}
.y151{bottom:9.320168px;}
.y93{bottom:9.341177px;}
.ybe{bottom:9.341968px;}
.y164{bottom:15.534520px;}
.y14d{bottom:25.024028px;}
.y99{bottom:25.108931px;}
.y111{bottom:25.138187px;}
.y9c{bottom:25.157007px;}
.yc2{bottom:25.192976px;}
.y13{bottom:25.222661px;}
.y59{bottom:25.298774px;}
.y16{bottom:25.311079px;}
.y150{bottom:25.326548px;}
.y163{bottom:25.451363px;}
.y160{bottom:29.655019px;}
.y15c{bottom:30.375019px;}
.y162{bottom:35.368205px;}
.y161{bottom:45.285048px;}
.y15a{bottom:48.735019px;}
.y132{bottom:50.678762px;}
.y15e{bottom:50.895019px;}
.y107{bottom:54.994334px;}
.y158{bottom:66.015018px;}
.y2c{bottom:68.585587px;}
.y58{bottom:72.855018px;}
.y131{bottom:73.187243px;}
.y106{bottom:77.502815px;}
.y100{bottom:81.134228px;}
.y2b{bottom:91.094067px;}
.y130{bottom:95.695724px;}
.y105{bottom:100.011296px;}
.yff{bottom:103.642709px;}
.y2a{bottom:113.602548px;}
.y12f{bottom:118.204204px;}
.y104{bottom:122.519776px;}
.ya7{bottom:123.197901px;}
.yfe{bottom:126.151190px;}
.y166{bottom:135.855015px;}
.y29{bottom:136.111028px;}
.y12e{bottom:140.712685px;}
.y103{bottom:145.028257px;}
.ya6{bottom:145.706382px;}
.yfd{bottom:148.659670px;}
.y91{bottom:149.559678px;}
.y14b{bottom:152.231079px;}
.y28{bottom:158.619509px;}
.y12d{bottom:163.221166px;}
.y96{bottom:166.455014px;}
.ya5{bottom:168.214862px;}
.yfc{bottom:171.168151px;}
.y90{bottom:172.068158px;}
.ybd{bottom:172.215014px;}
.y14a{bottom:174.739560px;}
.yc7{bottom:180.003878px;}
.y27{bottom:181.127990px;}
.y12c{bottom:185.729646px;}
.ya4{bottom:190.723343px;}
.y156{bottom:190.935013px;}
.yfb{bottom:193.676632px;}
.y8f{bottom:194.576639px;}
.y149{bottom:197.248040px;}
.y26{bottom:203.636470px;}
.yc6{bottom:204.763206px;}
.y56{bottom:204.975012px;}
.y12b{bottom:208.238127px;}
.ya3{bottom:213.231824px;}
.yfa{bottom:216.185112px;}
.y8e{bottom:217.085120px;}
.y148{bottom:219.756521px;}
.y152{bottom:221.547038px;}
.y25{bottom:226.144951px;}
.y12a{bottom:230.746608px;}
.ya2{bottom:235.740304px;}
.yf9{bottom:238.693593px;}
.y8d{bottom:239.593600px;}
.y147{bottom:242.265002px;}
.y102{bottom:247.454279px;}
.y24{bottom:248.653432px;}
.y20{bottom:250.904620px;}
.y129{bottom:253.255088px;}
.ya1{bottom:258.248785px;}
.yf8{bottom:261.202074px;}
.y8c{bottom:262.102081px;}
.y146{bottom:264.773482px;}
.y154{bottom:267.975010px;}
.y101{bottom:269.962760px;}
.y23{bottom:271.161912px;}
.y1f{bottom:273.413100px;}
.y128{bottom:275.763569px;}
.ya0{bottom:280.757266px;}
.yf7{bottom:283.710554px;}
.y8b{bottom:284.610562px;}
.y145{bottom:287.281963px;}
.y22{bottom:293.670393px;}
.y1e{bottom:295.921581px;}
.y127{bottom:298.272050px;}
.y153{bottom:301.762882px;}
.y9f{bottom:303.265746px;}
.yf6{bottom:306.219035px;}
.y8a{bottom:307.119042px;}
.yc5{bottom:312.650018px;}
.y21{bottom:316.178874px;}
.y1d{bottom:318.430062px;}
.y126{bottom:320.780530px;}
.yf5{bottom:328.727516px;}
.y89{bottom:329.627523px;}
.y15{bottom:338.175007px;}
.y1c{bottom:340.938542px;}
.y125{bottom:343.289011px;}
.y9e{bottom:346.589664px;}
.y88{bottom:352.136003px;}
.yf4{bottom:360.968229px;}
.y1b{bottom:363.447023px;}
.y124{bottom:365.797492px;}
.y87{bottom:374.644484px;}
.y9b{bottom:382.095005px;}
.yf3{bottom:383.476709px;}
.y1a{bottom:385.955504px;}
.y123{bottom:388.305972px;}
.y86{bottom:397.152965px;}
.yc9{bottom:398.420873px;}
.yf2{bottom:405.985190px;}
.y19{bottom:408.463984px;}
.y122{bottom:410.814453px;}
.y85{bottom:419.661445px;}
.yc8{bottom:423.180201px;}
.yf1{bottom:428.493671px;}
.y18{bottom:430.972465px;}
.y121{bottom:433.322934px;}
.ybb{bottom:437.535002px;}
.y84{bottom:442.169926px;}
.y14c{bottom:445.815002px;}
.y53{bottom:450.529047px;}
.yf0{bottom:451.002151px;}
.y184{bottom:455.585585px;}
.y120{bottom:455.831414px;}
.y7f{bottom:459.452024px;}
.y12{bottom:460.935001px;}
.y83{bottom:464.678407px;}
.ye3{bottom:470.209353px;}
.y52{bottom:473.037527px;}
.yef{bottom:473.510632px;}
.y183{bottom:478.094065px;}
.y11f{bottom:478.339895px;}
.y7e{bottom:481.960505px;}
.y82{bottom:487.186887px;}
.ye2{bottom:492.717834px;}
.y51{bottom:495.546008px;}
.yee{bottom:496.019113px;}
.y182{bottom:500.602546px;}
.y7d{bottom:504.468986px;}
.y4c{bottom:506.641423px;}
.y81{bottom:509.695368px;}
.ye1{bottom:515.226314px;}
.y11e{bottom:518.052923px;}
.y50{bottom:518.054489px;}
.yed{bottom:518.527593px;}
.y181{bottom:523.111027px;}
.y7c{bottom:526.977466px;}
.y4b{bottom:529.149904px;}
.y80{bottom:532.203849px;}
.ye0{bottom:537.734795px;}
.y11d{bottom:540.561403px;}
.y4f{bottom:540.562969px;}
.y180{bottom:545.619507px;}
.y7b{bottom:549.485947px;}
.y4a{bottom:551.658385px;}
.ybf{bottom:555.254998px;}
.ydf{bottom:560.243276px;}
.y11c{bottom:563.069884px;}
.y4e{bottom:563.071450px;}
.y17f{bottom:568.127988px;}
.y7a{bottom:571.994428px;}
.y49{bottom:574.166865px;}
.y61{bottom:576.016359px;}
.yde{bottom:582.751756px;}
.y11b{bottom:585.578365px;}
.y4d{bottom:585.579931px;}
.y17e{bottom:590.636469px;}
.y79{bottom:594.502908px;}
.y48{bottom:596.675346px;}
.ydd{bottom:605.260237px;}
.y11a{bottom:608.086845px;}
.y17d{bottom:613.144949px;}
.y92{bottom:613.574995px;}
.y78{bottom:617.011389px;}
.y47{bottom:619.183827px;}
.y34{bottom:619.580432px;}
.ydc{bottom:627.768718px;}
.y119{bottom:630.595326px;}
.y5e{bottom:633.894168px;}
.y17c{bottom:635.653430px;}
.y77{bottom:639.519870px;}
.y46{bottom:641.692307px;}
.y33{bottom:642.088912px;}
.ydb{bottom:650.277198px;}
.y118{bottom:653.103807px;}
.y17b{bottom:658.161911px;}
.y14f{bottom:659.654993px;}
.y76{bottom:662.028350px;}
.y45{bottom:664.200788px;}
.y32{bottom:664.597393px;}
.yda{bottom:672.785679px;}
.y117{bottom:675.612287px;}
.y17a{bottom:680.670391px;}
.y42{bottom:682.212430px;}
.y75{bottom:684.536831px;}
.y44{bottom:686.709269px;}
.y31{bottom:687.105874px;}
.yd9{bottom:695.294160px;}
.y116{bottom:698.120768px;}
.y179{bottom:703.178872px;}
.y41{bottom:704.720910px;}
.y74{bottom:707.045311px;}
.y43{bottom:709.217749px;}
.y30{bottom:709.614354px;}
.yba{bottom:715.228705px;}
.yd8{bottom:717.802640px;}
.y115{bottom:720.629249px;}
.y144{bottom:724.616742px;}
.y178{bottom:725.687353px;}
.y40{bottom:727.229391px;}
.y73{bottom:729.553792px;}
.y2f{bottom:732.122835px;}
.yb9{bottom:737.737186px;}
.y143{bottom:747.125222px;}
.y54{bottom:747.854990px;}
.y177{bottom:748.195833px;}
.y3f{bottom:749.737872px;}
.y72{bottom:752.062273px;}
.y2e{bottom:754.631316px;}
.yb8{bottom:760.245666px;}
.yd7{bottom:762.819602px;}
.y113{bottom:766.692648px;}
.y142{bottom:769.633703px;}
.y176{bottom:770.704314px;}
.y3e{bottom:772.246352px;}
.y71{bottom:774.570753px;}
.y11{bottom:776.906887px;}
.y2d{bottom:777.139796px;}
.yb7{bottom:782.754147px;}
.yd6{bottom:785.328082px;}
.y141{bottom:792.142184px;}
.y3d{bottom:794.754833px;}
.y70{bottom:797.079234px;}
.y10{bottom:799.415368px;}
.yb6{bottom:805.262628px;}
.y10f{bottom:812.282948px;}
.y185{bottom:814.516925px;}
.y140{bottom:814.650664px;}
.yd{bottom:818.697649px;}
.y6f{bottom:819.587715px;}
.yf{bottom:821.923848px;}
.yb5{bottom:827.771108px;}
.y10e{bottom:834.791429px;}
.y13f{bottom:837.159145px;}
.y6e{bottom:842.096195px;}
.y5d{bottom:843.069161px;}
.yc{bottom:843.456978px;}
.ye{bottom:844.432329px;}
.yb4{bottom:850.279589px;}
.y10d{bottom:857.299909px;}
.y175{bottom:857.935424px;}
.yd5{bottom:859.468258px;}
.y13e{bottom:859.667626px;}
.y6d{bottom:864.604676px;}
.yb3{bottom:872.788070px;}
.y98{bottom:873.854984px;}
.y10c{bottom:879.808390px;}
.y174{bottom:880.443905px;}
.y5b{bottom:881.054984px;}
.yd4{bottom:881.976738px;}
.y13d{bottom:882.176106px;}
.yb{bottom:885.215212px;}
.y6c{bottom:887.113157px;}
.yb2{bottom:895.296550px;}
.y10b{bottom:902.316871px;}
.yc1{bottom:902.654983px;}
.y173{bottom:902.952386px;}
.yd3{bottom:904.485219px;}
.y13c{bottom:904.684587px;}
.ya{bottom:907.723692px;}
.y6b{bottom:909.621637px;}
.yb1{bottom:917.805031px;}
.y10a{bottom:924.825351px;}
.y172{bottom:925.460866px;}
.yd2{bottom:926.993700px;}
.y13b{bottom:927.193068px;}
.y9{bottom:930.232173px;}
.y6a{bottom:932.130118px;}
.y69{bottom:937.635101px;}
.yb0{bottom:940.313512px;}
.y171{bottom:947.969347px;}
.yd1{bottom:949.502180px;}
.y13a{bottom:949.701548px;}
.y8{bottom:952.740654px;}
.y68{bottom:960.143582px;}
.yaf{bottom:962.821992px;}
.y109{bottom:969.842313px;}
.yec{bottom:970.170892px;}
.y170{bottom:970.477828px;}
.yd0{bottom:972.010661px;}
.y139{bottom:972.210029px;}
.y7{bottom:975.249134px;}
.y67{bottom:982.652062px;}
.yae{bottom:985.330473px;}
.y108{bottom:992.350793px;}
.yeb{bottom:992.679372px;}
.y16f{bottom:992.986308px;}
.ycf{bottom:994.519142px;}
.y138{bottom:994.718510px;}
.y6{bottom:997.757615px;}
.y60{bottom:1001.827462px;}
.y66{bottom:1005.160543px;}
.yad{bottom:1007.838954px;}
.yea{bottom:1015.187853px;}
.y16e{bottom:1015.494789px;}
.yce{bottom:1017.027622px;}
.y137{bottom:1017.226990px;}
.y3c{bottom:1018.968523px;}
.y5{bottom:1020.266096px;}
.y65{bottom:1027.669024px;}
.yac{bottom:1030.347434px;}
.ye9{bottom:1037.696334px;}
.y16d{bottom:1038.003270px;}
.ycd{bottom:1039.536103px;}
.y136{bottom:1039.735471px;}
.y3b{bottom:1041.477003px;}
.y4{bottom:1042.774576px;}
.y64{bottom:1050.177504px;}
.yab{bottom:1052.855915px;}
.ye8{bottom:1060.204814px;}
.y16c{bottom:1060.511750px;}
.ycc{bottom:1062.044584px;}
.y135{bottom:1062.243951px;}
.y3a{bottom:1063.985484px;}
.y3{bottom:1065.283057px;}
.y63{bottom:1072.685985px;}
.yaa{bottom:1075.364396px;}
.ye7{bottom:1082.713295px;}
.y16b{bottom:1083.020231px;}
.ycb{bottom:1084.553064px;}
.y134{bottom:1084.752432px;}
.y39{bottom:1086.493964px;}
.y62{bottom:1095.194466px;}
.ya9{bottom:1097.872876px;}
.ye6{bottom:1105.221776px;}
.y16a{bottom:1105.528712px;}
.yca{bottom:1107.061545px;}
.y133{bottom:1107.260913px;}
.y35{bottom:1107.602543px;}
.y38{bottom:1109.002445px;}
.y110{bottom:1127.654974px;}
.ye5{bottom:1127.730256px;}
.y169{bottom:1128.037192px;}
.y37{bottom:1131.510926px;}
.y94{bottom:1135.214973px;}
.ya8{bottom:1136.802167px;}
.y5f{bottom:1139.229420px;}
.y114{bottom:1147.641395px;}
.yc4{bottom:1149.263375px;}
.ye4{bottom:1150.238737px;}
.y168{bottom:1150.545673px;}
.y36{bottom:1154.019406px;}
.y2{bottom:1168.408029px;}
.h16{height:9.000000px;}
.h13{height:12.959999px;}
.h15{height:13.319999px;}
.h17{height:15.033783px;}
.h1a{height:19.439999px;}
.ha{height:22.319999px;}
.hd{height:22.679999px;}
.h14{height:22.751155px;}
.h19{height:24.187179px;}
.h1b{height:34.161225px;}
.he{height:38.159998px;}
.h6{height:38.519998px;}
.hf{height:39.039562px;}
.h12{height:39.087212px;}
.h7{height:39.087581px;}
.hb{height:42.016749px;}
.h8{height:43.972568px;}
.h11{height:48.786186px;}
.h18{height:53.639998px;}
.h10{height:53.653825px;}
.h4{height:53.719820px;}
.h1c{height:54.596571px;}
.h9{height:57.745506px;}
.h5{height:59.638470px;}
.h3{height:69.553366px;}
.hc{height:125.759497px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w18{width:30.959999px;}
.w1a{width:46.079998px;}
.w17{width:62.279997px;}
.w16{width:65.879997px;}
.w15{width:66.239997px;}
.w13{width:109.439995px;}
.w14{width:186.479992px;}
.w19{width:200.519992px;}
.w5{width:213.479991px;}
.wa{width:225.359991px;}
.w4{width:233.279990px;}
.w7{width:299.519988px;}
.w8{width:302.399987px;}
.w9{width:323.639987px;}
.wf{width:327.599986px;}
.w6{width:341.639986px;}
.we{width:348.479985px;}
.wb{width:351.719985px;}
.wc{width:355.679985px;}
.w11{width:365.399985px;}
.wd{width:366.479985px;}
.w3{width:369.719985px;}
.w10{width:381.599984px;}
.w12{width:383.399984px;}
.w2{width:385.559984px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:1.198021px;}
.x2{left:43.552352px;}
.x6{left:45.719998px;}
.xc{left:48.999543px;}
.x1{left:51.852354px;}
.x8{left:56.283711px;}
.xe{left:59.759998px;}
.xd{left:60.839997px;}
.x9{left:71.600029px;}
.xb{left:73.121086px;}
.x13{left:119.519995px;}
.x14{left:127.079995px;}
.x3{left:467.712359px;}
.x7{left:469.079980px;}
.x4{left:470.519980px;}
.x12{left:496.079979px;}
.xa{left:497.283268px;}
.x5{left:498.384054px;}
.x11{left:618.479974px;}
.x10{left:620.279974px;}
@media print{
.v2{vertical-align:-34.603493pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.456881pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-16.308064pt;}
.ws3{word-spacing:-16.006031pt;}
.ws1{word-spacing:-14.665525pt;}
.ws5{word-spacing:-13.335024pt;}
.ws0{word-spacing:-10.670920pt;}
.ws6{word-spacing:-10.670820pt;}
.ws9{word-spacing:-9.337495pt;}
.ws7{word-spacing:-6.218711pt;}
.ws8{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-0.891837pt;}
._a{width:1.355533pt;}
._15{width:3.019501pt;}
._11{width:4.196347pt;}
._b{width:5.237573pt;}
._9{width:6.714096pt;}
._1{width:8.219219pt;}
._e{width:9.406643pt;}
._1d{width:10.683491pt;}
._1c{width:11.740261pt;}
._2{width:12.672609pt;}
._4{width:13.691054pt;}
._36{width:15.220833pt;}
._3{width:16.126457pt;}
._32{width:17.111078pt;}
._c{width:18.064874pt;}
._18{width:19.129054pt;}
._20{width:20.522752pt;}
._2a{width:21.480416pt;}
._27{width:22.670661pt;}
._f{width:23.596165pt;}
._17{width:24.486093pt;}
._0{width:25.414534pt;}
._2b{width:26.455129pt;}
._1a{width:27.399913pt;}
._6{width:28.333649pt;}
._25{width:29.382190pt;}
._14{width:30.901589pt;}
._1f{width:32.125208pt;}
._19{width:33.147779pt;}
._26{width:34.663437pt;}
._13{width:35.858709pt;}
._1b{width:36.933612pt;}
._10{width:38.631237pt;}
._12{width:39.785509pt;}
._d{width:40.900759pt;}
._2d{width:42.134253pt;}
._1e{width:43.679347pt;}
._28{width:44.727054pt;}
._22{width:46.016498pt;}
._7{width:47.737596pt;}
._2e{width:48.816915pt;}
._23{width:49.946491pt;}
._24{width:55.006474pt;}
._35{width:58.355222pt;}
._2c{width:61.289171pt;}
._31{width:66.695889pt;}
._29{width:70.805279pt;}
._37{width:78.217631pt;}
._8{width:82.388370pt;}
._34{width:83.734981pt;}
._30{width:90.402296pt;}
._16{width:92.559693pt;}
._33{width:98.049173pt;}
._21{width:671.973893pt;}
._2f{width:755.450064pt;}
.fs8{font-size:16.600451pt;}
.fs7{font-size:24.874844pt;}
.fs9{font-size:26.444913pt;}
.fsa{font-size:37.349980pt;}
.fs6{font-size:42.683279pt;}
.fs3{font-size:42.683681pt;}
.fs4{font-size:48.018092pt;}
.fs5{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y15f{bottom:3.421494pt;}
.y159{bottom:4.439195pt;}
.y15b{bottom:4.565210pt;}
.y15d{bottom:4.568804pt;}
.y165{bottom:4.993491pt;}
.y167{bottom:7.129457pt;}
.y14e{bottom:8.015687pt;}
.y57{bottom:8.027644pt;}
.y5c{bottom:8.090124pt;}
.y9a{bottom:8.091156pt;}
.y112{bottom:8.117162pt;}
.y9d{bottom:8.133890pt;}
.y55{bottom:8.136199pt;}
.y95{bottom:8.147751pt;}
.yc3{bottom:8.165863pt;}
.y97{bottom:8.172019pt;}
.y155{bottom:8.173743pt;}
.yc0{bottom:8.175066pt;}
.ybc{bottom:8.184128pt;}
.y14{bottom:8.192250pt;}
.y5a{bottom:8.259906pt;}
.y157{bottom:8.260853pt;}
.y17{bottom:8.270843pt;}
.y151{bottom:8.284593pt;}
.y93{bottom:8.303269pt;}
.ybe{bottom:8.303972pt;}
.y164{bottom:13.808462pt;}
.y14d{bottom:22.243581pt;}
.y99{bottom:22.319050pt;}
.y111{bottom:22.345055pt;}
.y9c{bottom:22.361784pt;}
.yc2{bottom:22.393757pt;}
.y13{bottom:22.420143pt;}
.y59{bottom:22.487800pt;}
.y16{bottom:22.498737pt;}
.y150{bottom:22.512487pt;}
.y163{bottom:22.623434pt;}
.y160{bottom:26.360017pt;}
.y15c{bottom:27.000017pt;}
.y162{bottom:31.438405pt;}
.y161{bottom:40.253376pt;}
.y15a{bottom:43.320017pt;}
.y132{bottom:45.047789pt;}
.y15e{bottom:45.240017pt;}
.y107{bottom:48.883853pt;}
.y158{bottom:58.680016pt;}
.y2c{bottom:60.964966pt;}
.y58{bottom:64.760016pt;}
.y131{bottom:65.055327pt;}
.y106{bottom:68.891391pt;}
.y100{bottom:72.119314pt;}
.y2b{bottom:80.972504pt;}
.y130{bottom:85.062866pt;}
.y105{bottom:88.898929pt;}
.yff{bottom:92.126852pt;}
.y2a{bottom:100.980043pt;}
.y12f{bottom:105.070404pt;}
.y104{bottom:108.906468pt;}
.ya7{bottom:109.509245pt;}
.yfe{bottom:112.134391pt;}
.y166{bottom:120.760013pt;}
.y29{bottom:120.987581pt;}
.y12e{bottom:125.077942pt;}
.y103{bottom:128.914006pt;}
.ya6{bottom:129.516784pt;}
.yfd{bottom:132.141929pt;}
.y91{bottom:132.941936pt;}
.y14b{bottom:135.316515pt;}
.y28{bottom:140.995119pt;}
.y12d{bottom:145.085481pt;}
.y96{bottom:147.960012pt;}
.ya5{bottom:149.524322pt;}
.yfc{bottom:152.149468pt;}
.y90{bottom:152.949474pt;}
.ybd{bottom:153.080012pt;}
.y14a{bottom:155.324053pt;}
.yc7{bottom:160.003447pt;}
.y27{bottom:161.002658pt;}
.y12c{bottom:165.093019pt;}
.ya4{bottom:169.531860pt;}
.y156{bottom:169.720011pt;}
.yfb{bottom:172.157006pt;}
.y8f{bottom:172.957012pt;}
.y149{bottom:175.331591pt;}
.y26{bottom:181.010196pt;}
.yc6{bottom:182.011739pt;}
.y56{bottom:182.200011pt;}
.y12b{bottom:185.100557pt;}
.ya3{bottom:189.539399pt;}
.yfa{bottom:192.164544pt;}
.y8e{bottom:192.964551pt;}
.y148{bottom:195.339130pt;}
.y152{bottom:196.930700pt;}
.y25{bottom:201.017734pt;}
.y12a{bottom:205.108096pt;}
.ya2{bottom:209.546937pt;}
.yf9{bottom:212.172083pt;}
.y8d{bottom:212.972089pt;}
.y147{bottom:215.346668pt;}
.y102{bottom:219.959359pt;}
.y24{bottom:221.025273pt;}
.y20{bottom:223.026329pt;}
.y129{bottom:225.115634pt;}
.ya1{bottom:229.554476pt;}
.yf8{bottom:232.179621pt;}
.y8c{bottom:232.979627pt;}
.y146{bottom:235.354207pt;}
.y154{bottom:238.200008pt;}
.y101{bottom:239.966898pt;}
.y23{bottom:241.032811pt;}
.y1f{bottom:243.033867pt;}
.y128{bottom:245.123173pt;}
.ya0{bottom:249.562014pt;}
.yf7{bottom:252.187159pt;}
.y8b{bottom:252.987166pt;}
.y145{bottom:255.361745pt;}
.y22{bottom:261.040349pt;}
.y1e{bottom:263.041405pt;}
.y127{bottom:265.130711pt;}
.y153{bottom:268.233673pt;}
.y9f{bottom:269.569552pt;}
.yf6{bottom:272.194698pt;}
.y8a{bottom:272.994704pt;}
.yc5{bottom:277.911127pt;}
.y21{bottom:281.047888pt;}
.y1d{bottom:283.048944pt;}
.y126{bottom:285.138249pt;}
.yf5{bottom:292.202236pt;}
.y89{bottom:293.002243pt;}
.y15{bottom:300.600006pt;}
.y1c{bottom:303.056482pt;}
.y125{bottom:305.145788pt;}
.y9e{bottom:308.079702pt;}
.y88{bottom:313.009781pt;}
.yf4{bottom:320.860648pt;}
.y1b{bottom:323.064020pt;}
.y124{bottom:325.153326pt;}
.y87{bottom:333.017319pt;}
.y9b{bottom:339.640004pt;}
.yf3{bottom:340.868186pt;}
.y1a{bottom:343.071559pt;}
.y123{bottom:345.160864pt;}
.y86{bottom:353.024858pt;}
.yc9{bottom:354.151887pt;}
.yf2{bottom:360.875724pt;}
.y19{bottom:363.079097pt;}
.y122{bottom:365.168403pt;}
.y85{bottom:373.032396pt;}
.yc8{bottom:376.160179pt;}
.yf1{bottom:380.883263pt;}
.y18{bottom:383.086636pt;}
.y121{bottom:385.175941pt;}
.ybb{bottom:388.920002pt;}
.y84{bottom:393.039934pt;}
.y14c{bottom:396.280002pt;}
.y53{bottom:400.470264pt;}
.yf0{bottom:400.890801pt;}
.y184{bottom:404.964964pt;}
.y120{bottom:405.183479pt;}
.y7f{bottom:408.401799pt;}
.y12{bottom:409.720001pt;}
.y83{bottom:413.047473pt;}
.ye3{bottom:417.963869pt;}
.y52{bottom:420.477802pt;}
.yef{bottom:420.898340pt;}
.y183{bottom:424.972503pt;}
.y11f{bottom:425.191018pt;}
.y7e{bottom:428.409338pt;}
.y82{bottom:433.055011pt;}
.ye2{bottom:437.971408pt;}
.y51{bottom:440.485340pt;}
.yee{bottom:440.905878pt;}
.y182{bottom:444.980041pt;}
.y7d{bottom:448.416876pt;}
.y4c{bottom:450.347932pt;}
.y81{bottom:453.062549pt;}
.ye1{bottom:457.978946pt;}
.y11e{bottom:460.491487pt;}
.y50{bottom:460.492879pt;}
.yed{bottom:460.913416pt;}
.y181{bottom:464.987579pt;}
.y7c{bottom:468.424414pt;}
.y4b{bottom:470.355470pt;}
.y80{bottom:473.070088pt;}
.ye0{bottom:477.986484pt;}
.y11d{bottom:480.499025pt;}
.y4f{bottom:480.500417pt;}
.y180{bottom:484.995118pt;}
.y7b{bottom:488.431953pt;}
.y4a{bottom:490.363009pt;}
.ybf{bottom:493.559998pt;}
.ydf{bottom:497.994023pt;}
.y11c{bottom:500.506563pt;}
.y4e{bottom:500.507955pt;}
.y17f{bottom:505.002656pt;}
.y7a{bottom:508.439491pt;}
.y49{bottom:510.370547pt;}
.y61{bottom:512.014541pt;}
.yde{bottom:518.001561pt;}
.y11b{bottom:520.514102pt;}
.y4d{bottom:520.515494pt;}
.y17e{bottom:525.010194pt;}
.y79{bottom:528.447030pt;}
.y48{bottom:530.378085pt;}
.ydd{bottom:538.009100pt;}
.y11a{bottom:540.521640pt;}
.y17d{bottom:545.017733pt;}
.y92{bottom:545.399996pt;}
.y78{bottom:548.454568pt;}
.y47{bottom:550.385624pt;}
.y34{bottom:550.738161pt;}
.ydc{bottom:558.016638pt;}
.y119{bottom:560.529179pt;}
.y5e{bottom:563.461483pt;}
.y17c{bottom:565.025271pt;}
.y77{bottom:568.462106pt;}
.y46{bottom:570.393162pt;}
.y33{bottom:570.745700pt;}
.ydb{bottom:578.024176pt;}
.y118{bottom:580.536717pt;}
.y17b{bottom:585.032810pt;}
.y14f{bottom:586.359994pt;}
.y76{bottom:588.469645pt;}
.y45{bottom:590.400701pt;}
.y32{bottom:590.753238pt;}
.yda{bottom:598.031715pt;}
.y117{bottom:600.544255pt;}
.y17a{bottom:605.040348pt;}
.y42{bottom:606.411049pt;}
.y75{bottom:608.477183pt;}
.y44{bottom:610.408239pt;}
.y31{bottom:610.760776pt;}
.yd9{bottom:618.039253pt;}
.y116{bottom:620.551794pt;}
.y179{bottom:625.047886pt;}
.y41{bottom:626.418587pt;}
.y74{bottom:628.484721pt;}
.y43{bottom:630.415777pt;}
.y30{bottom:630.768315pt;}
.yba{bottom:635.758849pt;}
.yd8{bottom:638.046791pt;}
.y115{bottom:640.559332pt;}
.y144{bottom:644.103770pt;}
.y178{bottom:645.055425pt;}
.y40{bottom:646.426125pt;}
.y73{bottom:648.492260pt;}
.y2f{bottom:650.775853pt;}
.yb9{bottom:655.766387pt;}
.y143{bottom:664.111309pt;}
.y54{bottom:664.759991pt;}
.y177{bottom:665.062963pt;}
.y3f{bottom:666.433664pt;}
.y72{bottom:668.499798pt;}
.y2e{bottom:670.783392pt;}
.yb8{bottom:675.773926pt;}
.yd7{bottom:678.061868pt;}
.y113{bottom:681.504576pt;}
.y142{bottom:684.118847pt;}
.y176{bottom:685.070501pt;}
.y3e{bottom:686.441202pt;}
.y71{bottom:688.507336pt;}
.y11{bottom:690.583900pt;}
.y2d{bottom:690.790930pt;}
.yb7{bottom:695.781464pt;}
.yd6{bottom:698.069406pt;}
.y141{bottom:704.126385pt;}
.y3d{bottom:706.448740pt;}
.y70{bottom:708.514875pt;}
.y10{bottom:710.591438pt;}
.yb6{bottom:715.789002pt;}
.y10f{bottom:722.029287pt;}
.y185{bottom:724.015044pt;}
.y140{bottom:724.133924pt;}
.yd{bottom:727.731244pt;}
.y6f{bottom:728.522413pt;}
.yf{bottom:730.598976pt;}
.yb5{bottom:735.796541pt;}
.y10e{bottom:742.036825pt;}
.y13f{bottom:744.141462pt;}
.y6e{bottom:748.529952pt;}
.y5d{bottom:749.394810pt;}
.yc{bottom:749.739536pt;}
.ye{bottom:750.606515pt;}
.yb4{bottom:755.804079pt;}
.y10d{bottom:762.044364pt;}
.y175{bottom:762.609266pt;}
.yd5{bottom:763.971784pt;}
.y13e{bottom:764.149000pt;}
.y6d{bottom:768.537490pt;}
.yb3{bottom:775.811618pt;}
.y98{bottom:776.759986pt;}
.y10c{bottom:782.051902pt;}
.y174{bottom:782.616805pt;}
.y5b{bottom:783.159986pt;}
.yd4{bottom:783.979323pt;}
.y13d{bottom:784.156539pt;}
.yb{bottom:786.857966pt;}
.y6c{bottom:788.545028pt;}
.yb2{bottom:795.819156pt;}
.y10b{bottom:802.059441pt;}
.yc1{bottom:802.359985pt;}
.y173{bottom:802.624343pt;}
.yd3{bottom:803.986861pt;}
.y13c{bottom:804.164077pt;}
.ya{bottom:806.865504pt;}
.y6b{bottom:808.552567pt;}
.yb1{bottom:815.826694pt;}
.y10a{bottom:822.066979pt;}
.y172{bottom:822.631881pt;}
.yd2{bottom:823.994400pt;}
.y13b{bottom:824.171616pt;}
.y9{bottom:826.873043pt;}
.y6a{bottom:828.560105pt;}
.y69{bottom:833.453423pt;}
.yb0{bottom:835.834233pt;}
.y171{bottom:842.639420pt;}
.yd1{bottom:844.001938pt;}
.y13a{bottom:844.179154pt;}
.y8{bottom:846.880581pt;}
.y68{bottom:853.460962pt;}
.yaf{bottom:855.841771pt;}
.y109{bottom:862.082056pt;}
.yec{bottom:862.374126pt;}
.y170{bottom:862.646958pt;}
.yd0{bottom:864.009476pt;}
.y139{bottom:864.186692pt;}
.y7{bottom:866.888119pt;}
.y67{bottom:873.468500pt;}
.yae{bottom:875.849309pt;}
.y108{bottom:882.089594pt;}
.yeb{bottom:882.381664pt;}
.y16f{bottom:882.654496pt;}
.ycf{bottom:884.017015pt;}
.y138{bottom:884.194231pt;}
.y6{bottom:886.895658pt;}
.y60{bottom:890.513300pt;}
.y66{bottom:893.476038pt;}
.yad{bottom:895.856848pt;}
.yea{bottom:902.389203pt;}
.y16e{bottom:902.662035pt;}
.yce{bottom:904.024553pt;}
.y137{bottom:904.201769pt;}
.y3c{bottom:905.749798pt;}
.y5{bottom:906.903196pt;}
.y65{bottom:913.483577pt;}
.yac{bottom:915.864386pt;}
.ye9{bottom:922.396741pt;}
.y16d{bottom:922.669573pt;}
.ycd{bottom:924.032091pt;}
.y136{bottom:924.209307pt;}
.y3b{bottom:925.757336pt;}
.y4{bottom:926.910734pt;}
.y64{bottom:933.491115pt;}
.yab{bottom:935.871925pt;}
.ye8{bottom:942.404279pt;}
.y16c{bottom:942.677111pt;}
.ycc{bottom:944.039630pt;}
.y135{bottom:944.216846pt;}
.y3a{bottom:945.764875pt;}
.y3{bottom:946.918273pt;}
.y63{bottom:953.498653pt;}
.yaa{bottom:955.879463pt;}
.ye7{bottom:962.411818pt;}
.y16b{bottom:962.684650pt;}
.ycb{bottom:964.047168pt;}
.y134{bottom:964.224384pt;}
.y39{bottom:965.772413pt;}
.y62{bottom:973.506192pt;}
.ya9{bottom:975.887001pt;}
.ye6{bottom:982.419356pt;}
.y16a{bottom:982.692188pt;}
.yca{bottom:984.054707pt;}
.y133{bottom:984.231923pt;}
.y35{bottom:984.535594pt;}
.y38{bottom:985.779951pt;}
.y110{bottom:1002.359977pt;}
.ye5{bottom:1002.426895pt;}
.y169{bottom:1002.699727pt;}
.y37{bottom:1005.787490pt;}
.y94{bottom:1009.079976pt;}
.ya8{bottom:1010.490815pt;}
.y5f{bottom:1012.648373pt;}
.y114{bottom:1020.125685pt;}
.yc4{bottom:1021.567445pt;}
.ye4{bottom:1022.434433pt;}
.y168{bottom:1022.707265pt;}
.y36{bottom:1025.795028pt;}
.y2{bottom:1038.584915pt;}
.h16{height:8.000000pt;}
.h13{height:11.520000pt;}
.h15{height:11.840000pt;}
.h17{height:13.363363pt;}
.h1a{height:17.279999pt;}
.ha{height:19.839999pt;}
.hd{height:20.159999pt;}
.h14{height:20.223249pt;}
.h19{height:21.499714pt;}
.h1b{height:30.365533pt;}
.he{height:33.919999pt;}
.h6{height:34.239999pt;}
.hf{height:34.701833pt;}
.h12{height:34.744189pt;}
.h7{height:34.744516pt;}
.hb{height:37.348221pt;}
.h8{height:39.086727pt;}
.h11{height:43.365499pt;}
.h18{height:47.679998pt;}
.h10{height:47.692289pt;}
.h4{height:47.750951pt;}
.h1c{height:48.530285pt;}
.h9{height:51.329339pt;}
.h5{height:53.011974pt;}
.h3{height:61.825214pt;}
.hc{height:111.786220pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w18{width:27.519999pt;}
.w1a{width:40.959998pt;}
.w17{width:55.359998pt;}
.w16{width:58.559998pt;}
.w15{width:58.879998pt;}
.w13{width:97.279996pt;}
.w14{width:165.759993pt;}
.w19{width:178.239993pt;}
.w5{width:189.759992pt;}
.wa{width:200.319992pt;}
.w4{width:207.359991pt;}
.w7{width:266.239989pt;}
.w8{width:268.799989pt;}
.w9{width:287.679988pt;}
.wf{width:291.199988pt;}
.w6{width:303.679987pt;}
.we{width:309.759987pt;}
.wb{width:312.639987pt;}
.wc{width:316.159987pt;}
.w11{width:324.799986pt;}
.wd{width:325.759986pt;}
.w3{width:328.639986pt;}
.w10{width:339.199986pt;}
.w12{width:340.799986pt;}
.w2{width:342.719986pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:1.064907pt;}
.x2{left:38.713202pt;}
.x6{left:40.639998pt;}
.xc{left:43.555150pt;}
.x1{left:46.090981pt;}
.x8{left:50.029965pt;}
.xe{left:53.119998pt;}
.xd{left:54.079998pt;}
.x9{left:63.644470pt;}
.xb{left:64.996521pt;}
.x13{left:106.239996pt;}
.x14{left:112.959995pt;}
.x3{left:415.744319pt;}
.x7{left:416.959983pt;}
.x4{left:418.239983pt;}
.x12{left:440.959982pt;}
.xa{left:442.029571pt;}
.x5{left:443.008048pt;}
.x11{left:549.759977pt;}
.x10{left:551.359977pt;}
}




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