
    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_920c8762935004aee460c435.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_658e171bd81b020065a4a7ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_9fa5b5fda15e40fd7cd859bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_3a63ea163959deddfe52f7a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947754;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_5d41edb3dfb662676ef17dbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947754;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_6a9576e4fe1732a2bfbd9ea4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_c1a80d2d96ff2733d27da638.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_ed7dc2631f2b3fe18ab51739.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_068a6342be637dcb0145edff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_6e283d8f950e5feb39efbd24.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.894043;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;}
.m5{transform:matrix(0.000000,-0.249493,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249493,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249493,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249531,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249531,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249531,0.250000,0.000000,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);}
.m2{transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250508,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:-146.520000px;}
.v1{vertical-align:-31.650000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:49.166406px;}
.v3{vertical-align:56.538297px;}
.ls1b{letter-spacing:-1.890000px;}
.ls1c{letter-spacing:-1.794000px;}
.ls12{letter-spacing:-1.746000px;}
.ls2f{letter-spacing:-1.668000px;}
.ls19{letter-spacing:-1.644000px;}
.ls2d{letter-spacing:-1.596000px;}
.ls14{letter-spacing:-1.500000px;}
.ls2{letter-spacing:-1.086000px;}
.ls1f{letter-spacing:-0.966000px;}
.ls2c{letter-spacing:-0.567000px;}
.lsa{letter-spacing:-0.504000px;}
.ls32{letter-spacing:-0.503399px;}
.ls33{letter-spacing:-0.438211px;}
.ls4{letter-spacing:-0.354000px;}
.ls1a{letter-spacing:-0.075000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.110100px;}
.ls3a{letter-spacing:0.384600px;}
.ls3f{letter-spacing:0.468000px;}
.ls3d{letter-spacing:0.534600px;}
.ls17{letter-spacing:0.577200px;}
.lsf{letter-spacing:0.588450px;}
.ls3c{letter-spacing:0.618000px;}
.ls13{letter-spacing:0.768000px;}
.ls15{letter-spacing:0.852000px;}
.ls24{letter-spacing:0.918000px;}
.ls25{letter-spacing:1.002000px;}
.ls5{letter-spacing:1.134000px;}
.ls2b{letter-spacing:1.446000px;}
.ls3e{letter-spacing:1.524000px;}
.ls9{letter-spacing:1.908000px;}
.ls38{letter-spacing:2.430000px;}
.ls40{letter-spacing:2.484000px;}
.ls39{letter-spacing:2.508000px;}
.ls2e{letter-spacing:3.006300px;}
.ls3b{letter-spacing:19.884600px;}
.ls35{letter-spacing:39.333600px;}
.ls37{letter-spacing:39.408300px;}
.ls29{letter-spacing:39.588300px;}
.ls2a{letter-spacing:39.628800px;}
.lse{letter-spacing:39.688800px;}
.ls22{letter-spacing:39.701550px;}
.ls11{letter-spacing:39.716400px;}
.ls23{letter-spacing:39.881550px;}
.ls34{letter-spacing:49.770000px;}
.ls3{letter-spacing:49.792500px;}
.ls36{letter-spacing:49.822500px;}
.ls6{letter-spacing:53.850000px;}
.ls7{letter-spacing:63.120000px;}
.ls8{letter-spacing:63.172500px;}
.lsc{letter-spacing:84.645000px;}
.lsb{letter-spacing:84.697500px;}
.ls26{letter-spacing:111.547500px;}
.lsd{letter-spacing:111.615000px;}
.ls27{letter-spacing:111.645000px;}
.ls10{letter-spacing:111.667500px;}
.ls18{letter-spacing:111.675000px;}
.ls28{letter-spacing:111.697500px;}
.ls16{letter-spacing:111.727500px;}
.ls21{letter-spacing:129.675000px;}
.ls20{letter-spacing:133.792500px;}
.ls31{letter-spacing:133.800000px;}
.ls1d{letter-spacing:133.852500px;}
.ls30{letter-spacing:172.020000px;}
.ls1e{letter-spacing:1166.644200px;}
.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;}
}
.ws7{word-spacing:-65.155800px;}
.ws1f{word-spacing:-63.487800px;}
.ws4{word-spacing:-60.104700px;}
.ws1e{word-spacing:-46.328700px;}
.wsc{word-spacing:-43.826700px;}
.ws9{word-spacing:-43.608000px;}
.wsa{word-spacing:-41.700000px;}
.ws10{word-spacing:-40.925700px;}
.wse{word-spacing:-40.883400px;}
.ws11{word-spacing:-40.692600px;}
.ws29{word-spacing:-40.170900px;}
.ws28{word-spacing:-40.126800px;}
.wsd{word-spacing:-40.115400px;}
.wsf{word-spacing:-40.073700px;}
.ws12{word-spacing:-38.429700px;}
.ws14{word-spacing:-38.279700px;}
.ws13{word-spacing:-38.225400px;}
.ws20{word-spacing:-37.696800px;}
.ws2a{word-spacing:-37.662900px;}
.ws16{word-spacing:-35.069700px;}
.ws0{word-spacing:-32.577900px;}
.ws1{word-spacing:-31.491900px;}
.ws8{word-spacing:-23.810700px;}
.ws2b{word-spacing:-21.357000px;}
.ws38{word-spacing:-20.592300px;}
.ws36{word-spacing:-20.442300px;}
.ws37{word-spacing:-20.057700px;}
.ws5{word-spacing:-16.272000px;}
.ws6{word-spacing:-15.918000px;}
.wsb{word-spacing:-15.768000px;}
.ws19{word-spacing:-15.012000px;}
.ws31{word-spacing:-5.993100px;}
.ws24{word-spacing:-4.992600px;}
.ws1a{word-spacing:-3.340800px;}
.ws1c{word-spacing:-2.985600px;}
.ws1d{word-spacing:-2.154000px;}
.ws35{word-spacing:-1.656000px;}
.ws34{word-spacing:-1.401900px;}
.ws2f{word-spacing:-1.164600px;}
.ws30{word-spacing:-1.109250px;}
.ws2d{word-spacing:-0.984600px;}
.ws1b{word-spacing:-0.525300px;}
.ws2e{word-spacing:-0.498750px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:1.733850px;}
.ws32{word-spacing:2.169900px;}
.ws2{word-spacing:2.412000px;}
.ws25{word-spacing:8.311392px;}
.ws21{word-spacing:9.547789px;}
.ws33{word-spacing:26.532000px;}
.ws2c{word-spacing:26.615400px;}
.ws18{word-spacing:52.819200px;}
.ws17{word-spacing:52.904400px;}
.ws27{word-spacing:197.644415px;}
.ws26{word-spacing:221.770749px;}
.ws23{word-spacing:227.045869px;}
.ws22{word-spacing:254.761221px;}
._6{margin-left:-2820.924000px;}
._f{margin-left:-2819.700000px;}
._9{margin-left:-14.541900px;}
._d{margin-left:-5.847900px;}
._8{margin-left:-4.613850px;}
._5{margin-left:-3.456150px;}
._2{margin-left:-2.398500px;}
._4{margin-left:-1.345500px;}
._1{width:1.287000px;}
._0{width:2.925000px;}
._3{width:4.563000px;}
._13{width:6.451650px;}
._12{width:8.350350px;}
._1c{width:11.896350px;}
._20{width:15.634200px;}
._1b{width:16.877250px;}
._1d{width:18.041100px;}
._1e{width:20.231250px;}
._1f{width:21.447450px;}
._7{width:22.452300px;}
._c{width:37.684350px;}
._1a{width:39.379200px;}
._b{width:42.283350px;}
._14{width:111.667500px;}
._19{width:224.182172px;}
._17{width:257.531365px;}
._18{width:299.622601px;}
._16{width:344.194264px;}
._15{width:1842.742800px;}
._11{width:1845.102750px;}
._e{width:1970.583150px;}
._10{width:1976.653950px;}
._a{width:2007.303150px;}
.fc8{color:rgb(0,128,0);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(68,114,196);}
.fc9{color:rgb(154,10,125);}
.fc4{color:rgb(112,173,71);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc7{color:rgb(137,137,137);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(96,96,96);}
.fs15{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs5{font-size:72.000000px;}
.fs1f{font-size:72.150000px;}
.fs1c{font-size:80.743846px;}
.fs9{font-size:85.500000px;}
.fsa{font-size:85.650000px;}
.fs8{font-size:90.150000px;}
.fs19{font-size:92.755248px;}
.fs1e{font-size:94.500000px;}
.fs11{font-size:94.650000px;}
.fs1b{font-size:102.276211px;}
.fs1d{font-size:102.483990px;}
.fs12{font-size:108.150000px;}
.fs18{font-size:117.490753px;}
.fs1a{font-size:117.711394px;}
.fs14{font-size:126.150000px;}
.fs17{font-size:126.300000px;}
.fs3{font-size:144.150000px;}
.fs10{font-size:144.300000px;}
.fse{font-size:157.650000px;}
.fsf{font-size:157.800000px;}
.fs6{font-size:166.650000px;}
.fsc{font-size:166.800000px;}
.fsb{font-size:193.800000px;}
.fs13{font-size:198.300000px;}
.fs16{font-size:216.300000px;}
.fsd{font-size:265.800000px;}
.fs4{font-size:265.950000px;}
.fs1{font-size:288.300000px;}
.fs2{font-size:288.450000px;}
.fs7{font-size:770.580000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:0.256606px;}
.ya7{bottom:0.294784px;}
.y59{bottom:9.262500px;}
.y19{bottom:16.387500px;}
.yd1{bottom:16.650000px;}
.y3c{bottom:20.512500px;}
.y1{bottom:26.625000px;}
.yd{bottom:30.525000px;}
.ycf{bottom:32.887500px;}
.y94{bottom:33.862500px;}
.y8{bottom:35.025000px;}
.yc0{bottom:36.278503px;}
.yb2{bottom:36.450000px;}
.ya2{bottom:38.250000px;}
.yaf{bottom:41.675271px;}
.yd0{bottom:42.562500px;}
.y60{bottom:42.750000px;}
.y58{bottom:46.500000px;}
.y1c{bottom:47.212500px;}
.y18{bottom:53.625000px;}
.yb4{bottom:56.807361px;}
.yba{bottom:56.807369px;}
.y3b{bottom:64.462500px;}
.ya9{bottom:65.257997px;}
.y92{bottom:69.412500px;}
.yce{bottom:70.125000px;}
.y30{bottom:70.612500px;}
.y52{bottom:71.437500px;}
.y1b{bottom:72.000000px;}
.y93{bottom:72.187500px;}
.y27{bottom:76.500000px;}
.yb1{bottom:79.275000px;}
.y63{bottom:81.375000px;}
.y5f{bottom:85.575000px;}
.ya0{bottom:88.800000px;}
.y1a{bottom:97.912500px;}
.y70{bottom:105.487500px;}
.y91{bottom:106.687500px;}
.y3a{bottom:107.250000px;}
.y51{bottom:109.762500px;}
.y42{bottom:112.125000px;}
.y17{bottom:112.387500px;}
.y2f{bottom:114.562500px;}
.yd3{bottom:119.550000px;}
.yb0{bottom:123.187500px;}
.y26{bottom:123.825000px;}
.yf{bottom:130.125000px;}
.y8a{bottom:131.100000px;}
.yb3{bottom:132.750000px;}
.y9f{bottom:133.875000px;}
.ycd{bottom:137.512500px;}
.ya3{bottom:139.570232px;}
.y6f{bottom:149.400000px;}
.y39{bottom:150.075000px;}
.ybb{bottom:150.600484px;}
.ye{bottom:156.000000px;}
.y16{bottom:163.095000px;}
.y50{bottom:163.245000px;}
.yd2{bottom:163.905000px;}
.y25{bottom:171.150000px;}
.y41{bottom:171.870000px;}
.y5e{bottom:172.305000px;}
.yaa{bottom:173.003714px;}
.y6{bottom:174.630000px;}
.y9e{bottom:178.950000px;}
.y89{bottom:180.675000px;}
.ycc{bottom:182.550000px;}
.yb5{bottom:186.592806px;}
.y6e{bottom:192.225000px;}
.y80{bottom:193.425000px;}
.y2e{bottom:193.770000px;}
.y38{bottom:194.025000px;}
.y96{bottom:203.745000px;}
.y72{bottom:206.550000px;}
.y15{bottom:213.795000px;}
.y5d{bottom:215.130000px;}
.y24{bottom:217.320000px;}
.y40{bottom:218.025000px;}
.yc2{bottom:221.850000px;}
.yc{bottom:224.505000px;}
.y73{bottom:224.550000px;}
.y88{bottom:224.595000px;}
.y9d{bottom:225.105000px;}
.ycb{bottom:227.625000px;}
.y5{bottom:228.705000px;}
.y6d{bottom:235.005000px;}
.y37{bottom:236.820000px;}
.y7f{bottom:237.345000px;}
.ybc{bottom:244.646994px;}
.y95{bottom:246.570000px;}
.y5c{bottom:259.050000px;}
.yb9{bottom:260.266784px;}
.y14{bottom:263.325000px;}
.y23{bottom:264.645000px;}
.y29{bottom:265.380000px;}
.yca{bottom:273.825000px;}
.y87{bottom:275.280000px;}
.y6c{bottom:278.955000px;}
.y9c{bottom:279.195000px;}
.y7e{bottom:280.155000px;}
.y36{bottom:280.755000px;}
.yab{bottom:281.040522px;}
.ya4{bottom:281.793594px;}
.y90{bottom:290.475000px;}
.y4{bottom:295.350000px;}
.ya8{bottom:298.983901px;}
.ya{bottom:303.120000px;}
.y65{bottom:304.200000px;}
.y22{bottom:310.845000px;}
.y13{bottom:314.025000px;}
.yb6{bottom:316.064342px;}
.yc9{bottom:318.870000px;}
.y6b{bottom:321.795000px;}
.y44{bottom:323.175000px;}
.y35{bottom:323.550000px;}
.y86{bottom:323.745000px;}
.y7d{bottom:324.075000px;}
.y9b{bottom:324.255000px;}
.y81{bottom:329.730000px;}
.y8f{bottom:333.300000px;}
.ybd{bottom:338.403549px;}
.y56{bottom:342.300000px;}
.y28{bottom:343.125000px;}
.ye0{bottom:355.950000px;}
.y21{bottom:358.155000px;}
.yc8{bottom:363.945000px;}
.y12{bottom:364.725000px;}
.y6a{bottom:365.700000px;}
.y34{bottom:366.375000px;}
.y7c{bottom:366.900000px;}
.yd4{bottom:372.150000px;}
.y4f{bottom:372.750000px;}
.y3{bottom:373.095000px;}
.y85{bottom:373.320000px;}
.y8e{bottom:377.205000px;}
.ydf{bottom:378.450000px;}
.y9a{bottom:379.470000px;}
.y55{bottom:385.125000px;}
.yac{bottom:388.744241px;}
.y47{bottom:394.155000px;}
.yde{bottom:399.855000px;}
.y20{bottom:405.450000px;}
.y69{bottom:408.525000px;}
.y7b{bottom:409.725000px;}
.y2d{bottom:410.070000px;}
.yc7{bottom:410.145000px;}
.y33{bottom:410.280000px;}
.y2a{bottom:412.245000px;}
.y11{bottom:415.425000px;}
.yb{bottom:418.425000px;}
.y8d{bottom:420.030000px;}
.ydd{bottom:421.275000px;}
.y84{bottom:421.755000px;}
.ya5{bottom:424.008266px;}
.y54{bottom:427.905000px;}
.y46{bottom:428.325000px;}
.y5b{bottom:429.570000px;}
.ybe{bottom:432.172711px;}
.y99{bottom:433.545000px;}
.ydc{bottom:442.695000px;}
.yb7{bottom:445.813228px;}
.y2{bottom:450.780000px;}
.y68{bottom:451.320000px;}
.y1f{bottom:451.650000px;}
.y2c{bottom:452.850000px;}
.y7a{bottom:453.630000px;}
.y45{bottom:453.870000px;}
.yc6{bottom:455.175000px;}
.y8c{bottom:462.825000px;}
.ydb{bottom:464.100000px;}
.y10{bottom:467.250000px;}
.y53{bottom:471.870000px;}
.y5a{bottom:473.475000px;}
.yda{bottom:486.600000px;}
.y98{bottom:487.620000px;}
.yc1{bottom:489.045000px;}
.y48{bottom:491.595000px;}
.y57{bottom:492.225000px;}
.y67{bottom:495.255000px;}
.y79{bottom:496.455000px;}
.yad{bottom:496.462442px;}
.y2b{bottom:496.800000px;}
.yc5{bottom:500.250000px;}
.y71{bottom:506.070000px;}
.y8b{bottom:506.775000px;}
.yd9{bottom:508.005000px;}
.y83{bottom:509.625000px;}
.ybf{bottom:525.967086px;}
.yd8{bottom:529.425000px;}
.y97{bottom:533.820000px;}
.y62{bottom:534.375000px;}
.y78{bottom:540.375000px;}
.yc4{bottom:546.450000px;}
.y9{bottom:548.295000px;}
.yd7{bottom:550.845000px;}
.y82{bottom:553.530000px;}
.y43{bottom:558.450000px;}
.ya6{bottom:566.092599px;}
.y4e{bottom:567.675000px;}
.yd6{bottom:572.250000px;}
.y3f{bottom:580.800000px;}
.y77{bottom:583.200000px;}
.yae{bottom:604.209607px;}
.y4d{bottom:614.970000px;}
.y64{bottom:615.750000px;}
.y3e{bottom:625.845000px;}
.y76{bottom:626.025000px;}
.y1e{bottom:633.450000px;}
.y32{bottom:634.755000px;}
.y61{bottom:652.995000px;}
.y75{bottom:669.945000px;}
.y7{bottom:670.050000px;}
.y66{bottom:678.120000px;}
.yd5{bottom:683.745000px;}
.yc3{bottom:701.250000px;}
.y1d{bottom:704.445000px;}
.y31{bottom:705.720000px;}
.y4a{bottom:710.175000px;}
.y74{bottom:737.280000px;}
.ya1{bottom:750.525000px;}
.y4c{bottom:750.870000px;}
.y49{bottom:763.125000px;}
.y4b{bottom:789.705000px;}
.y3d{bottom:793.080000px;}
.h22{height:39.814453px;}
.h37{height:53.085938px;}
.h36{height:53.196533px;}
.h1{height:58.185791px;}
.hb{height:63.039551px;}
.hc{height:63.150146px;}
.h2f{height:71.413565px;}
.h32{height:71.558645px;}
.h7{height:71.613281px;}
.h29{height:82.037000px;}
.h2c{height:82.191061px;}
.h34{height:85.189966px;}
.ha{height:89.665796px;}
.h1e{height:93.010986px;}
.h26{height:93.121582px;}
.h35{height:96.760986px;}
.h30{height:105.545166px;}
.h31{height:105.696447px;}
.h17{height:106.282471px;}
.h18{height:106.393066px;}
.h1f{height:106.775171px;}
.h20{height:106.875000px;}
.h1a{height:107.569116px;}
.h24{height:108.394043px;}
.h2d{height:108.506836px;}
.h12{height:113.625000px;}
.h15{height:116.236084px;}
.h16{height:116.346680px;}
.h10{height:117.582642px;}
.h11{height:117.688477px;}
.h2a{height:121.303924px;}
.h2b{height:121.419782px;}
.hf{height:122.871826px;}
.he{height:122.982422px;}
.h33{height:130.500000px;}
.hd{height:142.889648px;}
.h5{height:143.375757px;}
.h1d{height:143.524951px;}
.h4{height:147.598901px;}
.h23{height:162.647461px;}
.h8{height:165.754907px;}
.h19{height:165.904102px;}
.h25{height:166.500000px;}
.h21{height:177.750000px;}
.h1b{height:197.234912px;}
.h1c{height:198.436816px;}
.h27{height:221.475146px;}
.h14{height:272.159473px;}
.h6{height:272.313062px;}
.h2{height:295.197803px;}
.h3{height:295.351392px;}
.h13{height:346.500000px;}
.h2e{height:544.500000px;}
.h28{height:625.500000px;}
.h9{height:789.016729px;}
.h0{height:810.000000px;}
.w3{width:307.125000px;}
.w7{width:571.500000px;}
.w4{width:594.000000px;}
.w2{width:622.125000px;}
.w6{width:673.849163px;}
.w5{width:773.971856px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x14{left:11.445000px;}
.x18{left:12.570000px;}
.x5a{left:17.373315px;}
.x53{left:19.954699px;}
.x61{left:34.687479px;}
.x1c{left:36.637479px;}
.x66{left:53.024979px;}
.x5d{left:56.164834px;}
.x1a{left:62.174979px;}
.x40{left:64.837479px;}
.x3c{left:67.574979px;}
.x5c{left:68.990492px;}
.x1d{left:70.424979px;}
.x41{left:71.474979px;}
.x46{left:76.799979px;}
.x55{left:79.241323px;}
.x5b{left:81.784569px;}
.x67{left:86.737479px;}
.x32{left:90.712479px;}
.x54{left:93.936385px;}
.x47{left:97.949979px;}
.x7{left:109.874979px;}
.x42{left:112.012479px;}
.x68{left:113.737479px;}
.x56{left:128.802335px;}
.x35{left:137.250000px;}
.x44{left:179.549979px;}
.x34{left:198.524979px;}
.x1{left:200.219979px;}
.xb{left:221.699979px;}
.x22{left:225.074979px;}
.xc{left:238.799979px;}
.x2c{left:244.994979px;}
.x2d{left:250.994979px;}
.x4d{left:252.044979px;}
.x1e{left:262.994979px;}
.x23{left:273.119979px;}
.x43{left:287.624979px;}
.x2e{left:308.024979px;}
.x59{left:314.533684px;}
.x2f{left:353.069979px;}
.x52{left:360.513633px;}
.xd{left:375.404979px;}
.x2b{left:407.129979px;}
.x36{left:409.094979px;}
.x2a{left:410.324979px;}
.x27{left:433.394979px;}
.x31{left:435.149979px;}
.x50{left:460.125000px;}
.x3{left:468.104979px;}
.x3a{left:491.625000px;}
.x2{left:504.899979px;}
.x57{left:515.250000px;}
.x13{left:531.000000px;}
.x39{left:553.124979px;}
.x6{left:588.374979px;}
.x12{left:592.529979px;}
.x30{left:594.374979px;}
.xa{left:625.724979px;}
.x16{left:627.149979px;}
.x28{left:629.279979px;}
.x58{left:631.631741px;}
.x60{left:636.944979px;}
.x25{left:654.779979px;}
.x5f{left:678.974979px;}
.x4{left:689.924979px;}
.x5e{left:691.694979px;}
.x26{left:714.299979px;}
.x51{left:725.481634px;}
.x9{left:753.869979px;}
.x4e{left:759.899979px;}
.x3b{left:763.724979px;}
.x38{left:783.119979px;}
.xe{left:791.849979px;}
.x15{left:803.099979px;}
.x4f{left:807.944979px;}
.xf{left:813.749979px;}
.x4b{left:846.000000px;}
.x10{left:848.819979px;}
.x63{left:868.500000px;}
.x33{left:870.794979px;}
.x48{left:877.049979px;}
.x11{left:879.194979px;}
.x65{left:880.319979px;}
.x4a{left:908.594979px;}
.x49{left:917.579979px;}
.x62{left:930.449979px;}
.x5{left:944.894979px;}
.x1b{left:945.974979px;}
.x1f{left:995.729979px;}
.x3d{left:1008.629979px;}
.x20{left:1036.274979px;}
.x24{left:1046.399979px;}
.x3e{left:1049.129979px;}
.x29{left:1056.569979px;}
.x37{left:1099.529979px;}
.x4c{left:1119.149979px;}
.x17{left:1132.875000px;}
.x64{left:1141.019979px;}
.x3f{left:1151.999979px;}
.x45{left:1241.924979px;}
.x21{left:1312.649979px;}
.x8{left:1321.829979px;}
.x19{left:1406.099979px;}
@media print{
.v2{vertical-align:-130.240000pt;}
.v1{vertical-align:-28.133333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:43.703472pt;}
.v3{vertical-align:50.256264pt;}
.ls1b{letter-spacing:-1.680000pt;}
.ls1c{letter-spacing:-1.594667pt;}
.ls12{letter-spacing:-1.552000pt;}
.ls2f{letter-spacing:-1.482667pt;}
.ls19{letter-spacing:-1.461333pt;}
.ls2d{letter-spacing:-1.418667pt;}
.ls14{letter-spacing:-1.333333pt;}
.ls2{letter-spacing:-0.965333pt;}
.ls1f{letter-spacing:-0.858667pt;}
.ls2c{letter-spacing:-0.504000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls32{letter-spacing:-0.447466pt;}
.ls33{letter-spacing:-0.389521pt;}
.ls4{letter-spacing:-0.314667pt;}
.ls1a{letter-spacing:-0.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.097867pt;}
.ls3a{letter-spacing:0.341867pt;}
.ls3f{letter-spacing:0.416000pt;}
.ls3d{letter-spacing:0.475200pt;}
.ls17{letter-spacing:0.513067pt;}
.lsf{letter-spacing:0.523067pt;}
.ls3c{letter-spacing:0.549333pt;}
.ls13{letter-spacing:0.682667pt;}
.ls15{letter-spacing:0.757333pt;}
.ls24{letter-spacing:0.816000pt;}
.ls25{letter-spacing:0.890667pt;}
.ls5{letter-spacing:1.008000pt;}
.ls2b{letter-spacing:1.285333pt;}
.ls3e{letter-spacing:1.354667pt;}
.ls9{letter-spacing:1.696000pt;}
.ls38{letter-spacing:2.160000pt;}
.ls40{letter-spacing:2.208000pt;}
.ls39{letter-spacing:2.229333pt;}
.ls2e{letter-spacing:2.672267pt;}
.ls3b{letter-spacing:17.675200pt;}
.ls35{letter-spacing:34.963200pt;}
.ls37{letter-spacing:35.029600pt;}
.ls29{letter-spacing:35.189600pt;}
.ls2a{letter-spacing:35.225600pt;}
.lse{letter-spacing:35.278933pt;}
.ls22{letter-spacing:35.290267pt;}
.ls11{letter-spacing:35.303467pt;}
.ls23{letter-spacing:35.450267pt;}
.ls34{letter-spacing:44.240000pt;}
.ls3{letter-spacing:44.260000pt;}
.ls36{letter-spacing:44.286667pt;}
.ls6{letter-spacing:47.866667pt;}
.ls7{letter-spacing:56.106667pt;}
.ls8{letter-spacing:56.153333pt;}
.lsc{letter-spacing:75.240000pt;}
.lsb{letter-spacing:75.286667pt;}
.ls26{letter-spacing:99.153333pt;}
.lsd{letter-spacing:99.213333pt;}
.ls27{letter-spacing:99.240000pt;}
.ls10{letter-spacing:99.260000pt;}
.ls18{letter-spacing:99.266667pt;}
.ls28{letter-spacing:99.286667pt;}
.ls16{letter-spacing:99.313333pt;}
.ls21{letter-spacing:115.266667pt;}
.ls20{letter-spacing:118.926667pt;}
.ls31{letter-spacing:118.933333pt;}
.ls1d{letter-spacing:118.980000pt;}
.ls30{letter-spacing:152.906667pt;}
.ls1e{letter-spacing:1037.017067pt;}
.ws7{word-spacing:-57.916267pt;}
.ws1f{word-spacing:-56.433600pt;}
.ws4{word-spacing:-53.426400pt;}
.ws1e{word-spacing:-41.181067pt;}
.wsc{word-spacing:-38.957067pt;}
.ws9{word-spacing:-38.762667pt;}
.wsa{word-spacing:-37.066667pt;}
.ws10{word-spacing:-36.378400pt;}
.wse{word-spacing:-36.340800pt;}
.ws11{word-spacing:-36.171200pt;}
.ws29{word-spacing:-35.707467pt;}
.ws28{word-spacing:-35.668267pt;}
.wsd{word-spacing:-35.658133pt;}
.wsf{word-spacing:-35.621067pt;}
.ws12{word-spacing:-34.159733pt;}
.ws14{word-spacing:-34.026400pt;}
.ws13{word-spacing:-33.978133pt;}
.ws20{word-spacing:-33.508267pt;}
.ws2a{word-spacing:-33.478133pt;}
.ws16{word-spacing:-31.173067pt;}
.ws0{word-spacing:-28.958133pt;}
.ws1{word-spacing:-27.992800pt;}
.ws8{word-spacing:-21.165067pt;}
.ws2b{word-spacing:-18.984000pt;}
.ws38{word-spacing:-18.304267pt;}
.ws36{word-spacing:-18.170933pt;}
.ws37{word-spacing:-17.829067pt;}
.ws5{word-spacing:-14.464000pt;}
.ws6{word-spacing:-14.149333pt;}
.wsb{word-spacing:-14.016000pt;}
.ws19{word-spacing:-13.344000pt;}
.ws31{word-spacing:-5.327200pt;}
.ws24{word-spacing:-4.437867pt;}
.ws1a{word-spacing:-2.969600pt;}
.ws1c{word-spacing:-2.653867pt;}
.ws1d{word-spacing:-1.914667pt;}
.ws35{word-spacing:-1.472000pt;}
.ws34{word-spacing:-1.246133pt;}
.ws2f{word-spacing:-1.035200pt;}
.ws30{word-spacing:-0.986000pt;}
.ws2d{word-spacing:-0.875200pt;}
.ws1b{word-spacing:-0.466933pt;}
.ws2e{word-spacing:-0.443333pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:1.541200pt;}
.ws32{word-spacing:1.928800pt;}
.ws2{word-spacing:2.144000pt;}
.ws25{word-spacing:7.387904pt;}
.ws21{word-spacing:8.486924pt;}
.ws33{word-spacing:23.584000pt;}
.ws2c{word-spacing:23.658133pt;}
.ws18{word-spacing:46.950400pt;}
.ws17{word-spacing:47.026133pt;}
.ws27{word-spacing:175.683924pt;}
.ws26{word-spacing:197.129554pt;}
.ws23{word-spacing:201.818550pt;}
.ws22{word-spacing:226.454418pt;}
._6{margin-left:-2507.488000pt;}
._f{margin-left:-2506.400000pt;}
._9{margin-left:-12.926133pt;}
._d{margin-left:-5.198133pt;}
._8{margin-left:-4.101200pt;}
._5{margin-left:-3.072133pt;}
._2{margin-left:-2.132000pt;}
._4{margin-left:-1.196000pt;}
._1{width:1.144000pt;}
._0{width:2.600000pt;}
._3{width:4.056000pt;}
._13{width:5.734800pt;}
._12{width:7.422533pt;}
._1c{width:10.574533pt;}
._20{width:13.897067pt;}
._1b{width:15.002000pt;}
._1d{width:16.036533pt;}
._1e{width:17.983333pt;}
._1f{width:19.064400pt;}
._7{width:19.957600pt;}
._c{width:33.497200pt;}
._1a{width:35.003733pt;}
._b{width:37.585200pt;}
._14{width:99.260000pt;}
._19{width:199.273042pt;}
._17{width:228.916769pt;}
._18{width:266.331201pt;}
._16{width:305.950457pt;}
._15{width:1637.993600pt;}
._11{width:1640.091333pt;}
._e{width:1751.629467pt;}
._10{width:1757.025733pt;}
._a{width:1784.269467pt;}
.fs15{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs5{font-size:64.000000pt;}
.fs1f{font-size:64.133333pt;}
.fs1c{font-size:71.772308pt;}
.fs9{font-size:76.000000pt;}
.fsa{font-size:76.133333pt;}
.fs8{font-size:80.133333pt;}
.fs19{font-size:82.449109pt;}
.fs1e{font-size:84.000000pt;}
.fs11{font-size:84.133333pt;}
.fs1b{font-size:90.912187pt;}
.fs1d{font-size:91.096880pt;}
.fs12{font-size:96.133333pt;}
.fs18{font-size:104.436225pt;}
.fs1a{font-size:104.632350pt;}
.fs14{font-size:112.133333pt;}
.fs17{font-size:112.266667pt;}
.fs3{font-size:128.133333pt;}
.fs10{font-size:128.266667pt;}
.fse{font-size:140.133333pt;}
.fsf{font-size:140.266667pt;}
.fs6{font-size:148.133333pt;}
.fsc{font-size:148.266667pt;}
.fsb{font-size:172.266667pt;}
.fs13{font-size:176.266667pt;}
.fs16{font-size:192.266667pt;}
.fsd{font-size:236.266667pt;}
.fs4{font-size:236.400000pt;}
.fs1{font-size:256.266667pt;}
.fs2{font-size:256.400000pt;}
.fs7{font-size:684.960000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:0.228094pt;}
.ya7{bottom:0.262030pt;}
.y59{bottom:8.233333pt;}
.y19{bottom:14.566667pt;}
.yd1{bottom:14.800000pt;}
.y3c{bottom:18.233333pt;}
.y1{bottom:23.666667pt;}
.yd{bottom:27.133333pt;}
.ycf{bottom:29.233333pt;}
.y94{bottom:30.100000pt;}
.y8{bottom:31.133333pt;}
.yc0{bottom:32.247558pt;}
.yb2{bottom:32.400000pt;}
.ya2{bottom:34.000000pt;}
.yaf{bottom:37.044685pt;}
.yd0{bottom:37.833333pt;}
.y60{bottom:38.000000pt;}
.y58{bottom:41.333333pt;}
.y1c{bottom:41.966667pt;}
.y18{bottom:47.666667pt;}
.yb4{bottom:50.495432pt;}
.yba{bottom:50.495439pt;}
.y3b{bottom:57.300000pt;}
.ya9{bottom:58.007109pt;}
.y92{bottom:61.700000pt;}
.yce{bottom:62.333333pt;}
.y30{bottom:62.766667pt;}
.y52{bottom:63.500000pt;}
.y1b{bottom:64.000000pt;}
.y93{bottom:64.166667pt;}
.y27{bottom:68.000000pt;}
.yb1{bottom:70.466667pt;}
.y63{bottom:72.333333pt;}
.y5f{bottom:76.066667pt;}
.ya0{bottom:78.933333pt;}
.y1a{bottom:87.033333pt;}
.y70{bottom:93.766667pt;}
.y91{bottom:94.833333pt;}
.y3a{bottom:95.333333pt;}
.y51{bottom:97.566667pt;}
.y42{bottom:99.666667pt;}
.y17{bottom:99.900000pt;}
.y2f{bottom:101.833333pt;}
.yd3{bottom:106.266667pt;}
.yb0{bottom:109.500000pt;}
.y26{bottom:110.066667pt;}
.yf{bottom:115.666667pt;}
.y8a{bottom:116.533333pt;}
.yb3{bottom:118.000000pt;}
.y9f{bottom:119.000000pt;}
.ycd{bottom:122.233333pt;}
.ya3{bottom:124.062429pt;}
.y6f{bottom:132.800000pt;}
.y39{bottom:133.400000pt;}
.ybb{bottom:133.867096pt;}
.ye{bottom:138.666667pt;}
.y16{bottom:144.973333pt;}
.y50{bottom:145.106667pt;}
.yd2{bottom:145.693333pt;}
.y25{bottom:152.133333pt;}
.y41{bottom:152.773333pt;}
.y5e{bottom:153.160000pt;}
.yaa{bottom:153.781079pt;}
.y6{bottom:155.226667pt;}
.y9e{bottom:159.066667pt;}
.y89{bottom:160.600000pt;}
.ycc{bottom:162.266667pt;}
.yb5{bottom:165.860272pt;}
.y6e{bottom:170.866667pt;}
.y80{bottom:171.933333pt;}
.y2e{bottom:172.240000pt;}
.y38{bottom:172.466667pt;}
.y96{bottom:181.106667pt;}
.y72{bottom:183.600000pt;}
.y15{bottom:190.040000pt;}
.y5d{bottom:191.226667pt;}
.y24{bottom:193.173333pt;}
.y40{bottom:193.800000pt;}
.yc2{bottom:197.200000pt;}
.yc{bottom:199.560000pt;}
.y73{bottom:199.600000pt;}
.y88{bottom:199.640000pt;}
.y9d{bottom:200.093333pt;}
.ycb{bottom:202.333333pt;}
.y5{bottom:203.293333pt;}
.y6d{bottom:208.893333pt;}
.y37{bottom:210.506667pt;}
.y7f{bottom:210.973333pt;}
.ybc{bottom:217.463995pt;}
.y95{bottom:219.173333pt;}
.y5c{bottom:230.266667pt;}
.yb9{bottom:231.348252pt;}
.y14{bottom:234.066667pt;}
.y23{bottom:235.240000pt;}
.y29{bottom:235.893333pt;}
.yca{bottom:243.400000pt;}
.y87{bottom:244.693333pt;}
.y6c{bottom:247.960000pt;}
.y9c{bottom:248.173333pt;}
.y7e{bottom:249.026667pt;}
.y36{bottom:249.560000pt;}
.yab{bottom:249.813798pt;}
.ya4{bottom:250.483195pt;}
.y90{bottom:258.200000pt;}
.y4{bottom:262.533333pt;}
.ya8{bottom:265.763468pt;}
.ya{bottom:269.440000pt;}
.y65{bottom:270.400000pt;}
.y22{bottom:276.306667pt;}
.y13{bottom:279.133333pt;}
.yb6{bottom:280.946082pt;}
.yc9{bottom:283.440000pt;}
.y6b{bottom:286.040000pt;}
.y44{bottom:287.266667pt;}
.y35{bottom:287.600000pt;}
.y86{bottom:287.773333pt;}
.y7d{bottom:288.066667pt;}
.y9b{bottom:288.226667pt;}
.y81{bottom:293.093333pt;}
.y8f{bottom:296.266667pt;}
.ybd{bottom:300.803155pt;}
.y56{bottom:304.266667pt;}
.y28{bottom:305.000000pt;}
.ye0{bottom:316.400000pt;}
.y21{bottom:318.360000pt;}
.yc8{bottom:323.506667pt;}
.y12{bottom:324.200000pt;}
.y6a{bottom:325.066667pt;}
.y34{bottom:325.666667pt;}
.y7c{bottom:326.133333pt;}
.yd4{bottom:330.800000pt;}
.y4f{bottom:331.333333pt;}
.y3{bottom:331.640000pt;}
.y85{bottom:331.840000pt;}
.y8e{bottom:335.293333pt;}
.ydf{bottom:336.400000pt;}
.y9a{bottom:337.306667pt;}
.y55{bottom:342.333333pt;}
.yac{bottom:345.550436pt;}
.y47{bottom:350.360000pt;}
.yde{bottom:355.426667pt;}
.y20{bottom:360.400000pt;}
.y69{bottom:363.133333pt;}
.y7b{bottom:364.200000pt;}
.y2d{bottom:364.506667pt;}
.yc7{bottom:364.573333pt;}
.y33{bottom:364.693333pt;}
.y2a{bottom:366.440000pt;}
.y11{bottom:369.266667pt;}
.yb{bottom:371.933333pt;}
.y8d{bottom:373.360000pt;}
.ydd{bottom:374.466667pt;}
.y84{bottom:374.893333pt;}
.ya5{bottom:376.896237pt;}
.y54{bottom:380.360000pt;}
.y46{bottom:380.733333pt;}
.y5b{bottom:381.840000pt;}
.ybe{bottom:384.153521pt;}
.y99{bottom:385.373333pt;}
.ydc{bottom:393.506667pt;}
.yb7{bottom:396.278425pt;}
.y2{bottom:400.693333pt;}
.y68{bottom:401.173333pt;}
.y1f{bottom:401.466667pt;}
.y2c{bottom:402.533333pt;}
.y7a{bottom:403.226667pt;}
.y45{bottom:403.440000pt;}
.yc6{bottom:404.600000pt;}
.y8c{bottom:411.400000pt;}
.ydb{bottom:412.533333pt;}
.y10{bottom:415.333333pt;}
.y53{bottom:419.440000pt;}
.y5a{bottom:420.866667pt;}
.yda{bottom:432.533333pt;}
.y98{bottom:433.440000pt;}
.yc1{bottom:434.706667pt;}
.y48{bottom:436.973333pt;}
.y57{bottom:437.533333pt;}
.y67{bottom:440.226667pt;}
.y79{bottom:441.293333pt;}
.yad{bottom:441.299948pt;}
.y2b{bottom:441.600000pt;}
.yc5{bottom:444.666667pt;}
.y71{bottom:449.840000pt;}
.y8b{bottom:450.466667pt;}
.yd9{bottom:451.560000pt;}
.y83{bottom:453.000000pt;}
.ybf{bottom:467.526298pt;}
.yd8{bottom:470.600000pt;}
.y97{bottom:474.506667pt;}
.y62{bottom:475.000000pt;}
.y78{bottom:480.333333pt;}
.yc4{bottom:485.733333pt;}
.y9{bottom:487.373333pt;}
.yd7{bottom:489.640000pt;}
.y82{bottom:492.026667pt;}
.y43{bottom:496.400000pt;}
.ya6{bottom:503.193421pt;}
.y4e{bottom:504.600000pt;}
.yd6{bottom:508.666667pt;}
.y3f{bottom:516.266667pt;}
.y77{bottom:518.400000pt;}
.yae{bottom:537.075206pt;}
.y4d{bottom:546.640000pt;}
.y64{bottom:547.333333pt;}
.y3e{bottom:556.306667pt;}
.y76{bottom:556.466667pt;}
.y1e{bottom:563.066667pt;}
.y32{bottom:564.226667pt;}
.y61{bottom:580.440000pt;}
.y75{bottom:595.506667pt;}
.y7{bottom:595.600000pt;}
.y66{bottom:602.773333pt;}
.yd5{bottom:607.773333pt;}
.yc3{bottom:623.333333pt;}
.y1d{bottom:626.173333pt;}
.y31{bottom:627.306667pt;}
.y4a{bottom:631.266667pt;}
.y74{bottom:655.360000pt;}
.ya1{bottom:667.133333pt;}
.y4c{bottom:667.440000pt;}
.y49{bottom:678.333333pt;}
.y4b{bottom:701.960000pt;}
.y3d{bottom:704.960000pt;}
.h22{height:35.390625pt;}
.h37{height:47.187500pt;}
.h36{height:47.285807pt;}
.h1{height:51.720703pt;}
.hb{height:56.035156pt;}
.hc{height:56.133464pt;}
.h2f{height:63.478724pt;}
.h32{height:63.607685pt;}
.h7{height:63.656250pt;}
.h29{height:72.921778pt;}
.h2c{height:73.058721pt;}
.h34{height:75.724414pt;}
.ha{height:79.702930pt;}
.h1e{height:82.676432pt;}
.h26{height:82.774740pt;}
.h35{height:86.009766pt;}
.h30{height:93.817925pt;}
.h31{height:93.952397pt;}
.h17{height:94.473307pt;}
.h18{height:94.571615pt;}
.h1f{height:94.911263pt;}
.h20{height:95.000000pt;}
.h1a{height:95.616992pt;}
.h24{height:96.350260pt;}
.h2d{height:96.450521pt;}
.h12{height:101.000000pt;}
.h15{height:103.320964pt;}
.h16{height:103.419271pt;}
.h10{height:104.517904pt;}
.h11{height:104.611979pt;}
.h2a{height:107.825711pt;}
.h2b{height:107.928695pt;}
.hf{height:109.219401pt;}
.he{height:109.317708pt;}
.h33{height:116.000000pt;}
.hd{height:127.013021pt;}
.h5{height:127.445117pt;}
.h1d{height:127.577734pt;}
.h4{height:131.199023pt;}
.h23{height:144.575521pt;}
.h8{height:147.337695pt;}
.h19{height:147.470313pt;}
.h25{height:148.000000pt;}
.h21{height:158.000000pt;}
.h1b{height:175.319922pt;}
.h1c{height:176.388281pt;}
.h27{height:196.866797pt;}
.h14{height:241.919531pt;}
.h6{height:242.056055pt;}
.h2{height:262.398047pt;}
.h3{height:262.534570pt;}
.h13{height:308.000000pt;}
.h2e{height:484.000000pt;}
.h28{height:556.000000pt;}
.h9{height:701.348203pt;}
.h0{height:720.000000pt;}
.w3{width:273.000000pt;}
.w7{width:508.000000pt;}
.w4{width:528.000000pt;}
.w2{width:553.000000pt;}
.w6{width:598.977033pt;}
.w5{width:687.974983pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x14{left:10.173333pt;}
.x18{left:11.173333pt;}
.x5a{left:15.442947pt;}
.x53{left:17.737510pt;}
.x61{left:30.833314pt;}
.x1c{left:32.566648pt;}
.x66{left:47.133314pt;}
.x5d{left:49.924297pt;}
.x1a{left:55.266648pt;}
.x40{left:57.633314pt;}
.x3c{left:60.066648pt;}
.x5c{left:61.324882pt;}
.x1d{left:62.599981pt;}
.x41{left:63.533314pt;}
.x46{left:68.266648pt;}
.x55{left:70.436732pt;}
.x5b{left:72.697394pt;}
.x67{left:77.099981pt;}
.x32{left:80.633314pt;}
.x54{left:83.499009pt;}
.x47{left:87.066648pt;}
.x7{left:97.666648pt;}
.x42{left:99.566648pt;}
.x68{left:101.099981pt;}
.x56{left:114.490965pt;}
.x35{left:122.000000pt;}
.x44{left:159.599981pt;}
.x34{left:176.466648pt;}
.x1{left:177.973314pt;}
.xb{left:197.066648pt;}
.x22{left:200.066648pt;}
.xc{left:212.266648pt;}
.x2c{left:217.773314pt;}
.x2d{left:223.106648pt;}
.x4d{left:224.039981pt;}
.x1e{left:233.773314pt;}
.x23{left:242.773314pt;}
.x43{left:255.666648pt;}
.x2e{left:273.799981pt;}
.x59{left:279.585497pt;}
.x2f{left:313.839981pt;}
.x52{left:320.456562pt;}
.xd{left:333.693314pt;}
.x2b{left:361.893314pt;}
.x36{left:363.639981pt;}
.x2a{left:364.733314pt;}
.x27{left:385.239981pt;}
.x31{left:386.799981pt;}
.x50{left:409.000000pt;}
.x3{left:416.093314pt;}
.x3a{left:437.000000pt;}
.x2{left:448.799981pt;}
.x57{left:458.000000pt;}
.x13{left:472.000000pt;}
.x39{left:491.666648pt;}
.x6{left:522.999981pt;}
.x12{left:526.693314pt;}
.x30{left:528.333314pt;}
.xa{left:556.199981pt;}
.x16{left:557.466648pt;}
.x28{left:559.359981pt;}
.x58{left:561.450437pt;}
.x60{left:566.173314pt;}
.x25{left:582.026648pt;}
.x5f{left:603.533314pt;}
.x4{left:613.266648pt;}
.x5e{left:614.839981pt;}
.x26{left:634.933314pt;}
.x51{left:644.872563pt;}
.x9{left:670.106648pt;}
.x4e{left:675.466648pt;}
.x3b{left:678.866648pt;}
.x38{left:696.106648pt;}
.xe{left:703.866648pt;}
.x15{left:713.866648pt;}
.x4f{left:718.173314pt;}
.xf{left:723.333314pt;}
.x4b{left:752.000000pt;}
.x10{left:754.506648pt;}
.x63{left:772.000000pt;}
.x33{left:774.039981pt;}
.x48{left:779.599981pt;}
.x11{left:781.506648pt;}
.x65{left:782.506648pt;}
.x4a{left:807.639981pt;}
.x49{left:815.626648pt;}
.x62{left:827.066648pt;}
.x5{left:839.906648pt;}
.x1b{left:840.866648pt;}
.x1f{left:885.093314pt;}
.x3d{left:896.559981pt;}
.x20{left:921.133314pt;}
.x24{left:930.133314pt;}
.x3e{left:932.559981pt;}
.x29{left:939.173314pt;}
.x37{left:977.359981pt;}
.x4c{left:994.799981pt;}
.x17{left:1007.000000pt;}
.x64{left:1014.239981pt;}
.x3f{left:1023.999981pt;}
.x45{left:1103.933314pt;}
.x21{left:1166.799981pt;}
.x8{left:1174.959981pt;}
.x19{left:1249.866648pt;}
}




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