
    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_853d1b6f4c06d36eb41c4bd0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7effa8870535f1e7c85158bc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.011230;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_0655138dac70ec3b82024c6c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_b0caef296d1f71715cf12374.woff')format("woff");}.ff4{font-family:ff4;line-height:1.150391;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_37589e8ac04b8af0cb2e8be4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.193359;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_33f53988106acfb8257a2058.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927246;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_9187c2dde06801e2336e3d63.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_b1df0251a6acdff6c5d77040.woff')format("woff");}.ff8{font-family:ff8;line-height:1.193359;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_9187c2dde06801e2336e3d63.woff')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_82e97c79275486a9cfe7d327.woff')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_221cc526a9e9e64aac6ca365.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7f7d7d220da767b435ca4cf3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9d149fd8b4fc81499cdfb200.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8cd584567194092d568f6f54.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739258;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-8.232000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.944200px;}
.ls4{letter-spacing:-14.472000px;}
.ls0{letter-spacing:-11.448000px;}
.ls1{letter-spacing:-1.620000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.180800px;}
.ls5{letter-spacing:3.060000px;}
.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;}
}
.ws2{word-spacing:-21.000000px;}
.wsd{word-spacing:-18.000000px;}
.ws7{word-spacing:-10.494000px;}
.ws0{word-spacing:-6.552000px;}
.ws13{word-spacing:-3.456000px;}
.ws16{word-spacing:-2.040000px;}
.ws23{word-spacing:-1.656000px;}
.wsf{word-spacing:-0.900000px;}
.ws15{word-spacing:-0.840000px;}
.ws10{word-spacing:-0.540000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.072000px;}
.ws11{word-spacing:0.420000px;}
.ws18{word-spacing:1.080000px;}
.ws6{word-spacing:1.224000px;}
.ws1a{word-spacing:1.800000px;}
.ws1b{word-spacing:1.860000px;}
.ws1f{word-spacing:2.016000px;}
.wse{word-spacing:2.160000px;}
.ws12{word-spacing:2.220000px;}
.ws1d{word-spacing:2.232000px;}
.ws25{word-spacing:2.520000px;}
.wsc{word-spacing:2.580000px;}
.ws1c{word-spacing:3.120000px;}
.ws19{word-spacing:3.420000px;}
.ws27{word-spacing:3.888000px;}
.ws17{word-spacing:3.960000px;}
.ws9{word-spacing:4.968000px;}
.ws5{word-spacing:5.688000px;}
.wsb{word-spacing:5.700000px;}
.ws4{word-spacing:6.264000px;}
.ws26{word-spacing:7.800000px;}
.ws21{word-spacing:8.040000px;}
.ws1e{word-spacing:8.280000px;}
.ws22{word-spacing:9.072000px;}
.ws20{word-spacing:11.160000px;}
.wsa{word-spacing:12.096000px;}
.ws24{word-spacing:14.220000px;}
.ws3{word-spacing:14.472000px;}
.ws14{word-spacing:21.744000px;}
._1{margin-left:-8.658000px;}
._d{margin-left:-7.142400px;}
._2{margin-left:-5.985000px;}
._4{margin-left:-4.860000px;}
._3{margin-left:-3.034200px;}
._0{margin-left:-1.141800px;}
._14{width:1.072800px;}
._13{width:2.491200px;}
._18{width:3.967200px;}
._f{width:5.049000px;}
._7{width:6.184200px;}
._a{width:7.418400px;}
._8{width:9.121200px;}
._11{width:10.797600px;}
._19{width:11.877000px;}
._5{width:12.909600px;}
._1d{width:14.083200px;}
._17{width:15.422400px;}
._1a{width:16.423200px;}
._b{width:17.641800px;}
._c{width:19.423800px;}
._1c{width:20.721600px;}
._16{width:22.291200px;}
._15{width:23.464800px;}
._10{width:24.479400px;}
._9{width:28.525200px;}
._6{width:34.537800px;}
._12{width:41.071800px;}
._e{width:47.968800px;}
._1b{width:85.980000px;}
.fc4{color:rgb(100,99,99);}
.fc3{color:rgb(96,124,180);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.976000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:46.489950px;}
.y2a{bottom:56.625900px;}
.y1{bottom:59.803050px;}
.y28{bottom:60.865950px;}
.y4c{bottom:62.689950px;}
.y29{bottom:72.825900px;}
.y98{bottom:106.298100px;}
.y3{bottom:106.299150px;}
.y142{bottom:106.299300px;}
.y163{bottom:111.715350px;}
.yd0{bottom:111.936900px;}
.y19{bottom:118.256550px;}
.y97{bottom:124.298100px;}
.y72{bottom:124.299150px;}
.y141{bottom:124.299300px;}
.y184{bottom:127.560600px;}
.y27{bottom:129.559050px;}
.y182{bottom:134.640600px;}
.y18{bottom:138.056550px;}
.y162{bottom:138.715350px;}
.ycf{bottom:138.936900px;}
.y96{bottom:142.298100px;}
.y71{bottom:142.299150px;}
.y140{bottom:142.299300px;}
.y183{bottom:149.160600px;}
.y26{bottom:149.359050px;}
.y4b{bottom:155.081400px;}
.y95{bottom:160.298100px;}
.yb8{bottom:160.299150px;}
.y13f{bottom:160.299300px;}
.y181{bottom:161.640600px;}
.y161{bottom:165.715350px;}
.yce{bottom:165.936900px;}
.y17{bottom:166.354050px;}
.y25{bottom:177.656550px;}
.y94{bottom:178.298100px;}
.yb7{bottom:178.299150px;}
.y13e{bottom:178.299300px;}
.y4a{bottom:182.081400px;}
.y160{bottom:192.715350px;}
.y180{bottom:192.888600px;}
.ycd{bottom:192.936900px;}
.yb6{bottom:196.299150px;}
.y13d{bottom:196.299300px;}
.y70{bottom:199.864650px;}
.y93{bottom:204.803100px;}
.ye8{bottom:205.721100px;}
.y49{bottom:209.081400px;}
.y16{bottom:211.663050px;}
.yb5{bottom:214.299150px;}
.y107{bottom:218.075400px;}
.y15f{bottom:219.715350px;}
.y17f{bottom:219.888600px;}
.ycc{bottom:219.936900px;}
.y92{bottom:222.803100px;}
.ye7{bottom:225.521100px;}
.y6f{bottom:226.864650px;}
.y13c{bottom:228.025350px;}
.y15{bottom:231.463050px;}
.y48{bottom:236.081400px;}
.y91{bottom:240.803100px;}
.y106{bottom:245.075400px;}
.ye6{bottom:245.321100px;}
.y17e{bottom:246.888600px;}
.ycb{bottom:246.936900px;}
.y13b{bottom:247.825350px;}
.y15e{bottom:250.963350px;}
.y14{bottom:251.263050px;}
.y24{bottom:251.279550px;}
.y120{bottom:251.529150px;}
.y6e{bottom:253.864650px;}
.y47{bottom:263.081400px;}
.ye5{bottom:265.121100px;}
.y13{bottom:271.063050px;}
.y23{bottom:271.079550px;}
.yb4{bottom:271.123050px;}
.y105{bottom:272.075400px;}
.y17d{bottom:273.888600px;}
.yca{bottom:273.936900px;}
.y15d{bottom:277.963350px;}
.y11f{bottom:278.529150px;}
.y6d{bottom:280.864650px;}
.ye4{bottom:284.921100px;}
.y90{bottom:287.448900px;}
.y46{bottom:290.081400px;}
.y12{bottom:290.863050px;}
.y22{bottom:290.879550px;}
.yb3{bottom:298.123050px;}
.y104{bottom:299.075400px;}
.yc9{bottom:300.936900px;}
.y13a{bottom:303.889050px;}
.y15c{bottom:304.963350px;}
.y17c{bottom:305.136600px;}
.y8f{bottom:307.248900px;}
.y6c{bottom:307.864650px;}
.y11{bottom:310.663050px;}
.y21{bottom:310.679550px;}
.yb2{bottom:325.123050px;}
.y103{bottom:326.075400px;}
.y8e{bottom:327.048900px;}
.yc8{bottom:327.936900px;}
.y139{bottom:329.737050px;}
.y10{bottom:330.463050px;}
.y20{bottom:330.479550px;}
.y15b{bottom:331.963350px;}
.y17b{bottom:332.136600px;}
.y6b{bottom:334.864650px;}
.y45{bottom:340.392000px;}
.y8d{bottom:346.848900px;}
.yf{bottom:350.263050px;}
.y1f{bottom:350.279550px;}
.yb1{bottom:352.123050px;}
.y102{bottom:353.075400px;}
.yc7{bottom:354.936900px;}
.y138{bottom:356.737050px;}
.y15a{bottom:358.963350px;}
.y6a{bottom:361.864650px;}
.y17a{bottom:363.384600px;}
.ye3{bottom:365.736900px;}
.y11e{bottom:365.841000px;}
.y8c{bottom:366.648900px;}
.ye{bottom:370.063050px;}
.y1e{bottom:370.079550px;}
.y101{bottom:380.075400px;}
.yc6{bottom:381.936900px;}
.y137{bottom:383.737050px;}
.y11d{bottom:385.641000px;}
.y8b{bottom:386.448900px;}
.y69{bottom:388.864650px;}
.yd{bottom:389.863050px;}
.y1d{bottom:389.879550px;}
.y159{bottom:390.211350px;}
.y179{bottom:390.384600px;}
.ye2{bottom:392.736900px;}
.y11c{bottom:405.441000px;}
.y100{bottom:407.075400px;}
.yc5{bottom:408.936900px;}
.yc{bottom:409.663050px;}
.y1c{bottom:409.679550px;}
.y136{bottom:410.737050px;}
.y68{bottom:415.864650px;}
.y158{bottom:417.211350px;}
.ye1{bottom:419.736900px;}
.y178{bottom:421.632600px;}
.y11b{bottom:425.241000px;}
.y44{bottom:426.808950px;}
.yb{bottom:429.463050px;}
.y1b{bottom:429.479550px;}
.yff{bottom:434.075400px;}
.yc4{bottom:435.936900px;}
.y135{bottom:437.737050px;}
.y157{bottom:444.211350px;}
.yb0{bottom:444.433650px;}
.y11a{bottom:445.041000px;}
.ye0{bottom:446.736900px;}
.y177{bottom:448.632600px;}
.y67{bottom:451.360650px;}
.y43{bottom:453.808950px;}
.ya{bottom:462.017550px;}
.y1a{bottom:462.034050px;}
.yc3{bottom:462.936900px;}
.y134{bottom:464.737050px;}
.y119{bottom:464.841000px;}
.y8a{bottom:468.360600px;}
.yfe{bottom:469.571400px;}
.ydf{bottom:473.736900px;}
.y66{bottom:478.360650px;}
.y176{bottom:479.880600px;}
.y42{bottom:480.808950px;}
.y118{bottom:484.641000px;}
.yaf{bottom:488.850750px;}
.yc2{bottom:489.936900px;}
.y133{bottom:491.737050px;}
.y156{bottom:492.471150px;}
.y89{bottom:495.360600px;}
.yfd{bottom:496.571400px;}
.y117{bottom:504.441000px;}
.y65{bottom:505.360650px;}
.y41{bottom:507.808950px;}
.y175{bottom:511.128600px;}
.yae{bottom:515.850750px;}
.yc1{bottom:516.936900px;}
.y132{bottom:518.737050px;}
.y88{bottom:522.360600px;}
.yfc{bottom:523.571400px;}
.y64{bottom:532.360650px;}
.y40{bottom:534.808950px;}
.y174{bottom:542.376600px;}
.yad{bottom:542.850750px;}
.yc0{bottom:543.936900px;}
.y131{bottom:545.737050px;}
.y87{bottom:549.360600px;}
.yfb{bottom:550.571400px;}
.y63{bottom:559.360650px;}
.yde{bottom:561.048600px;}
.y3f{bottom:561.808950px;}
.y173{bottom:569.376600px;}
.yac{bottom:569.850750px;}
.ybf{bottom:570.936900px;}
.y130{bottom:572.737050px;}
.y86{bottom:576.360600px;}
.yfa{bottom:577.571400px;}
.ydd{bottom:580.848600px;}
.y155{bottom:580.931100px;}
.y116{bottom:586.352700px;}
.y62{bottom:586.360650px;}
.y3e{bottom:588.808950px;}
.yab{bottom:596.850750px;}
.ybe{bottom:597.936900px;}
.y12f{bottom:599.737050px;}
.y172{bottom:600.624600px;}
.ydc{bottom:600.648600px;}
.y85{bottom:603.360600px;}
.yf9{bottom:604.571400px;}
.y154{bottom:607.931100px;}
.y115{bottom:613.352700px;}
.y61{bottom:613.360650px;}
.y3d{bottom:615.808950px;}
.ydb{bottom:620.448600px;}
.yaa{bottom:623.850750px;}
.y12e{bottom:626.737050px;}
.y171{bottom:627.624600px;}
.y84{bottom:630.360600px;}
.yf8{bottom:631.571400px;}
.y153{bottom:634.931100px;}
.yda{bottom:640.248600px;}
.y114{bottom:640.352700px;}
.y60{bottom:640.360650px;}
.ya9{bottom:650.850750px;}
.y3c{bottom:651.304950px;}
.y170{bottom:654.624600px;}
.y83{bottom:657.360600px;}
.yd9{bottom:660.048600px;}
.y152{bottom:661.931100px;}
.y5f{bottom:667.360650px;}
.y113{bottom:667.368600px;}
.yf7{bottom:677.831400px;}
.ya8{bottom:677.850750px;}
.y3b{bottom:678.304950px;}
.yd8{bottom:679.848600px;}
.y82{bottom:684.360600px;}
.ybd{bottom:685.248750px;}
.y16f{bottom:685.872600px;}
.y151{bottom:688.931100px;}
.y5e{bottom:694.360650px;}
.y112{bottom:694.368600px;}
.yd7{bottom:699.648600px;}
.ya7{bottom:704.850750px;}
.ybc{bottom:705.048750px;}
.y3a{bottom:705.304950px;}
.y81{bottom:711.360600px;}
.y16e{bottom:712.872600px;}
.y12d{bottom:715.848900px;}
.y150{bottom:715.931100px;}
.yd6{bottom:719.448600px;}
.yf6{bottom:720.691200px;}
.y111{bottom:721.368600px;}
.ybb{bottom:724.848750px;}
.y5d{bottom:729.856650px;}
.ya6{bottom:731.850750px;}
.y39{bottom:732.304950px;}
.y12c{bottom:735.648900px;}
.y80{bottom:738.360600px;}
.yd5{bottom:739.248600px;}
.y16d{bottom:739.872600px;}
.yf5{bottom:740.491200px;}
.y14f{bottom:742.931100px;}
.yba{bottom:744.648750px;}
.y110{bottom:748.368600px;}
.y12b{bottom:755.448900px;}
.y5c{bottom:756.856650px;}
.ya5{bottom:758.850750px;}
.yd4{bottom:759.048600px;}
.y38{bottom:759.304950px;}
.yf4{bottom:760.291200px;}
.yb9{bottom:764.448750px;}
.y7f{bottom:765.360600px;}
.y14e{bottom:769.931100px;}
.y16c{bottom:771.120600px;}
.y12a{bottom:775.248900px;}
.y10f{bottom:775.368600px;}
.yd3{bottom:778.848600px;}
.yf3{bottom:780.091200px;}
.y5b{bottom:783.856650px;}
.ya4{bottom:785.850750px;}
.y37{bottom:786.304950px;}
.y7e{bottom:792.360600px;}
.y129{bottom:795.048900px;}
.y14d{bottom:796.931100px;}
.y16b{bottom:798.120600px;}
.yd2{bottom:798.648600px;}
.yf2{bottom:799.891200px;}
.y5a{bottom:810.856650px;}
.y10e{bottom:810.864600px;}
.y36{bottom:813.304950px;}
.y128{bottom:814.848900px;}
.yd1{bottom:818.448600px;}
.y7d{bottom:819.360600px;}
.ya3{bottom:821.346750px;}
.y14c{bottom:823.931100px;}
.y16a{bottom:829.368600px;}
.y127{bottom:834.648900px;}
.y59{bottom:837.856650px;}
.y10d{bottom:837.864600px;}
.y35{bottom:840.304950px;}
.y7c{bottom:846.360600px;}
.ya2{bottom:848.346750px;}
.y14b{bottom:850.931100px;}
.y5{bottom:852.539100px;}
.y126{bottom:854.448900px;}
.y169{bottom:856.368600px;}
.y58{bottom:864.856650px;}
.y10c{bottom:864.864600px;}
.y34{bottom:867.304950px;}
.y7b{bottom:873.360600px;}
.y125{bottom:874.248900px;}
.ya1{bottom:875.346750px;}
.y14a{bottom:877.931100px;}
.y4{bottom:880.836600px;}
.yf1{bottom:881.803050px;}
.y168{bottom:887.616600px;}
.y57{bottom:891.856650px;}
.y10b{bottom:891.864600px;}
.y124{bottom:894.048900px;}
.y33{bottom:894.304950px;}
.y7a{bottom:900.360600px;}
.ya0{bottom:902.346750px;}
.y149{bottom:904.931100px;}
.yf0{bottom:908.803050px;}
.y123{bottom:913.848900px;}
.y167{bottom:914.616600px;}
.y56{bottom:918.856650px;}
.y10a{bottom:918.864600px;}
.y32{bottom:921.304950px;}
.y79{bottom:927.360600px;}
.y9f{bottom:929.346750px;}
.y148{bottom:931.931100px;}
.y122{bottom:933.648900px;}
.yef{bottom:935.803050px;}
.y166{bottom:941.616600px;}
.y55{bottom:945.856650px;}
.y109{bottom:945.864600px;}
.y31{bottom:948.304950px;}
.y9{bottom:949.748850px;}
.y121{bottom:953.448900px;}
.y78{bottom:954.360600px;}
.y9e{bottom:956.346750px;}
.yee{bottom:962.803050px;}
.y8{bottom:971.348850px;}
.y54{bottom:972.856650px;}
.y108{bottom:972.864600px;}
.y30{bottom:975.304950px;}
.y77{bottom:981.360600px;}
.y147{bottom:982.241700px;}
.y9d{bottom:983.346750px;}
.yed{bottom:989.803050px;}
.y53{bottom:999.864600px;}
.y2f{bottom:1002.304950px;}
.y7{bottom:1005.704700px;}
.y76{bottom:1008.360600px;}
.y9c{bottom:1010.346750px;}
.yec{bottom:1016.803050px;}
.y52{bottom:1026.864600px;}
.y2e{bottom:1029.304950px;}
.y165{bottom:1031.112600px;}
.y6{bottom:1032.704700px;}
.y75{bottom:1035.360600px;}
.y9b{bottom:1037.346750px;}
.y146{bottom:1043.660100px;}
.yeb{bottom:1043.803050px;}
.y51{bottom:1053.864600px;}
.y2d{bottom:1056.304950px;}
.y164{bottom:1058.112600px;}
.y74{bottom:1062.360600px;}
.y145{bottom:1065.258600px;}
.yea{bottom:1070.803050px;}
.y50{bottom:1080.864600px;}
.y144{bottom:1085.058600px;}
.y73{bottom:1089.360600px;}
.ye9{bottom:1097.803050px;}
.y143{bottom:1104.858600px;}
.y4f{bottom:1116.360600px;}
.y9a{bottom:1124.658600px;}
.y2c{bottom:1143.215550px;}
.y4e{bottom:1143.360600px;}
.y99{bottom:1144.458600px;}
.y2{bottom:1187.898450px;}
.y2b{bottom:1204.375350px;}
.h3{height:39.418945px;}
.hf{height:41.660156px;}
.hc{height:43.798828px;}
.h8{height:46.664062px;}
.hd{height:52.646484px;}
.h9{height:54.755859px;}
.h4{height:55.488281px;}
.ha{height:59.390625px;}
.h5{height:61.037109px;}
.h2{height:63.175781px;}
.h7{height:65.707031px;}
.hb{height:66.585938px;}
.h10{height:66.966056px;}
.he{height:69.902766px;}
.h6{height:83.715820px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:73.338150px;}
.x7{left:86.527500px;}
.x2{left:106.299150px;}
.xb{left:127.559100px;}
.xf{left:131.805150px;}
.xe{left:148.818900px;}
.x6{left:455.455650px;}
.x8{left:492.632700px;}
.x4{left:591.844950px;}
.xd{left:600.820650px;}
.x5{left:640.948950px;}
.x9{left:706.047450px;}
.x1{left:793.488150px;}
.x3{left:832.882950px;}
.xc{left:838.695600px;}
@media print{
.v1{vertical-align:-7.317333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.283733pt;}
.ls4{letter-spacing:-12.864000pt;}
.ls0{letter-spacing:-10.176000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.049600pt;}
.ls5{letter-spacing:2.720000pt;}
.ws2{word-spacing:-18.666667pt;}
.wsd{word-spacing:-16.000000pt;}
.ws7{word-spacing:-9.328000pt;}
.ws0{word-spacing:-5.824000pt;}
.ws13{word-spacing:-3.072000pt;}
.ws16{word-spacing:-1.813333pt;}
.ws23{word-spacing:-1.472000pt;}
.wsf{word-spacing:-0.800000pt;}
.ws15{word-spacing:-0.746667pt;}
.ws10{word-spacing:-0.480000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.064000pt;}
.ws11{word-spacing:0.373333pt;}
.ws18{word-spacing:0.960000pt;}
.ws6{word-spacing:1.088000pt;}
.ws1a{word-spacing:1.600000pt;}
.ws1b{word-spacing:1.653333pt;}
.ws1f{word-spacing:1.792000pt;}
.wse{word-spacing:1.920000pt;}
.ws12{word-spacing:1.973333pt;}
.ws1d{word-spacing:1.984000pt;}
.ws25{word-spacing:2.240000pt;}
.wsc{word-spacing:2.293333pt;}
.ws1c{word-spacing:2.773333pt;}
.ws19{word-spacing:3.040000pt;}
.ws27{word-spacing:3.456000pt;}
.ws17{word-spacing:3.520000pt;}
.ws9{word-spacing:4.416000pt;}
.ws5{word-spacing:5.056000pt;}
.wsb{word-spacing:5.066667pt;}
.ws4{word-spacing:5.568000pt;}
.ws26{word-spacing:6.933333pt;}
.ws21{word-spacing:7.146667pt;}
.ws1e{word-spacing:7.360000pt;}
.ws22{word-spacing:8.064000pt;}
.ws20{word-spacing:9.920000pt;}
.wsa{word-spacing:10.752000pt;}
.ws24{word-spacing:12.640000pt;}
.ws3{word-spacing:12.864000pt;}
.ws14{word-spacing:19.328000pt;}
._1{margin-left:-7.696000pt;}
._d{margin-left:-6.348800pt;}
._2{margin-left:-5.320000pt;}
._4{margin-left:-4.320000pt;}
._3{margin-left:-2.697067pt;}
._0{margin-left:-1.014933pt;}
._14{width:0.953600pt;}
._13{width:2.214400pt;}
._18{width:3.526400pt;}
._f{width:4.488000pt;}
._7{width:5.497067pt;}
._a{width:6.594133pt;}
._8{width:8.107733pt;}
._11{width:9.597867pt;}
._19{width:10.557333pt;}
._5{width:11.475200pt;}
._1d{width:12.518400pt;}
._17{width:13.708800pt;}
._1a{width:14.598400pt;}
._b{width:15.681600pt;}
._c{width:17.265600pt;}
._1c{width:18.419200pt;}
._16{width:19.814400pt;}
._15{width:20.857600pt;}
._10{width:21.759467pt;}
._9{width:25.355733pt;}
._6{width:30.700267pt;}
._12{width:36.508267pt;}
._e{width:42.638933pt;}
._1b{width:76.426667pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:41.324400pt;}
.y2a{bottom:50.334133pt;}
.y1{bottom:53.158267pt;}
.y28{bottom:54.103067pt;}
.y4c{bottom:55.724400pt;}
.y29{bottom:64.734133pt;}
.y98{bottom:94.487200pt;}
.y3{bottom:94.488133pt;}
.y142{bottom:94.488267pt;}
.y163{bottom:99.302533pt;}
.yd0{bottom:99.499467pt;}
.y19{bottom:105.116933pt;}
.y97{bottom:110.487200pt;}
.y72{bottom:110.488133pt;}
.y141{bottom:110.488267pt;}
.y184{bottom:113.387200pt;}
.y27{bottom:115.163600pt;}
.y182{bottom:119.680533pt;}
.y18{bottom:122.716933pt;}
.y162{bottom:123.302533pt;}
.ycf{bottom:123.499467pt;}
.y96{bottom:126.487200pt;}
.y71{bottom:126.488133pt;}
.y140{bottom:126.488267pt;}
.y183{bottom:132.587200pt;}
.y26{bottom:132.763600pt;}
.y4b{bottom:137.850133pt;}
.y95{bottom:142.487200pt;}
.yb8{bottom:142.488133pt;}
.y13f{bottom:142.488267pt;}
.y181{bottom:143.680533pt;}
.y161{bottom:147.302533pt;}
.yce{bottom:147.499467pt;}
.y17{bottom:147.870267pt;}
.y25{bottom:157.916933pt;}
.y94{bottom:158.487200pt;}
.yb7{bottom:158.488133pt;}
.y13e{bottom:158.488267pt;}
.y4a{bottom:161.850133pt;}
.y160{bottom:171.302533pt;}
.y180{bottom:171.456533pt;}
.ycd{bottom:171.499467pt;}
.yb6{bottom:174.488133pt;}
.y13d{bottom:174.488267pt;}
.y70{bottom:177.657467pt;}
.y93{bottom:182.047200pt;}
.ye8{bottom:182.863200pt;}
.y49{bottom:185.850133pt;}
.y16{bottom:188.144933pt;}
.yb5{bottom:190.488133pt;}
.y107{bottom:193.844800pt;}
.y15f{bottom:195.302533pt;}
.y17f{bottom:195.456533pt;}
.ycc{bottom:195.499467pt;}
.y92{bottom:198.047200pt;}
.ye7{bottom:200.463200pt;}
.y6f{bottom:201.657467pt;}
.y13c{bottom:202.689200pt;}
.y15{bottom:205.744933pt;}
.y48{bottom:209.850133pt;}
.y91{bottom:214.047200pt;}
.y106{bottom:217.844800pt;}
.ye6{bottom:218.063200pt;}
.y17e{bottom:219.456533pt;}
.ycb{bottom:219.499467pt;}
.y13b{bottom:220.289200pt;}
.y15e{bottom:223.078533pt;}
.y14{bottom:223.344933pt;}
.y24{bottom:223.359600pt;}
.y120{bottom:223.581467pt;}
.y6e{bottom:225.657467pt;}
.y47{bottom:233.850133pt;}
.ye5{bottom:235.663200pt;}
.y13{bottom:240.944933pt;}
.y23{bottom:240.959600pt;}
.yb4{bottom:240.998267pt;}
.y105{bottom:241.844800pt;}
.y17d{bottom:243.456533pt;}
.yca{bottom:243.499467pt;}
.y15d{bottom:247.078533pt;}
.y11f{bottom:247.581467pt;}
.y6d{bottom:249.657467pt;}
.ye4{bottom:253.263200pt;}
.y90{bottom:255.510133pt;}
.y46{bottom:257.850133pt;}
.y12{bottom:258.544933pt;}
.y22{bottom:258.559600pt;}
.yb3{bottom:264.998267pt;}
.y104{bottom:265.844800pt;}
.yc9{bottom:267.499467pt;}
.y13a{bottom:270.123600pt;}
.y15c{bottom:271.078533pt;}
.y17c{bottom:271.232533pt;}
.y8f{bottom:273.110133pt;}
.y6c{bottom:273.657467pt;}
.y11{bottom:276.144933pt;}
.y21{bottom:276.159600pt;}
.yb2{bottom:288.998267pt;}
.y103{bottom:289.844800pt;}
.y8e{bottom:290.710133pt;}
.yc8{bottom:291.499467pt;}
.y139{bottom:293.099600pt;}
.y10{bottom:293.744933pt;}
.y20{bottom:293.759600pt;}
.y15b{bottom:295.078533pt;}
.y17b{bottom:295.232533pt;}
.y6b{bottom:297.657467pt;}
.y45{bottom:302.570667pt;}
.y8d{bottom:308.310133pt;}
.yf{bottom:311.344933pt;}
.y1f{bottom:311.359600pt;}
.yb1{bottom:312.998267pt;}
.y102{bottom:313.844800pt;}
.yc7{bottom:315.499467pt;}
.y138{bottom:317.099600pt;}
.y15a{bottom:319.078533pt;}
.y6a{bottom:321.657467pt;}
.y17a{bottom:323.008533pt;}
.ye3{bottom:325.099467pt;}
.y11e{bottom:325.192000pt;}
.y8c{bottom:325.910133pt;}
.ye{bottom:328.944933pt;}
.y1e{bottom:328.959600pt;}
.y101{bottom:337.844800pt;}
.yc6{bottom:339.499467pt;}
.y137{bottom:341.099600pt;}
.y11d{bottom:342.792000pt;}
.y8b{bottom:343.510133pt;}
.y69{bottom:345.657467pt;}
.yd{bottom:346.544933pt;}
.y1d{bottom:346.559600pt;}
.y159{bottom:346.854533pt;}
.y179{bottom:347.008533pt;}
.ye2{bottom:349.099467pt;}
.y11c{bottom:360.392000pt;}
.y100{bottom:361.844800pt;}
.yc5{bottom:363.499467pt;}
.yc{bottom:364.144933pt;}
.y1c{bottom:364.159600pt;}
.y136{bottom:365.099600pt;}
.y68{bottom:369.657467pt;}
.y158{bottom:370.854533pt;}
.ye1{bottom:373.099467pt;}
.y178{bottom:374.784533pt;}
.y11b{bottom:377.992000pt;}
.y44{bottom:379.385733pt;}
.yb{bottom:381.744933pt;}
.y1b{bottom:381.759600pt;}
.yff{bottom:385.844800pt;}
.yc4{bottom:387.499467pt;}
.y135{bottom:389.099600pt;}
.y157{bottom:394.854533pt;}
.yb0{bottom:395.052133pt;}
.y11a{bottom:395.592000pt;}
.ye0{bottom:397.099467pt;}
.y177{bottom:398.784533pt;}
.y67{bottom:401.209467pt;}
.y43{bottom:403.385733pt;}
.ya{bottom:410.682267pt;}
.y1a{bottom:410.696933pt;}
.yc3{bottom:411.499467pt;}
.y134{bottom:413.099600pt;}
.y119{bottom:413.192000pt;}
.y8a{bottom:416.320533pt;}
.yfe{bottom:417.396800pt;}
.ydf{bottom:421.099467pt;}
.y66{bottom:425.209467pt;}
.y176{bottom:426.560533pt;}
.y42{bottom:427.385733pt;}
.y118{bottom:430.792000pt;}
.yaf{bottom:434.534000pt;}
.yc2{bottom:435.499467pt;}
.y133{bottom:437.099600pt;}
.y156{bottom:437.752133pt;}
.y89{bottom:440.320533pt;}
.yfd{bottom:441.396800pt;}
.y117{bottom:448.392000pt;}
.y65{bottom:449.209467pt;}
.y41{bottom:451.385733pt;}
.y175{bottom:454.336533pt;}
.yae{bottom:458.534000pt;}
.yc1{bottom:459.499467pt;}
.y132{bottom:461.099600pt;}
.y88{bottom:464.320533pt;}
.yfc{bottom:465.396800pt;}
.y64{bottom:473.209467pt;}
.y40{bottom:475.385733pt;}
.y174{bottom:482.112533pt;}
.yad{bottom:482.534000pt;}
.yc0{bottom:483.499467pt;}
.y131{bottom:485.099600pt;}
.y87{bottom:488.320533pt;}
.yfb{bottom:489.396800pt;}
.y63{bottom:497.209467pt;}
.yde{bottom:498.709867pt;}
.y3f{bottom:499.385733pt;}
.y173{bottom:506.112533pt;}
.yac{bottom:506.534000pt;}
.ybf{bottom:507.499467pt;}
.y130{bottom:509.099600pt;}
.y86{bottom:512.320533pt;}
.yfa{bottom:513.396800pt;}
.ydd{bottom:516.309867pt;}
.y155{bottom:516.383200pt;}
.y116{bottom:521.202400pt;}
.y62{bottom:521.209467pt;}
.y3e{bottom:523.385733pt;}
.yab{bottom:530.534000pt;}
.ybe{bottom:531.499467pt;}
.y12f{bottom:533.099600pt;}
.y172{bottom:533.888533pt;}
.ydc{bottom:533.909867pt;}
.y85{bottom:536.320533pt;}
.yf9{bottom:537.396800pt;}
.y154{bottom:540.383200pt;}
.y115{bottom:545.202400pt;}
.y61{bottom:545.209467pt;}
.y3d{bottom:547.385733pt;}
.ydb{bottom:551.509867pt;}
.yaa{bottom:554.534000pt;}
.y12e{bottom:557.099600pt;}
.y171{bottom:557.888533pt;}
.y84{bottom:560.320533pt;}
.yf8{bottom:561.396800pt;}
.y153{bottom:564.383200pt;}
.yda{bottom:569.109867pt;}
.y114{bottom:569.202400pt;}
.y60{bottom:569.209467pt;}
.ya9{bottom:578.534000pt;}
.y3c{bottom:578.937733pt;}
.y170{bottom:581.888533pt;}
.y83{bottom:584.320533pt;}
.yd9{bottom:586.709867pt;}
.y152{bottom:588.383200pt;}
.y5f{bottom:593.209467pt;}
.y113{bottom:593.216533pt;}
.yf7{bottom:602.516800pt;}
.ya8{bottom:602.534000pt;}
.y3b{bottom:602.937733pt;}
.yd8{bottom:604.309867pt;}
.y82{bottom:608.320533pt;}
.ybd{bottom:609.110000pt;}
.y16f{bottom:609.664533pt;}
.y151{bottom:612.383200pt;}
.y5e{bottom:617.209467pt;}
.y112{bottom:617.216533pt;}
.yd7{bottom:621.909867pt;}
.ya7{bottom:626.534000pt;}
.ybc{bottom:626.710000pt;}
.y3a{bottom:626.937733pt;}
.y81{bottom:632.320533pt;}
.y16e{bottom:633.664533pt;}
.y12d{bottom:636.310133pt;}
.y150{bottom:636.383200pt;}
.yd6{bottom:639.509867pt;}
.yf6{bottom:640.614400pt;}
.y111{bottom:641.216533pt;}
.ybb{bottom:644.310000pt;}
.y5d{bottom:648.761467pt;}
.ya6{bottom:650.534000pt;}
.y39{bottom:650.937733pt;}
.y12c{bottom:653.910133pt;}
.y80{bottom:656.320533pt;}
.yd5{bottom:657.109867pt;}
.y16d{bottom:657.664533pt;}
.yf5{bottom:658.214400pt;}
.y14f{bottom:660.383200pt;}
.yba{bottom:661.910000pt;}
.y110{bottom:665.216533pt;}
.y12b{bottom:671.510133pt;}
.y5c{bottom:672.761467pt;}
.ya5{bottom:674.534000pt;}
.yd4{bottom:674.709867pt;}
.y38{bottom:674.937733pt;}
.yf4{bottom:675.814400pt;}
.yb9{bottom:679.510000pt;}
.y7f{bottom:680.320533pt;}
.y14e{bottom:684.383200pt;}
.y16c{bottom:685.440533pt;}
.y12a{bottom:689.110133pt;}
.y10f{bottom:689.216533pt;}
.yd3{bottom:692.309867pt;}
.yf3{bottom:693.414400pt;}
.y5b{bottom:696.761467pt;}
.ya4{bottom:698.534000pt;}
.y37{bottom:698.937733pt;}
.y7e{bottom:704.320533pt;}
.y129{bottom:706.710133pt;}
.y14d{bottom:708.383200pt;}
.y16b{bottom:709.440533pt;}
.yd2{bottom:709.909867pt;}
.yf2{bottom:711.014400pt;}
.y5a{bottom:720.761467pt;}
.y10e{bottom:720.768533pt;}
.y36{bottom:722.937733pt;}
.y128{bottom:724.310133pt;}
.yd1{bottom:727.509867pt;}
.y7d{bottom:728.320533pt;}
.ya3{bottom:730.086000pt;}
.y14c{bottom:732.383200pt;}
.y16a{bottom:737.216533pt;}
.y127{bottom:741.910133pt;}
.y59{bottom:744.761467pt;}
.y10d{bottom:744.768533pt;}
.y35{bottom:746.937733pt;}
.y7c{bottom:752.320533pt;}
.ya2{bottom:754.086000pt;}
.y14b{bottom:756.383200pt;}
.y5{bottom:757.812533pt;}
.y126{bottom:759.510133pt;}
.y169{bottom:761.216533pt;}
.y58{bottom:768.761467pt;}
.y10c{bottom:768.768533pt;}
.y34{bottom:770.937733pt;}
.y7b{bottom:776.320533pt;}
.y125{bottom:777.110133pt;}
.ya1{bottom:778.086000pt;}
.y14a{bottom:780.383200pt;}
.y4{bottom:782.965867pt;}
.yf1{bottom:783.824933pt;}
.y168{bottom:788.992533pt;}
.y57{bottom:792.761467pt;}
.y10b{bottom:792.768533pt;}
.y124{bottom:794.710133pt;}
.y33{bottom:794.937733pt;}
.y7a{bottom:800.320533pt;}
.ya0{bottom:802.086000pt;}
.y149{bottom:804.383200pt;}
.yf0{bottom:807.824933pt;}
.y123{bottom:812.310133pt;}
.y167{bottom:812.992533pt;}
.y56{bottom:816.761467pt;}
.y10a{bottom:816.768533pt;}
.y32{bottom:818.937733pt;}
.y79{bottom:824.320533pt;}
.y9f{bottom:826.086000pt;}
.y148{bottom:828.383200pt;}
.y122{bottom:829.910133pt;}
.yef{bottom:831.824933pt;}
.y166{bottom:836.992533pt;}
.y55{bottom:840.761467pt;}
.y109{bottom:840.768533pt;}
.y31{bottom:842.937733pt;}
.y9{bottom:844.221200pt;}
.y121{bottom:847.510133pt;}
.y78{bottom:848.320533pt;}
.y9e{bottom:850.086000pt;}
.yee{bottom:855.824933pt;}
.y8{bottom:863.421200pt;}
.y54{bottom:864.761467pt;}
.y108{bottom:864.768533pt;}
.y30{bottom:866.937733pt;}
.y77{bottom:872.320533pt;}
.y147{bottom:873.103733pt;}
.y9d{bottom:874.086000pt;}
.yed{bottom:879.824933pt;}
.y53{bottom:888.768533pt;}
.y2f{bottom:890.937733pt;}
.y7{bottom:893.959733pt;}
.y76{bottom:896.320533pt;}
.y9c{bottom:898.086000pt;}
.yec{bottom:903.824933pt;}
.y52{bottom:912.768533pt;}
.y2e{bottom:914.937733pt;}
.y165{bottom:916.544533pt;}
.y6{bottom:917.959733pt;}
.y75{bottom:920.320533pt;}
.y9b{bottom:922.086000pt;}
.y146{bottom:927.697867pt;}
.yeb{bottom:927.824933pt;}
.y51{bottom:936.768533pt;}
.y2d{bottom:938.937733pt;}
.y164{bottom:940.544533pt;}
.y74{bottom:944.320533pt;}
.y145{bottom:946.896533pt;}
.yea{bottom:951.824933pt;}
.y50{bottom:960.768533pt;}
.y144{bottom:964.496533pt;}
.y73{bottom:968.320533pt;}
.ye9{bottom:975.824933pt;}
.y143{bottom:982.096533pt;}
.y4f{bottom:992.320533pt;}
.y9a{bottom:999.696533pt;}
.y2c{bottom:1016.191600pt;}
.y4e{bottom:1016.320533pt;}
.y99{bottom:1017.296533pt;}
.y2{bottom:1055.909733pt;}
.y2b{bottom:1070.555867pt;}
.h3{height:35.039062pt;}
.hf{height:37.031250pt;}
.hc{height:38.932292pt;}
.h8{height:41.479167pt;}
.hd{height:46.796875pt;}
.h9{height:48.671875pt;}
.h4{height:49.322917pt;}
.ha{height:52.791667pt;}
.h5{height:54.255208pt;}
.h2{height:56.156250pt;}
.h7{height:58.406250pt;}
.hb{height:59.187500pt;}
.h10{height:59.525383pt;}
.he{height:62.135792pt;}
.h6{height:74.414062pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:65.189467pt;}
.x7{left:76.913333pt;}
.x2{left:94.488133pt;}
.xb{left:113.385867pt;}
.xf{left:117.160133pt;}
.xe{left:132.283467pt;}
.x6{left:404.849467pt;}
.x8{left:437.895733pt;}
.x4{left:526.084400pt;}
.xd{left:534.062800pt;}
.x5{left:569.732400pt;}
.x9{left:627.597733pt;}
.x1{left:705.322800pt;}
.x3{left:740.340400pt;}
.xc{left:745.507200pt;}
}




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