
    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_992838931e1b8a08cdfd0518.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_f3a279806c736c4fe8428fc5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_89fa39267f27ba474a4aabfc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_8469d654b614377b5920def5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172363;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_4c8a050c0e0206519102e13d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_37818e24f8d2978e81827917.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937012;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_61434fca6e3d284f04e161a0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c3309a91bca6890fb6a66ced.woff')format("woff");}.ff8{font-family:ff8;line-height:0.966797;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_0965f5494ce9c092dc7d17df.woff')format("woff");}.ff9{font-family:ff9;line-height:0.873535;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_ca385b5c92ca6f8dd68ff703.woff')format("woff");}.ffa{font-family:ffa;line-height:1.031738;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_c4ee6096a1b5519d367625e2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976110;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_85c8c033e5baeb9dab789fe0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-45.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:45.120000px;}
.ls26{letter-spacing:-2.022000px;}
.ls9{letter-spacing:-1.812000px;}
.ls21{letter-spacing:-1.614000px;}
.ls3{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.022500px;}
.lsd{letter-spacing:0.365100px;}
.ls24{letter-spacing:0.384600px;}
.ls17{letter-spacing:0.433200px;}
.ls25{letter-spacing:0.450600px;}
.ls12{letter-spacing:0.474000px;}
.ls18{letter-spacing:0.516600px;}
.ls10{letter-spacing:0.567900px;}
.ls1{letter-spacing:0.594600px;}
.ls2{letter-spacing:0.654600px;}
.ls14{letter-spacing:0.666000px;}
.ls15{letter-spacing:0.690000px;}
.ls11{letter-spacing:1.232400px;}
.ls16{letter-spacing:1.290000px;}
.ls13{letter-spacing:1.325100px;}
.ls1f{letter-spacing:1.374000px;}
.lsa{letter-spacing:1.632000px;}
.ls4{letter-spacing:2.886000px;}
.ls1e{letter-spacing:27.654600px;}
.ls1d{letter-spacing:27.714600px;}
.ls0{letter-spacing:40.494600px;}
.ls7{letter-spacing:86.963400px;}
.ls1b{letter-spacing:94.732800px;}
.ls19{letter-spacing:94.823400px;}
.ls5{letter-spacing:95.404800px;}
.ls8{letter-spacing:95.495400px;}
.lsb{letter-spacing:96.886800px;}
.lsc{letter-spacing:96.977400px;}
.lsf{letter-spacing:98.326800px;}
.lse{letter-spacing:98.417400px;}
.ls23{letter-spacing:98.758800px;}
.ls22{letter-spacing:98.849400px;}
.ls1a{letter-spacing:98.890800px;}
.ls1c{letter-spacing:98.981400px;}
.ls6{letter-spacing:100.553400px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-78.979800px;}
.ws4{word-spacing:-41.324700px;}
.ws1{word-spacing:-40.115400px;}
.ws30{word-spacing:-35.111400px;}
.ws31{word-spacing:-35.069700px;}
.ws34{word-spacing:-33.818700px;}
.ws2f{word-spacing:-31.767300px;}
.ws17{word-spacing:-31.358400px;}
.ws16{word-spacing:-31.316700px;}
.ws8{word-spacing:-30.107400px;}
.ws6{word-spacing:-30.065700px;}
.ws5{word-spacing:-28.814700px;}
.ws18{word-spacing:-27.686700px;}
.ws10{word-spacing:-27.637800px;}
.wsd{word-spacing:-27.586800px;}
.wsf{word-spacing:-26.828400px;}
.wse{word-spacing:-26.354400px;}
.wsc{word-spacing:-26.312700px;}
.ws12{word-spacing:-25.103400px;}
.ws11{word-spacing:-25.061700px;}
.ws9{word-spacing:-23.810700px;}
.ws2c{word-spacing:-22.559700px;}
.ws2{word-spacing:-21.692700px;}
.ws2b{word-spacing:-20.057700px;}
.wsb{word-spacing:-18.806700px;}
.ws2e{word-spacing:-17.555700px;}
.ws35{word-spacing:-16.777200px;}
.ws36{word-spacing:-16.740000px;}
.ws7{word-spacing:-2.233350px;}
.ws2a{word-spacing:-0.057079px;}
.ws33{word-spacing:-0.056920px;}
.ws3{word-spacing:0.000000px;}
.ws28{word-spacing:0.021600px;}
.ws19{word-spacing:1.341900px;}
.ws29{word-spacing:1.692000px;}
.ws15{word-spacing:38.483400px;}
.ws14{word-spacing:38.566800px;}
.wsa{word-spacing:74.606700px;}
.ws2d{word-spacing:181.657650px;}
.ws24{word-spacing:263.626950px;}
.ws27{word-spacing:263.790000px;}
.ws25{word-spacing:267.259500px;}
.ws1d{word-spacing:278.557050px;}
.ws20{word-spacing:279.457050px;}
.ws23{word-spacing:279.517050px;}
.ws1c{word-spacing:312.179100px;}
.ws21{word-spacing:314.026200px;}
.ws1b{word-spacing:343.704000px;}
.ws1f{word-spacing:347.039400px;}
.ws1e{word-spacing:360.434100px;}
.ws26{word-spacing:400.897500px;}
.ws22{word-spacing:403.865400px;}
.ws1a{word-spacing:443.460000px;}
.ws13{word-spacing:1070.607900px;}
.ws32{word-spacing:2333.283450px;}
._1f{margin-left:-1771.942650px;}
._5{margin-left:-4.831650px;}
._1{margin-left:-3.691350px;}
._0{margin-left:-2.271600px;}
._3{margin-left:-1.168050px;}
._4{width:1.703700px;}
._2{width:2.839500px;}
._6{width:4.724700px;}
._a{width:5.792850px;}
._20{width:18.299100px;}
._7{width:32.860050px;}
._1e{width:204.513900px;}
._1d{width:327.487800px;}
._19{width:340.011900px;}
._13{width:344.649300px;}
._17{width:352.226100px;}
._1c{width:355.066050px;}
._10{width:359.433000px;}
._1b{width:366.437550px;}
._1a{width:368.031900px;}
._18{width:372.902100px;}
._12{width:380.246100px;}
._f{width:390.280200px;}
._e{width:391.289250px;}
._11{width:392.992350px;}
._14{width:394.984500px;}
._d{width:420.952350px;}
._c{width:421.989900px;}
._15{width:431.487000px;}
._9{width:457.941900px;}
._16{width:459.507000px;}
._b{width:490.267500px;}
._8{width:514.853850px;}
.fc9{color:rgb(68,110,155);}
.fca{color:rgb(0,151,167);}
.fc8{color:rgb(33,37,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(31,78,121);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(30,40,57);}
.fc5{color:rgb(33,33,33);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:56.920429px;}
.fs1a{font-size:57.078541px;}
.fs1d{font-size:63.000000px;}
.fs1e{font-size:63.150000px;}
.fs4{font-size:67.500000px;}
.fs5{font-size:67.650000px;}
.fs1b{font-size:72.150000px;}
.fs9{font-size:76.650000px;}
.fs1c{font-size:81.150000px;}
.fse{font-size:85.650000px;}
.fsf{font-size:85.800000px;}
.fs11{font-size:90.150000px;}
.fs12{font-size:90.300000px;}
.fs3{font-size:94.650000px;}
.fs10{font-size:94.800000px;}
.fsa{font-size:99.150000px;}
.fs13{font-size:99.300000px;}
.fs8{font-size:103.650000px;}
.fs7{font-size:103.800000px;}
.fsc{font-size:108.150000px;}
.fsb{font-size:108.300000px;}
.fs15{font-size:112.650000px;}
.fs14{font-size:112.800000px;}
.fs16{font-size:121.650000px;}
.fs17{font-size:121.800000px;}
.fs21{font-size:126.150000px;}
.fs20{font-size:126.300000px;}
.fsd{font-size:139.650000px;}
.fs2{font-size:144.300000px;}
.fs6{font-size:148.650000px;}
.fs1f{font-size:148.800000px;}
.fs19{font-size:180.450000px;}
.fs18{font-size:207.300000px;}
.fs0{font-size:283.950000px;}
.fs1{font-size:284.100000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:4.500000px;}
.yc6{bottom:13.012500px;}
.yc0{bottom:14.775000px;}
.yc7{bottom:16.875000px;}
.yc9{bottom:18.187500px;}
.yb4{bottom:20.775000px;}
.ya6{bottom:22.087500px;}
.y5d{bottom:22.987500px;}
.y88{bottom:27.487500px;}
.y5b{bottom:30.000000px;}
.y77{bottom:31.275000px;}
.y92{bottom:33.750000px;}
.yd2{bottom:37.425000px;}
.ye6{bottom:37.837500px;}
.y58{bottom:39.375000px;}
.y85{bottom:40.500000px;}
.y74{bottom:41.175000px;}
.ybf{bottom:41.812500px;}
.y71{bottom:41.887500px;}
.ya5{bottom:44.662500px;}
.y8{bottom:44.850000px;}
.yc8{bottom:45.225000px;}
.y22{bottom:46.425000px;}
.y5c{bottom:48.900000px;}
.yd3{bottom:49.275000px;}
.y6d{bottom:52.875000px;}
.y76{bottom:53.812500px;}
.yb3{bottom:62.250000px;}
.y18{bottom:63.562500px;}
.ye5{bottom:68.250000px;}
.ya4{bottom:68.325000px;}
.y7{bottom:68.512500px;}
.yd1{bottom:70.125000px;}
.y3c{bottom:73.725000px;}
.y87{bottom:74.400000px;}
.y75{bottom:77.475000px;}
.y90{bottom:77.625000px;}
.y30{bottom:78.225000px;}
.y82{bottom:80.025000px;}
.y84{bottom:80.400000px;}
.y7a{bottom:80.445000px;}
.y5a{bottom:80.512500px;}
.y86{bottom:80.775000px;}
.y7c{bottom:80.820000px;}
.y7e{bottom:81.195000px;}
.yc1{bottom:85.500000px;}
.y70{bottom:86.062500px;}
.y68{bottom:86.205000px;}
.y6e{bottom:86.400000px;}
.y66{bottom:86.520000px;}
.y6c{bottom:86.700000px;}
.y64{bottom:86.820000px;}
.y6a{bottom:87.000000px;}
.y62{bottom:87.150000px;}
.y60{bottom:87.450000px;}
.y83{bottom:87.750000px;}
.yc2{bottom:88.470000px;}
.y56{bottom:90.000000px;}
.y5f{bottom:90.300000px;}
.y47{bottom:90.637500px;}
.y51{bottom:91.095000px;}
.y53{bottom:91.200000px;}
.y55{bottom:91.350000px;}
.y57{bottom:91.470000px;}
.y59{bottom:91.612500px;}
.y4b{bottom:91.800000px;}
.y73{bottom:91.875000px;}
.y4d{bottom:91.905000px;}
.y4f{bottom:92.070000px;}
.y6{bottom:92.175000px;}
.y17{bottom:92.887500px;}
.yd7{bottom:95.100000px;}
.y49{bottom:96.525000px;}
.y93{bottom:98.775000px;}
.y91{bottom:98.850000px;}
.y8f{bottom:98.925000px;}
.y8d{bottom:99.000000px;}
.y8b{bottom:99.120000px;}
.ye4{bottom:99.825000px;}
.y6b{bottom:101.250000px;}
.yb2{bottom:103.725000px;}
.y9d{bottom:109.800000px;}
.y2f{bottom:115.425000px;}
.y8e{bottom:121.500000px;}
.y16{bottom:122.175000px;}
.y46{bottom:124.425000px;}
.ybe{bottom:127.312500px;}
.yc5{bottom:131.625000px;}
.y21{bottom:133.462500px;}
.y81{bottom:135.000000px;}
.yc3{bottom:135.825000px;}
.yef{bottom:137.962500px;}
.y54{bottom:140.625000px;}
.y72{bottom:142.612500px;}
.yb1{bottom:145.200000px;}
.y9c{bottom:145.837500px;}
.y69{bottom:149.625000px;}
.y15{bottom:150.375000px;}
.y2e{bottom:152.625000px;}
.y45{bottom:156.000000px;}
.yd0{bottom:161.850000px;}
.y8c{bottom:165.375000px;}
.ye3{bottom:169.230000px;}
.ydd{bottom:169.845000px;}
.y20{bottom:170.655000px;}
.y3b{bottom:176.280000px;}
.y14{bottom:179.655000px;}
.y28{bottom:180.780000px;}
.y80{bottom:181.125000px;}
.y9b{bottom:181.905000px;}
.yc4{bottom:183.195000px;}
.ybd{bottom:183.900000px;}
.yee{bottom:184.155000px;}
.y44{bottom:185.280000px;}
.yb0{bottom:186.675000px;}
.yba{bottom:186.750000px;}
.y32{bottom:189.375000px;}
.y2d{bottom:189.780000px;}
.y52{bottom:191.250000px;}
.yd5{bottom:198.345000px;}
.y67{bottom:199.125000px;}
.ye2{bottom:199.695000px;}
.y3a{bottom:202.200000px;}
.ya3{bottom:203.325000px;}
.y1f{bottom:207.825000px;}
.y13{bottom:208.950000px;}
.y8a{bottom:209.250000px;}
.y5{bottom:211.725000px;}
.y43{bottom:216.870000px;}
.y9a{bottom:217.995000px;}
.yb7{bottom:219.120000px;}
.yb8{bottom:221.400000px;}
.ydc{bottom:226.425000px;}
.y2c{bottom:226.995000px;}
.y39{bottom:228.120000px;}
.yaf{bottom:228.150000px;}
.y7f{bottom:228.375000px;}
.ybc{bottom:229.005000px;}
.y27{bottom:229.245000px;}
.yd9{bottom:229.275000px;}
.ye1{bottom:231.225000px;}
.y4{bottom:235.395000px;}
.ya2{bottom:236.025000px;}
.y12{bottom:237.150000px;}
.y50{bottom:241.875000px;}
.y42{bottom:245.025000px;}
.y1e{bottom:246.150000px;}
.y65{bottom:247.500000px;}
.ybb{bottom:250.425000px;}
.yb6{bottom:250.695000px;}
.yed{bottom:251.820000px;}
.y99{bottom:252.945000px;}
.y38{bottom:256.320000px;}
.y11{bottom:259.695000px;}
.y2b{bottom:264.195000px;}
.yae{bottom:269.625000px;}
.ycf{bottom:270.000000px;}
.ydb{bottom:271.575000px;}
.ya1{bottom:272.100000px;}
.y7d{bottom:274.500000px;}
.y26{bottom:277.725000px;}
.y41{bottom:279.975000px;}
.y10{bottom:281.100000px;}
.y1d{bottom:283.350000px;}
.y37{bottom:285.600000px;}
.y98{bottom:288.975000px;}
.y4e{bottom:291.375000px;}
.yda{bottom:292.995000px;}
.yec{bottom:293.520000px;}
.y63{bottom:295.875000px;}
.ye0{bottom:300.630000px;}
.yd6{bottom:302.280000px;}
.y3{bottom:303.780000px;}
.yf{bottom:304.770000px;}
.yad{bottom:311.100000px;}
.y40{bottom:311.550000px;}
.yb5{bottom:312.675000px;}
.y36{bottom:313.800000px;}
.yeb{bottom:316.050000px;}
.y1c{bottom:320.550000px;}
.y7b{bottom:321.750000px;}
.y97{bottom:325.050000px;}
.y25{bottom:326.175000px;}
.ydf{bottom:331.080000px;}
.ye{bottom:334.095000px;}
.y3f{bottom:339.720000px;}
.y4c{bottom:342.000000px;}
.y35{bottom:343.095000px;}
.yd4{bottom:343.125000px;}
.y61{bottom:344.250000px;}
.ya0{bottom:346.470000px;}
.y89{bottom:352.320000px;}
.yac{bottom:352.575000px;}
.y2a{bottom:354.375000px;}
.y31{bottom:356.595000px;}
.yea{bottom:356.625000px;}
.y1b{bottom:357.750000px;}
.y96{bottom:361.125000px;}
.yce{bottom:361.875000px;}
.yd{bottom:362.250000px;}
.yde{bottom:362.670000px;}
.y79{bottom:369.000000px;}
.y34{bottom:372.405000px;}
.y24{bottom:374.655000px;}
.ye9{bottom:379.155000px;}
.yc{bottom:384.780000px;}
.y9f{bottom:388.155000px;}
.y2{bottom:388.320000px;}
.y4a{bottom:392.625000px;}
.yab{bottom:394.050000px;}
.ycd{bottom:394.545000px;}
.y1a{bottom:394.950000px;}
.y95{bottom:397.200000px;}
.y33{bottom:401.700000px;}
.ye8{bottom:402.825000px;}
.y3e{bottom:406.200000px;}
.yb{bottom:407.325000px;}
.y29{bottom:409.575000px;}
.y23{bottom:424.245000px;}
.y9e{bottom:428.745000px;}
.y19{bottom:432.150000px;}
.y94{bottom:433.275000px;}
.y3d{bottom:434.400000px;}
.yaa{bottom:435.525000px;}
.ya{bottom:436.650000px;}
.y5e{bottom:437.625000px;}
.y48{bottom:438.750000px;}
.ye7{bottom:443.400000px;}
.yb9{bottom:458.370000px;}
.y1{bottom:472.845000px;}
.ya9{bottom:477.000000px;}
.y78{bottom:495.345000px;}
.ycc{bottom:504.075000px;}
.yd8{bottom:507.450000px;}
.y9{bottom:507.945000px;}
.ycb{bottom:518.250000px;}
.ya8{bottom:518.475000px;}
.yca{bottom:536.250000px;}
.ya7{bottom:559.845000px;}
.h3a{height:42.750000px;}
.h3c{height:46.050293px;}
.h3d{height:46.159937px;}
.h42{height:48.693648px;}
.h37{height:48.828908px;}
.h33{height:49.339600px;}
.h6{height:49.449243px;}
.h5{height:49.801025px;}
.h32{height:50.756836px;}
.h25{height:50.869629px;}
.h38{height:52.738550px;}
.h44{height:54.151611px;}
.h41{height:54.253418px;}
.h43{height:54.271948px;}
.ha{height:56.027856px;}
.h24{height:57.637207px;}
.h3b{height:59.317163px;}
.h11{height:59.469873px;}
.h12{height:62.606470px;}
.h13{height:62.716113px;}
.h27{height:64.404785px;}
.h20{height:65.895776px;}
.h21{height:66.005420px;}
.h34{height:66.512036px;}
.h1e{height:67.788574px;}
.h22{height:67.901367px;}
.h4{height:69.185083px;}
.h14{height:69.294727px;}
.h17{height:71.172363px;}
.h19{height:71.285156px;}
.hc{height:72.474390px;}
.h2d{height:72.584033px;}
.h2b{height:74.668945px;}
.h9{height:75.763696px;}
.h8{height:75.873340px;}
.hb{height:76.472241px;}
.he{height:79.053003px;}
.hd{height:79.162646px;}
.h2f{height:82.342310px;}
.h2e{height:82.451953px;}
.h30{height:88.920923px;}
.h31{height:89.030566px;}
.h40{height:92.210229px;}
.h3f{height:92.319873px;}
.h10{height:107.718311px;}
.h7{height:108.656763px;}
.h3e{height:108.766406px;}
.h15{height:109.672925px;}
.h3{height:114.305083px;}
.h2a{height:124.875000px;}
.h36{height:131.901196px;}
.hf{height:138.899927px;}
.h1c{height:141.750000px;}
.h23{height:146.250000px;}
.h35{height:151.527393px;}
.h16{height:168.750000px;}
.h1d{height:169.875000px;}
.h29{height:172.125000px;}
.h26{height:176.625000px;}
.h28{height:177.750000px;}
.h1f{height:190.125000px;}
.h1b{height:192.375000px;}
.h18{height:202.500000px;}
.h1a{height:203.625000px;}
.h39{height:207.000000px;}
.h1{height:207.555249px;}
.h2{height:207.664893px;}
.h2c{height:219.375000px;}
.h0{height:607.500000px;}
.wa{width:155.250000px;}
.w8{width:184.500000px;}
.w7{width:187.875000px;}
.w3{width:191.250000px;}
.w2{width:192.375000px;}
.w6{width:195.750000px;}
.wb{width:196.875000px;}
.w9{width:198.000000px;}
.w4{width:200.250000px;}
.w5{width:214.875000px;}
.we{width:306.000000px;}
.wc{width:403.875000px;}
.wd{width:445.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x34{left:10.470000px;}
.x15{left:11.850000px;}
.x33{left:20.445000px;}
.x12{left:24.374984px;}
.x11{left:29.699984px;}
.x28{left:37.087484px;}
.x29{left:43.087484px;}
.x19{left:45.524984px;}
.x9{left:47.662484px;}
.x1d{left:50.099984px;}
.x3c{left:53.362484px;}
.x26{left:59.662484px;}
.xe{left:61.162484px;}
.xa{left:62.212484px;}
.x2b{left:63.412484px;}
.x46{left:95.099984px;}
.xf{left:96.374984px;}
.x2{left:97.499984px;}
.x37{left:100.320000px;}
.xb{left:101.737484px;}
.x2d{left:112.687484px;}
.x27{left:116.737484px;}
.xc{left:119.062484px;}
.x1{left:130.837484px;}
.x36{left:132.345000px;}
.x24{left:136.125000px;}
.x3d{left:151.529984px;}
.xd{left:155.774984px;}
.x31{left:157.874984px;}
.x13{left:162.674984px;}
.x2e{left:165.599984px;}
.x47{left:176.099984px;}
.x30{left:177.779984px;}
.x45{left:180.524984px;}
.x4{left:189.299984px;}
.x44{left:190.469984px;}
.x1a{left:266.625000px;}
.x14{left:270.000000px;}
.x5{left:288.494984px;}
.x23{left:293.654984px;}
.x1f{left:327.375000px;}
.x6{left:334.244984px;}
.x3{left:344.444984px;}
.x2f{left:366.224984px;}
.x48{left:376.724984px;}
.x2a{left:385.199984px;}
.x1e{left:389.399984px;}
.x3e{left:404.774984px;}
.x8{left:432.374984px;}
.x7{left:443.474984px;}
.x16{left:461.250000px;}
.x3f{left:464.444984px;}
.x43{left:493.379984px;}
.x42{left:506.324984px;}
.x20{left:510.750000px;}
.x25{left:540.000000px;}
.x2c{left:570.224984px;}
.x32{left:583.875000px;}
.x49{left:592.874984px;}
.x39{left:606.224984px;}
.x1b{left:648.000000px;}
.x17{left:651.375000px;}
.x35{left:672.750000px;}
.x10{left:678.299984px;}
.x21{left:707.625000px;}
.x38{left:739.319984px;}
.x41{left:770.999984px;}
.x40{left:822.869984px;}
.x1c{left:842.625000px;}
.x18{left:850.500000px;}
.x22{left:861.750000px;}
.x3b{left:928.424984px;}
.x3a{left:948.599984px;}
@media print{
.v2{vertical-align:-40.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.106667pt;}
.ls26{letter-spacing:-1.797333pt;}
.ls9{letter-spacing:-1.610667pt;}
.ls21{letter-spacing:-1.434667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.020000pt;}
.lsd{letter-spacing:0.324533pt;}
.ls24{letter-spacing:0.341867pt;}
.ls17{letter-spacing:0.385067pt;}
.ls25{letter-spacing:0.400533pt;}
.ls12{letter-spacing:0.421333pt;}
.ls18{letter-spacing:0.459200pt;}
.ls10{letter-spacing:0.504800pt;}
.ls1{letter-spacing:0.528533pt;}
.ls2{letter-spacing:0.581867pt;}
.ls14{letter-spacing:0.592000pt;}
.ls15{letter-spacing:0.613333pt;}
.ls11{letter-spacing:1.095467pt;}
.ls16{letter-spacing:1.146667pt;}
.ls13{letter-spacing:1.177867pt;}
.ls1f{letter-spacing:1.221333pt;}
.lsa{letter-spacing:1.450667pt;}
.ls4{letter-spacing:2.565333pt;}
.ls1e{letter-spacing:24.581867pt;}
.ls1d{letter-spacing:24.635200pt;}
.ls0{letter-spacing:35.995200pt;}
.ls7{letter-spacing:77.300800pt;}
.ls1b{letter-spacing:84.206933pt;}
.ls19{letter-spacing:84.287467pt;}
.ls5{letter-spacing:84.804267pt;}
.ls8{letter-spacing:84.884800pt;}
.lsb{letter-spacing:86.121600pt;}
.lsc{letter-spacing:86.202133pt;}
.lsf{letter-spacing:87.401600pt;}
.lse{letter-spacing:87.482133pt;}
.ls23{letter-spacing:87.785600pt;}
.ls22{letter-spacing:87.866133pt;}
.ls1a{letter-spacing:87.902933pt;}
.ls1c{letter-spacing:87.983467pt;}
.ls6{letter-spacing:89.380800pt;}
.ws0{word-spacing:-70.204267pt;}
.ws4{word-spacing:-36.733067pt;}
.ws1{word-spacing:-35.658133pt;}
.ws30{word-spacing:-31.210133pt;}
.ws31{word-spacing:-31.173067pt;}
.ws34{word-spacing:-30.061067pt;}
.ws2f{word-spacing:-28.237600pt;}
.ws17{word-spacing:-27.874133pt;}
.ws16{word-spacing:-27.837067pt;}
.ws8{word-spacing:-26.762133pt;}
.ws6{word-spacing:-26.725067pt;}
.ws5{word-spacing:-25.613067pt;}
.ws18{word-spacing:-24.610400pt;}
.ws10{word-spacing:-24.566933pt;}
.wsd{word-spacing:-24.521600pt;}
.wsf{word-spacing:-23.847467pt;}
.wse{word-spacing:-23.426133pt;}
.wsc{word-spacing:-23.389067pt;}
.ws12{word-spacing:-22.314133pt;}
.ws11{word-spacing:-22.277067pt;}
.ws9{word-spacing:-21.165067pt;}
.ws2c{word-spacing:-20.053067pt;}
.ws2{word-spacing:-19.282400pt;}
.ws2b{word-spacing:-17.829067pt;}
.wsb{word-spacing:-16.717067pt;}
.ws2e{word-spacing:-15.605067pt;}
.ws35{word-spacing:-14.913067pt;}
.ws36{word-spacing:-14.880000pt;}
.ws7{word-spacing:-1.985200pt;}
.ws2a{word-spacing:-0.050736pt;}
.ws33{word-spacing:-0.050596pt;}
.ws3{word-spacing:0.000000pt;}
.ws28{word-spacing:0.019200pt;}
.ws19{word-spacing:1.192800pt;}
.ws29{word-spacing:1.504000pt;}
.ws15{word-spacing:34.207467pt;}
.ws14{word-spacing:34.281600pt;}
.wsa{word-spacing:66.317067pt;}
.ws2d{word-spacing:161.473467pt;}
.ws24{word-spacing:234.335067pt;}
.ws27{word-spacing:234.480000pt;}
.ws25{word-spacing:237.564000pt;}
.ws1d{word-spacing:247.606267pt;}
.ws20{word-spacing:248.406267pt;}
.ws23{word-spacing:248.459600pt;}
.ws1c{word-spacing:277.492533pt;}
.ws21{word-spacing:279.134400pt;}
.ws1b{word-spacing:305.514667pt;}
.ws1f{word-spacing:308.479467pt;}
.ws1e{word-spacing:320.385867pt;}
.ws26{word-spacing:356.353333pt;}
.ws22{word-spacing:358.991467pt;}
.ws1a{word-spacing:394.186667pt;}
.ws13{word-spacing:951.651467pt;}
.ws32{word-spacing:2074.029733pt;}
._1f{margin-left:-1575.060133pt;}
._5{margin-left:-4.294800pt;}
._1{margin-left:-3.281200pt;}
._0{margin-left:-2.019200pt;}
._3{margin-left:-1.038267pt;}
._4{width:1.514400pt;}
._2{width:2.524000pt;}
._6{width:4.199733pt;}
._a{width:5.149200pt;}
._20{width:16.265867pt;}
._7{width:29.208933pt;}
._1e{width:181.790133pt;}
._1d{width:291.100267pt;}
._19{width:302.232800pt;}
._13{width:306.354933pt;}
._17{width:313.089867pt;}
._1c{width:315.614267pt;}
._10{width:319.496000pt;}
._1b{width:325.722267pt;}
._1a{width:327.139467pt;}
._18{width:331.468533pt;}
._12{width:337.996533pt;}
._f{width:346.915733pt;}
._e{width:347.812667pt;}
._11{width:349.326533pt;}
._14{width:351.097333pt;}
._d{width:374.179867pt;}
._c{width:375.102133pt;}
._15{width:383.544000pt;}
._9{width:407.059467pt;}
._16{width:408.450667pt;}
._b{width:435.793333pt;}
._8{width:457.647867pt;}
.fs22{font-size:50.595937pt;}
.fs1a{font-size:50.736481pt;}
.fs1d{font-size:56.000000pt;}
.fs1e{font-size:56.133333pt;}
.fs4{font-size:60.000000pt;}
.fs5{font-size:60.133333pt;}
.fs1b{font-size:64.133333pt;}
.fs9{font-size:68.133333pt;}
.fs1c{font-size:72.133333pt;}
.fse{font-size:76.133333pt;}
.fsf{font-size:76.266667pt;}
.fs11{font-size:80.133333pt;}
.fs12{font-size:80.266667pt;}
.fs3{font-size:84.133333pt;}
.fs10{font-size:84.266667pt;}
.fsa{font-size:88.133333pt;}
.fs13{font-size:88.266667pt;}
.fs8{font-size:92.133333pt;}
.fs7{font-size:92.266667pt;}
.fsc{font-size:96.133333pt;}
.fsb{font-size:96.266667pt;}
.fs15{font-size:100.133333pt;}
.fs14{font-size:100.266667pt;}
.fs16{font-size:108.133333pt;}
.fs17{font-size:108.266667pt;}
.fs21{font-size:112.133333pt;}
.fs20{font-size:112.266667pt;}
.fsd{font-size:124.133333pt;}
.fs2{font-size:128.266667pt;}
.fs6{font-size:132.133333pt;}
.fs1f{font-size:132.266667pt;}
.fs19{font-size:160.400000pt;}
.fs18{font-size:184.266667pt;}
.fs0{font-size:252.400000pt;}
.fs1{font-size:252.533333pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:4.000000pt;}
.yc6{bottom:11.566667pt;}
.yc0{bottom:13.133333pt;}
.yc7{bottom:15.000000pt;}
.yc9{bottom:16.166667pt;}
.yb4{bottom:18.466667pt;}
.ya6{bottom:19.633333pt;}
.y5d{bottom:20.433333pt;}
.y88{bottom:24.433333pt;}
.y5b{bottom:26.666667pt;}
.y77{bottom:27.800000pt;}
.y92{bottom:30.000000pt;}
.yd2{bottom:33.266667pt;}
.ye6{bottom:33.633333pt;}
.y58{bottom:35.000000pt;}
.y85{bottom:36.000000pt;}
.y74{bottom:36.600000pt;}
.ybf{bottom:37.166667pt;}
.y71{bottom:37.233333pt;}
.ya5{bottom:39.700000pt;}
.y8{bottom:39.866667pt;}
.yc8{bottom:40.200000pt;}
.y22{bottom:41.266667pt;}
.y5c{bottom:43.466667pt;}
.yd3{bottom:43.800000pt;}
.y6d{bottom:47.000000pt;}
.y76{bottom:47.833333pt;}
.yb3{bottom:55.333333pt;}
.y18{bottom:56.500000pt;}
.ye5{bottom:60.666667pt;}
.ya4{bottom:60.733333pt;}
.y7{bottom:60.900000pt;}
.yd1{bottom:62.333333pt;}
.y3c{bottom:65.533333pt;}
.y87{bottom:66.133333pt;}
.y75{bottom:68.866667pt;}
.y90{bottom:69.000000pt;}
.y30{bottom:69.533333pt;}
.y82{bottom:71.133333pt;}
.y84{bottom:71.466667pt;}
.y7a{bottom:71.506667pt;}
.y5a{bottom:71.566667pt;}
.y86{bottom:71.800000pt;}
.y7c{bottom:71.840000pt;}
.y7e{bottom:72.173333pt;}
.yc1{bottom:76.000000pt;}
.y70{bottom:76.500000pt;}
.y68{bottom:76.626667pt;}
.y6e{bottom:76.800000pt;}
.y66{bottom:76.906667pt;}
.y6c{bottom:77.066667pt;}
.y64{bottom:77.173333pt;}
.y6a{bottom:77.333333pt;}
.y62{bottom:77.466667pt;}
.y60{bottom:77.733333pt;}
.y83{bottom:78.000000pt;}
.yc2{bottom:78.640000pt;}
.y56{bottom:80.000000pt;}
.y5f{bottom:80.266667pt;}
.y47{bottom:80.566667pt;}
.y51{bottom:80.973333pt;}
.y53{bottom:81.066667pt;}
.y55{bottom:81.200000pt;}
.y57{bottom:81.306667pt;}
.y59{bottom:81.433333pt;}
.y4b{bottom:81.600000pt;}
.y73{bottom:81.666667pt;}
.y4d{bottom:81.693333pt;}
.y4f{bottom:81.840000pt;}
.y6{bottom:81.933333pt;}
.y17{bottom:82.566667pt;}
.yd7{bottom:84.533333pt;}
.y49{bottom:85.800000pt;}
.y93{bottom:87.800000pt;}
.y91{bottom:87.866667pt;}
.y8f{bottom:87.933333pt;}
.y8d{bottom:88.000000pt;}
.y8b{bottom:88.106667pt;}
.ye4{bottom:88.733333pt;}
.y6b{bottom:90.000000pt;}
.yb2{bottom:92.200000pt;}
.y9d{bottom:97.600000pt;}
.y2f{bottom:102.600000pt;}
.y8e{bottom:108.000000pt;}
.y16{bottom:108.600000pt;}
.y46{bottom:110.600000pt;}
.ybe{bottom:113.166667pt;}
.yc5{bottom:117.000000pt;}
.y21{bottom:118.633333pt;}
.y81{bottom:120.000000pt;}
.yc3{bottom:120.733333pt;}
.yef{bottom:122.633333pt;}
.y54{bottom:125.000000pt;}
.y72{bottom:126.766667pt;}
.yb1{bottom:129.066667pt;}
.y9c{bottom:129.633333pt;}
.y69{bottom:133.000000pt;}
.y15{bottom:133.666667pt;}
.y2e{bottom:135.666667pt;}
.y45{bottom:138.666667pt;}
.yd0{bottom:143.866667pt;}
.y8c{bottom:147.000000pt;}
.ye3{bottom:150.426667pt;}
.ydd{bottom:150.973333pt;}
.y20{bottom:151.693333pt;}
.y3b{bottom:156.693333pt;}
.y14{bottom:159.693333pt;}
.y28{bottom:160.693333pt;}
.y80{bottom:161.000000pt;}
.y9b{bottom:161.693333pt;}
.yc4{bottom:162.840000pt;}
.ybd{bottom:163.466667pt;}
.yee{bottom:163.693333pt;}
.y44{bottom:164.693333pt;}
.yb0{bottom:165.933333pt;}
.yba{bottom:166.000000pt;}
.y32{bottom:168.333333pt;}
.y2d{bottom:168.693333pt;}
.y52{bottom:170.000000pt;}
.yd5{bottom:176.306667pt;}
.y67{bottom:177.000000pt;}
.ye2{bottom:177.506667pt;}
.y3a{bottom:179.733333pt;}
.ya3{bottom:180.733333pt;}
.y1f{bottom:184.733333pt;}
.y13{bottom:185.733333pt;}
.y8a{bottom:186.000000pt;}
.y5{bottom:188.200000pt;}
.y43{bottom:192.773333pt;}
.y9a{bottom:193.773333pt;}
.yb7{bottom:194.773333pt;}
.yb8{bottom:196.800000pt;}
.ydc{bottom:201.266667pt;}
.y2c{bottom:201.773333pt;}
.y39{bottom:202.773333pt;}
.yaf{bottom:202.800000pt;}
.y7f{bottom:203.000000pt;}
.ybc{bottom:203.560000pt;}
.y27{bottom:203.773333pt;}
.yd9{bottom:203.800000pt;}
.ye1{bottom:205.533333pt;}
.y4{bottom:209.240000pt;}
.ya2{bottom:209.800000pt;}
.y12{bottom:210.800000pt;}
.y50{bottom:215.000000pt;}
.y42{bottom:217.800000pt;}
.y1e{bottom:218.800000pt;}
.y65{bottom:220.000000pt;}
.ybb{bottom:222.600000pt;}
.yb6{bottom:222.840000pt;}
.yed{bottom:223.840000pt;}
.y99{bottom:224.840000pt;}
.y38{bottom:227.840000pt;}
.y11{bottom:230.840000pt;}
.y2b{bottom:234.840000pt;}
.yae{bottom:239.666667pt;}
.ycf{bottom:240.000000pt;}
.ydb{bottom:241.400000pt;}
.ya1{bottom:241.866667pt;}
.y7d{bottom:244.000000pt;}
.y26{bottom:246.866667pt;}
.y41{bottom:248.866667pt;}
.y10{bottom:249.866667pt;}
.y1d{bottom:251.866667pt;}
.y37{bottom:253.866667pt;}
.y98{bottom:256.866667pt;}
.y4e{bottom:259.000000pt;}
.yda{bottom:260.440000pt;}
.yec{bottom:260.906667pt;}
.y63{bottom:263.000000pt;}
.ye0{bottom:267.226667pt;}
.yd6{bottom:268.693333pt;}
.y3{bottom:270.026667pt;}
.yf{bottom:270.906667pt;}
.yad{bottom:276.533333pt;}
.y40{bottom:276.933333pt;}
.yb5{bottom:277.933333pt;}
.y36{bottom:278.933333pt;}
.yeb{bottom:280.933333pt;}
.y1c{bottom:284.933333pt;}
.y7b{bottom:286.000000pt;}
.y97{bottom:288.933333pt;}
.y25{bottom:289.933333pt;}
.ydf{bottom:294.293333pt;}
.ye{bottom:296.973333pt;}
.y3f{bottom:301.973333pt;}
.y4c{bottom:304.000000pt;}
.y35{bottom:304.973333pt;}
.yd4{bottom:305.000000pt;}
.y61{bottom:306.000000pt;}
.ya0{bottom:307.973333pt;}
.y89{bottom:313.173333pt;}
.yac{bottom:313.400000pt;}
.y2a{bottom:315.000000pt;}
.y31{bottom:316.973333pt;}
.yea{bottom:317.000000pt;}
.y1b{bottom:318.000000pt;}
.y96{bottom:321.000000pt;}
.yce{bottom:321.666667pt;}
.yd{bottom:322.000000pt;}
.yde{bottom:322.373333pt;}
.y79{bottom:328.000000pt;}
.y34{bottom:331.026667pt;}
.y24{bottom:333.026667pt;}
.ye9{bottom:337.026667pt;}
.yc{bottom:342.026667pt;}
.y9f{bottom:345.026667pt;}
.y2{bottom:345.173333pt;}
.y4a{bottom:349.000000pt;}
.yab{bottom:350.266667pt;}
.ycd{bottom:350.706667pt;}
.y1a{bottom:351.066667pt;}
.y95{bottom:353.066667pt;}
.y33{bottom:357.066667pt;}
.ye8{bottom:358.066667pt;}
.y3e{bottom:361.066667pt;}
.yb{bottom:362.066667pt;}
.y29{bottom:364.066667pt;}
.y23{bottom:377.106667pt;}
.y9e{bottom:381.106667pt;}
.y19{bottom:384.133333pt;}
.y94{bottom:385.133333pt;}
.y3d{bottom:386.133333pt;}
.yaa{bottom:387.133333pt;}
.ya{bottom:388.133333pt;}
.y5e{bottom:389.000000pt;}
.y48{bottom:390.000000pt;}
.ye7{bottom:394.133333pt;}
.yb9{bottom:407.440000pt;}
.y1{bottom:420.306667pt;}
.ya9{bottom:424.000000pt;}
.y78{bottom:440.306667pt;}
.ycc{bottom:448.066667pt;}
.yd8{bottom:451.066667pt;}
.y9{bottom:451.506667pt;}
.ycb{bottom:460.666667pt;}
.ya8{bottom:460.866667pt;}
.yca{bottom:476.666667pt;}
.ya7{bottom:497.640000pt;}
.h3a{height:38.000000pt;}
.h3c{height:40.933594pt;}
.h3d{height:41.031055pt;}
.h42{height:43.283243pt;}
.h37{height:43.403474pt;}
.h33{height:43.857422pt;}
.h6{height:43.954883pt;}
.h5{height:44.267578pt;}
.h32{height:45.117188pt;}
.h25{height:45.217448pt;}
.h38{height:46.878711pt;}
.h44{height:48.134766pt;}
.h41{height:48.225260pt;}
.h43{height:48.241732pt;}
.ha{height:49.802539pt;}
.h24{height:51.233073pt;}
.h3b{height:52.726367pt;}
.h11{height:52.862109pt;}
.h12{height:55.650195pt;}
.h13{height:55.747656pt;}
.h27{height:57.248698pt;}
.h20{height:58.574023pt;}
.h21{height:58.671484pt;}
.h34{height:59.121810pt;}
.h1e{height:60.256510pt;}
.h22{height:60.356771pt;}
.h4{height:61.497852pt;}
.h14{height:61.595312pt;}
.h17{height:63.264323pt;}
.h19{height:63.364583pt;}
.hc{height:64.421680pt;}
.h2d{height:64.519141pt;}
.h2b{height:66.372396pt;}
.h9{height:67.345508pt;}
.h8{height:67.442969pt;}
.hb{height:67.975326pt;}
.he{height:70.269336pt;}
.hd{height:70.366797pt;}
.h2f{height:73.193164pt;}
.h2e{height:73.290625pt;}
.h30{height:79.040820pt;}
.h31{height:79.138281pt;}
.h40{height:81.964648pt;}
.h3f{height:82.062109pt;}
.h10{height:95.749609pt;}
.h7{height:96.583789pt;}
.h3e{height:96.681250pt;}
.h15{height:97.487044pt;}
.h3{height:101.604518pt;}
.h2a{height:111.000000pt;}
.h36{height:117.245508pt;}
.hf{height:123.466602pt;}
.h1c{height:126.000000pt;}
.h23{height:130.000000pt;}
.h35{height:134.691016pt;}
.h16{height:150.000000pt;}
.h1d{height:151.000000pt;}
.h29{height:153.000000pt;}
.h26{height:157.000000pt;}
.h28{height:158.000000pt;}
.h1f{height:169.000000pt;}
.h1b{height:171.000000pt;}
.h18{height:180.000000pt;}
.h1a{height:181.000000pt;}
.h39{height:184.000000pt;}
.h1{height:184.493555pt;}
.h2{height:184.591016pt;}
.h2c{height:195.000000pt;}
.h0{height:540.000000pt;}
.wa{width:138.000000pt;}
.w8{width:164.000000pt;}
.w7{width:167.000000pt;}
.w3{width:170.000000pt;}
.w2{width:171.000000pt;}
.w6{width:174.000000pt;}
.wb{width:175.000000pt;}
.w9{width:176.000000pt;}
.w4{width:178.000000pt;}
.w5{width:191.000000pt;}
.we{width:272.000000pt;}
.wc{width:359.000000pt;}
.wd{width:396.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x34{left:9.306667pt;}
.x15{left:10.533333pt;}
.x33{left:18.173333pt;}
.x12{left:21.666652pt;}
.x11{left:26.399986pt;}
.x28{left:32.966652pt;}
.x29{left:38.299986pt;}
.x19{left:40.466652pt;}
.x9{left:42.366652pt;}
.x1d{left:44.533319pt;}
.x3c{left:47.433319pt;}
.x26{left:53.033319pt;}
.xe{left:54.366652pt;}
.xa{left:55.299986pt;}
.x2b{left:56.366652pt;}
.x46{left:84.533319pt;}
.xf{left:85.666652pt;}
.x2{left:86.666652pt;}
.x37{left:89.173333pt;}
.xb{left:90.433319pt;}
.x2d{left:100.166652pt;}
.x27{left:103.766652pt;}
.xc{left:105.833319pt;}
.x1{left:116.299986pt;}
.x36{left:117.640000pt;}
.x24{left:121.000000pt;}
.x3d{left:134.693319pt;}
.xd{left:138.466652pt;}
.x31{left:140.333319pt;}
.x13{left:144.599986pt;}
.x2e{left:147.199986pt;}
.x47{left:156.533319pt;}
.x30{left:158.026652pt;}
.x45{left:160.466652pt;}
.x4{left:168.266652pt;}
.x44{left:169.306652pt;}
.x1a{left:237.000000pt;}
.x14{left:240.000000pt;}
.x5{left:256.439986pt;}
.x23{left:261.026652pt;}
.x1f{left:291.000000pt;}
.x6{left:297.106652pt;}
.x3{left:306.173319pt;}
.x2f{left:325.533319pt;}
.x48{left:334.866652pt;}
.x2a{left:342.399986pt;}
.x1e{left:346.133319pt;}
.x3e{left:359.799986pt;}
.x8{left:384.333319pt;}
.x7{left:394.199986pt;}
.x16{left:410.000000pt;}
.x3f{left:412.839986pt;}
.x43{left:438.559986pt;}
.x42{left:450.066652pt;}
.x20{left:454.000000pt;}
.x25{left:480.000000pt;}
.x2c{left:506.866652pt;}
.x32{left:519.000000pt;}
.x49{left:526.999986pt;}
.x39{left:538.866652pt;}
.x1b{left:576.000000pt;}
.x17{left:579.000000pt;}
.x35{left:598.000000pt;}
.x10{left:602.933319pt;}
.x21{left:629.000000pt;}
.x38{left:657.173319pt;}
.x41{left:685.333319pt;}
.x40{left:731.439986pt;}
.x1c{left:749.000000pt;}
.x18{left:756.000000pt;}
.x22{left:766.000000pt;}
.x3b{left:825.266652pt;}
.x3a{left:843.199986pt;}
}




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