
    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_08fd19d8a0aa7436e8d9627c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_2b44234581dcd5b41152c18e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_5401d0381f7303f23d7b6b23.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_3749ecb3f7b6a7fdb12d4e95.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_1bef4fd4e1a731bfcaf7e5f1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_067f118378e46512ae4d90ea.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933105;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_b26a1a73a722a9acc6937bd4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_97211af4dc8087b88ae41ef1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_6e05ac3e0b8cd2841488ce72.woff')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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_a0501e9ce61c59b38c3f5205.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.872130px;}
.ls9{letter-spacing:0.923432px;}
.ls2{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.476000px;}
.ls3{letter-spacing:1.728000px;}
.ls5{letter-spacing:1.782000px;}
.ls6{letter-spacing:5.130000px;}
.ls7{letter-spacing:5.184000px;}
.ls1{letter-spacing:859.319000px;}
.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:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-18.854533px;}
.ws8{word-spacing:-16.416000px;}
.ws6{word-spacing:-16.254000px;}
.ws5{word-spacing:-14.958000px;}
.wsc{word-spacing:-14.210587px;}
.wse{word-spacing:-13.344407px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:241.740000px;}
.ws9{word-spacing:390.376392px;}
.wsa{word-spacing:457.907392px;}
.wsb{word-spacing:489.406294px;}
.wsd{word-spacing:818.997770px;}
._41{margin-left:-9.135072px;}
._9{margin-left:-7.872618px;}
._7{margin-left:-5.977006px;}
._42{margin-left:-4.468575px;}
._4{margin-left:-3.444574px;}
._3{margin-left:-2.279474px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._a{width:3.653873px;}
._f{width:4.709250px;}
._e{width:5.869425px;}
._6{width:7.001045px;}
._10{width:8.107468px;}
._11{width:9.157228px;}
._c{width:10.206000px;}
._d{width:11.489853px;}
._b{width:13.488249px;}
._15{width:17.011776px;}
._8{width:18.995242px;}
._17{width:20.971811px;}
._3f{width:22.070534px;}
._19{width:24.123462px;}
._18{width:26.302359px;}
._2e{width:32.739966px;}
._16{width:37.516433px;}
._5{width:45.528102px;}
._1a{width:89.990827px;}
._40{width:115.685464px;}
._23{width:130.608109px;}
._3d{width:221.660935px;}
._3e{width:261.547990px;}
._43{width:271.993908px;}
._32{width:280.363335px;}
._2d{width:281.718841px;}
._21{width:287.041102px;}
._13{width:295.668000px;}
._1b{width:298.993908px;}
._2c{width:313.332185px;}
._33{width:322.728304px;}
._2f{width:324.912228px;}
._31{width:326.508172px;}
._20{width:328.619652px;}
._1e{width:334.067909px;}
._36{width:349.996907px;}
._1f{width:357.430648px;}
._12{width:361.739474px;}
._30{width:368.128721px;}
._37{width:389.265538px;}
._2a{width:392.067887px;}
._14{width:393.984000px;}
._2b{width:397.970789px;}
._29{width:405.591416px;}
._38{width:410.085259px;}
._22{width:413.643581px;}
._34{width:440.021395px;}
._39{width:448.841088px;}
._24{width:450.941015px;}
._35{width:469.840356px;}
._25{width:473.284236px;}
._3b{width:489.369675px;}
._28{width:496.749864px;}
._1d{width:501.249881px;}
._1c{width:508.221638px;}
._26{width:510.693378px;}
._27{width:511.754895px;}
._3a{width:526.958365px;}
._3c{width:542.077838px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y15c{bottom:4.522632px;}
.y15b{bottom:22.481621px;}
.y15a{bottom:40.434748px;}
.y21{bottom:46.734370px;}
.y159{bottom:58.387875px;}
.y20{bottom:59.015622px;}
.y1f{bottom:71.302734px;}
.y158{bottom:76.346855px;}
.y61{bottom:85.482376px;}
.y110{bottom:86.665983px;}
.y157{bottom:94.299982px;}
.yef{bottom:95.220709px;}
.y22{bottom:97.155000px;}
.y88{bottom:98.502000px;}
.y47{bottom:101.917964px;}
.y87{bottom:102.527338px;}
.y60{bottom:104.384726px;}
.y10f{bottom:105.568332px;}
.y156{bottom:112.253109px;}
.yee{bottom:114.123053px;}
.y8f{bottom:115.113283px;}
.yca{bottom:115.892585px;}
.y134{bottom:118.693357px;}
.y46{bottom:120.820308px;}
.y86{bottom:121.423796px;}
.y5f{bottom:123.281215px;}
.y10e{bottom:124.464822px;}
.y155{bottom:130.212093px;}
.y90{bottom:135.287109px;}
.y8e{bottom:136.412109px;}
.y133{bottom:136.646484px;}
.y45{bottom:139.722645px;}
.y85{bottom:140.326145px;}
.yed{bottom:140.894537px;}
.y5e{bottom:142.183564px;}
.yc9{bottom:142.664069px;}
.y10d{bottom:143.367171px;}
.y154{bottom:148.165213px;}
.yab{bottom:152.660157px;}
.y132{bottom:154.599609px;}
.y44{bottom:158.619135px;}
.y84{bottom:159.228494px;}
.y10c{bottom:162.263661px;}
.y153{bottom:166.118340px;}
.yec{bottom:167.671880px;}
.yc8{bottom:169.441411px;}
.y131{bottom:172.558591px;}
.y83{bottom:178.124984px;}
.yaa{bottom:183.468750px;}
.y152{bottom:184.077328px;}
.y63{bottom:184.335940px;}
.yeb{bottom:186.568365px;}
.y1d{bottom:188.613233px;}
.y130{bottom:190.511718px;}
.y43{bottom:191.021469px;}
.y10b{bottom:194.666010px;}
.yc7{bottom:196.218754px;}
.y82{bottom:197.027333px;}
.y151{bottom:202.030447px;}
.y64{bottom:204.509766px;}
.yea{bottom:205.470709px;}
.y62{bottom:205.634766px;}
.y1c{bottom:207.509723px;}
.y12f{bottom:208.464843px;}
.y42{bottom:209.917959px;}
.y10a{bottom:213.568353px;}
.yc6{bottom:215.115239px;}
.y81{bottom:215.923823px;}
.y150{bottom:219.983574px;}
.y1b{bottom:226.412071px;}
.y12e{bottom:226.423826px;}
.y41{bottom:228.820308px;}
.ye9{bottom:232.248052px;}
.y109{bottom:232.464816px;}
.y135{bottom:234.721500px;}
.y14f{bottom:237.942563px;}
.yc5{bottom:241.892582px;}
.y12d{bottom:244.376953px;}
.ya9{bottom:244.623069px;}
.y1a{bottom:245.308561px;}
.y40{bottom:247.722618px;}
.y80{bottom:248.326161px;}
.ye8{bottom:251.144537px;}
.y108{bottom:251.367165px;}
.y14e{bottom:255.895679px;}
.y12c{bottom:262.330078px;}
.y19{bottom:264.210911px;}
.y3f{bottom:266.619108px;}
.y7f{bottom:267.228510px;}
.yc4{bottom:268.664065px;}
.y107{bottom:270.263655px;}
.ya8{bottom:271.394553px;}
.y14d{bottom:273.848806px;}
.ye7{bottom:277.921880px;}
.y12b{bottom:280.289060px;}
.y18{bottom:283.113259px;}
.y3e{bottom:285.521457px;}
.y7e{bottom:286.125000px;}
.y106{bottom:289.166004px;}
.y14c{bottom:291.807794px;}
.yc3{bottom:295.441408px;}
.ye6{bottom:296.818365px;}
.ya7{bottom:298.171896px;}
.y12a{bottom:298.242188px;}
.y17{bottom:302.009749px;}
.y3d{bottom:304.417947px;}
.y7d{bottom:305.027284px;}
.y105{bottom:308.068353px;}
.y14b{bottom:309.760922px;}
.yc2{bottom:314.343752px;}
.ye5{bottom:315.720709px;}
.y129{bottom:316.195313px;}
.y16{bottom:320.912098px;}
.y3c{bottom:323.320296px;}
.y7c{bottom:323.923774px;}
.ya6{bottom:324.943380px;}
.y104{bottom:326.964812px;}
.y14a{bottom:327.714046px;}
.y128{bottom:334.154285px;}
.y15{bottom:339.808589px;}
.yc1{bottom:341.115236px;}
.y3b{bottom:342.222645px;}
.ye4{bottom:342.498052px;}
.y149{bottom:345.673028px;}
.y103{bottom:345.867161px;}
.ya5{bottom:351.720722px;}
.y127{bottom:352.107412px;}
.y7b{bottom:356.326123px;}
.y14{bottom:358.710938px;}
.y3a{bottom:361.119135px;}
.ye3{bottom:361.394537px;}
.y148{bottom:363.626155px;}
.y102{bottom:364.763651px;}
.yc0{bottom:367.892579px;}
.y126{bottom:370.060539px;}
.y7a{bottom:375.228472px;}
.ya4{bottom:378.498065px;}
.y39{bottom:380.021469px;}
.y147{bottom:381.579282px;}
.y101{bottom:383.666000px;}
.y125{bottom:388.019528px;}
.ye2{bottom:388.171880px;}
.y79{bottom:394.124962px;}
.ybf{bottom:394.664062px;}
.y13{bottom:396.591796px;}
.y38{bottom:398.917959px;}
.y146{bottom:399.538266px;}
.y100{bottom:402.568349px;}
.ya3{bottom:405.269549px;}
.y124{bottom:405.972655px;}
.ye1{bottom:407.068365px;}
.y78{bottom:413.027311px;}
.y145{bottom:417.491387px;}
.y37{bottom:417.820308px;}
.yff{bottom:421.464839px;}
.y123{bottom:423.925782px;}
.ye0{bottom:425.970709px;}
.ybe{bottom:430.529271px;}
.y77{bottom:431.923801px;}
.ya2{bottom:432.046891px;}
.y144{bottom:435.444514px;}
.y12{bottom:436.347657px;}
.y36{bottom:436.722645px;}
.yfe{bottom:440.367188px;}
.y122{bottom:441.884762px;}
.ybd{bottom:449.425761px;}
.y76{bottom:450.826150px;}
.ydf{bottom:452.748052px;}
.y143{bottom:453.397641px;}
.y35{bottom:455.619135px;}
.ya1{bottom:458.818375px;}
.yfd{bottom:459.263634px;}
.y121{bottom:459.837889px;}
.ybc{bottom:468.328110px;}
.y75{bottom:469.728499px;}
.y142{bottom:471.356625px;}
.y34{bottom:474.521484px;}
.y120{bottom:477.791016px;}
.yfc{bottom:478.165983px;}
.yde{bottom:479.519535px;}
.y5d{bottom:480.708957px;}
.ya0{bottom:485.595717px;}
.ybb{bottom:487.224600px;}
.y74{bottom:488.624989px;}
.y8c{bottom:488.818365px;}
.y141{bottom:489.309741px;}
.y11f{bottom:495.744141px;}
.yfb{bottom:497.068332px;}
.y5c{bottom:499.605447px;}
.y33{bottom:505.177734px;}
.y11{bottom:505.447266px;}
.yba{bottom:506.126949px;}
.ydd{bottom:506.296878px;}
.y140{bottom:507.262868px;}
.y73{bottom:507.527338px;}
.y8d{bottom:508.998046px;}
.y8b{bottom:510.123047px;}
.y9f{bottom:512.373060px;}
.y11e{bottom:513.703121px;}
.yfa{bottom:515.964822px;}
.y5b{bottom:518.507796px;}
.y10{bottom:522.246082px;}
.ydc{bottom:525.193363px;}
.y13f{bottom:525.221857px;}
.y72{bottom:526.423828px;}
.y11d{bottom:531.656248px;}
.yf9{bottom:534.867171px;}
.yb9{bottom:536.437500px;}
.y5a{bottom:537.410145px;}
.yf{bottom:539.044908px;}
.y9e{bottom:539.144544px;}
.y13e{bottom:543.174984px;}
.y11c{bottom:549.609375px;}
.ydb{bottom:551.970706px;}
.yb8{bottom:555.333966px;}
.y59{bottom:556.306635px;}
.y71{bottom:557.238282px;}
.ye{bottom:560.343741px;}
.y32{bottom:560.783203px;}
.y13d{bottom:561.128109px;}
.y9d{bottom:565.921886px;}
.yf8{bottom:567.263661px;}
.yda{bottom:570.873050px;}
.y58{bottom:575.208984px;}
.y13c{bottom:579.087091px;}
.yd{bottom:581.648433px;}
.yb7{bottom:585.644517px;}
.yf7{bottom:586.166010px;}
.y11b{bottom:587.121093px;}
.y31{bottom:591.439454px;}
.y9c{bottom:592.693370px;}
.y13b{bottom:597.040218px;}
.yd9{bottom:597.644534px;}
.yc{bottom:602.947266px;}
.yb6{bottom:604.541007px;}
.yf6{bottom:605.068342px;}
.y57{bottom:606.023438px;}
.y70{bottom:612.849570px;}
.y13a{bottom:614.993345px;}
.yd8{bottom:616.546878px;}
.y9b{bottom:619.470713px;}
.yf5{bottom:623.964832px;}
.y139{bottom:632.952326px;}
.yb5{bottom:634.851558px;}
.yd7{bottom:635.443363px;}
.y11a{bottom:642.732378px;}
.yf4{bottom:642.867182px;}
.y6f{bottom:645.410112px;}
.y9a{bottom:646.248055px;}
.y30{bottom:647.050716px;}
.y138{bottom:650.905454px;}
.yb{bottom:653.197279px;}
.y56{bottom:661.628858px;}
.y119{bottom:661.628868px;}
.yf3{bottom:661.763671px;}
.yd6{bottom:662.220706px;}
.y6e{bottom:664.306602px;}
.yb4{bottom:665.162104px;}
.y2f{bottom:665.953065px;}
.ya{bottom:666.427743px;}
.y137{bottom:668.858574px;}
.y99{bottom:673.019539px;}
.y9{bottom:679.658207px;}
.y55{bottom:680.531207px;}
.y118{bottom:680.531217px;}
.yd5{bottom:681.123050px;}
.y6d{bottom:683.208951px;}
.y2e{bottom:684.849555px;}
.y136{bottom:686.817563px;}
.yf2{bottom:692.419921px;}
.y8{bottom:692.888671px;}
.yb3{bottom:695.466788px;}
.y54{bottom:699.427697px;}
.y117{bottom:699.427707px;}
.y98{bottom:699.796882px;}
.y6c{bottom:702.105441px;}
.y2d{bottom:703.751904px;}
.yd4{bottom:707.894534px;}
.y7{bottom:713.847657px;}
.y53{bottom:718.330045px;}
.y116{bottom:718.330056px;}
.y1e{bottom:718.347657px;}
.y6b{bottom:721.007790px;}
.y2c{bottom:722.648394px;}
.yb2{bottom:725.777339px;}
.y97{bottom:726.568366px;}
.yd3{bottom:726.796878px;}
.y115{bottom:737.232405px;}
.y6a{bottom:739.910139px;}
.y2b{bottom:741.550743px;}
.yb1{bottom:744.673829px;}
.y52{bottom:750.732395px;}
.y96{bottom:753.345708px;}
.yd2{bottom:753.568361px;}
.y114{bottom:756.128895px;}
.y6{bottom:756.158206px;}
.y69{bottom:758.806629px;}
.y2a{bottom:760.453092px;}
.y51{bottom:769.628884px;}
.yd1{bottom:772.470706px;}
.yb0{bottom:775.488282px;}
.y68{bottom:777.708978px;}
.y29{bottom:779.349582px;}
.y95{bottom:780.123051px;}
.y50{bottom:788.531233px;}
.y113{bottom:788.531244px;}
.y5{bottom:793.710931px;}
.y67{bottom:796.605468px;}
.y28{bottom:798.251931px;}
.yd0{bottom:799.248048px;}
.y94{bottom:806.894535px;}
.y4f{bottom:807.427723px;}
.y112{bottom:807.427730px;}
.y23{bottom:814.575468px;}
.y27{bottom:817.148421px;}
.ycf{bottom:818.144533px;}
.y89{bottom:822.328079px;}
.y111{bottom:826.330056px;}
.y4e{bottom:826.330072px;}
.y66{bottom:827.419921px;}
.yaf{bottom:831.099600px;}
.y4{bottom:831.269532px;}
.y93{bottom:833.671877px;}
.y26{bottom:836.050770px;}
.yce{bottom:844.921876px;}
.y4d{bottom:845.232405px;}
.yae{bottom:850.001949px;}
.y25{bottom:854.953119px;}
.y92{bottom:860.443361px;}
.ycd{bottom:863.818361px;}
.y8a{bottom:864.128891px;}
.y4c{bottom:864.128895px;}
.yf1{bottom:871.693360px;}
.y24{bottom:873.849609px;}
.yad{bottom:880.306641px;}
.y65{bottom:883.031239px;}
.y4b{bottom:883.031244px;}
.y91{bottom:887.220704px;}
.ycc{bottom:890.595704px;}
.yf0{bottom:898.470702px;}
.y3{bottom:899.378907px;}
.y4a{bottom:901.927730px;}
.yac{bottom:911.121093px;}
.ycb{bottom:917.373046px;}
.y49{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y48{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.h13{height:30.576083px;}
.h1{height:30.617097px;}
.h10{height:31.993163px;}
.h4{height:34.993255px;}
.hd{height:35.617086px;}
.h18{height:37.399182px;}
.h2{height:39.366211px;}
.hb{height:39.366271px;}
.he{height:39.366277px;}
.h17{height:39.366301px;}
.h16{height:39.366319px;}
.h15{height:39.366337px;}
.h11{height:39.366343px;}
.h14{height:39.366361px;}
.hc{height:39.366367px;}
.hf{height:40.341797px;}
.h7{height:46.796220px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h19{height:700.242000px;}
.h12{height:836.461500px;}
.ha{height:837.808500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x12{left:11.584593px;}
.x11{left:45.000609px;}
.x3{left:78.662109px;}
.xb{left:83.162109px;}
.x7{left:86.537109px;}
.xf{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xc{left:101.162113px;}
.xd{left:105.662109px;}
.x10{left:123.662109px;}
.x8{left:138.287109px;}
.x1{left:140.308593px;}
.x9{left:160.101562px;}
.x6{left:163.037109px;}
.xe{left:257.537110px;}
.x2{left:315.914062px;}
.xa{left:591.417114px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.775227pt;}
.ls9{letter-spacing:0.820828pt;}
.ls2{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.312000pt;}
.ls3{letter-spacing:1.536000pt;}
.ls5{letter-spacing:1.584000pt;}
.ls6{letter-spacing:4.560000pt;}
.ls7{letter-spacing:4.608000pt;}
.ls1{letter-spacing:763.839111pt;}
.ws7{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-16.759585pt;}
.ws8{word-spacing:-14.592000pt;}
.ws6{word-spacing:-14.448000pt;}
.ws5{word-spacing:-13.296000pt;}
.wsc{word-spacing:-12.631633pt;}
.wse{word-spacing:-11.861695pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:214.880000pt;}
.ws9{word-spacing:347.001237pt;}
.wsa{word-spacing:407.028793pt;}
.wsb{word-spacing:435.027817pt;}
.wsd{word-spacing:727.998018pt;}
._41{margin-left:-8.120064pt;}
._9{margin-left:-6.997883pt;}
._7{margin-left:-5.312894pt;}
._42{margin-left:-3.972066pt;}
._4{margin-left:-3.061844pt;}
._3{margin-left:-2.026199pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._a{width:3.247887pt;}
._f{width:4.186000pt;}
._e{width:5.217267pt;}
._6{width:6.223151pt;}
._10{width:7.206638pt;}
._11{width:8.139758pt;}
._c{width:9.072000pt;}
._d{width:10.213203pt;}
._b{width:11.989555pt;}
._15{width:15.121579pt;}
._8{width:16.884660pt;}
._17{width:18.641610pt;}
._3f{width:19.618252pt;}
._19{width:21.443077pt;}
._18{width:23.379875pt;}
._2e{width:29.102192pt;}
._16{width:33.347941pt;}
._5{width:40.469424pt;}
._1a{width:79.991846pt;}
._40{width:102.831524pt;}
._23{width:116.096096pt;}
._3d{width:197.031942pt;}
._3e{width:232.487103pt;}
._43{width:241.772363pt;}
._32{width:249.211853pt;}
._2d{width:250.416748pt;}
._21{width:255.147646pt;}
._13{width:262.816000pt;}
._1b{width:265.772363pt;}
._2c{width:278.517498pt;}
._33{width:286.869604pt;}
._2f{width:288.810869pt;}
._31{width:290.229486pt;}
._20{width:292.106358pt;}
._1e{width:296.949252pt;}
._36{width:311.108362pt;}
._1f{width:317.716132pt;}
._12{width:321.546199pt;}
._30{width:327.225530pt;}
._37{width:346.013812pt;}
._2a{width:348.504788pt;}
._14{width:350.208000pt;}
._2b{width:353.751812pt;}
._29{width:360.525703pt;}
._38{width:364.520230pt;}
._22{width:367.683183pt;}
._34{width:391.130129pt;}
._39{width:398.969856pt;}
._24{width:400.836458pt;}
._35{width:417.635872pt;}
._25{width:420.697099pt;}
._3b{width:434.995267pt;}
._28{width:441.555435pt;}
._1d{width:445.555450pt;}
._1c{width:451.752567pt;}
._26{width:453.949669pt;}
._27{width:454.893240pt;}
._3a{width:468.407435pt;}
._3c{width:481.846967pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y15c{bottom:4.020118pt;}
.y15b{bottom:19.983663pt;}
.y15a{bottom:35.941998pt;}
.y21{bottom:41.541662pt;}
.y159{bottom:51.900333pt;}
.y20{bottom:52.458331pt;}
.y1f{bottom:63.380208pt;}
.y158{bottom:67.863871pt;}
.y61{bottom:75.984335pt;}
.y110{bottom:77.036429pt;}
.y157{bottom:83.822206pt;}
.yef{bottom:84.640631pt;}
.y22{bottom:86.360000pt;}
.y88{bottom:87.557333pt;}
.y47{bottom:90.593745pt;}
.y87{bottom:91.135412pt;}
.y60{bottom:92.786423pt;}
.y10f{bottom:93.838517pt;}
.y156{bottom:99.780541pt;}
.yee{bottom:101.442714pt;}
.y8f{bottom:102.322919pt;}
.yca{bottom:103.015631pt;}
.y134{bottom:105.505206pt;}
.y46{bottom:107.395829pt;}
.y86{bottom:107.932263pt;}
.y5f{bottom:109.583303pt;}
.y10e{bottom:110.635397pt;}
.y155{bottom:115.744083pt;}
.y90{bottom:120.255208pt;}
.y8e{bottom:121.255208pt;}
.y133{bottom:121.463541pt;}
.y45{bottom:124.197907pt;}
.y85{bottom:124.734351pt;}
.yed{bottom:125.239589pt;}
.y5e{bottom:126.385391pt;}
.yc9{bottom:126.812505pt;}
.y10d{bottom:127.437485pt;}
.y154{bottom:131.702412pt;}
.yab{bottom:135.697917pt;}
.y132{bottom:137.421875pt;}
.y44{bottom:140.994787pt;}
.y84{bottom:141.536439pt;}
.y10c{bottom:144.234365pt;}
.y153{bottom:147.660747pt;}
.yec{bottom:149.041671pt;}
.yc8{bottom:150.614588pt;}
.y131{bottom:153.385414pt;}
.y83{bottom:158.333319pt;}
.yaa{bottom:163.083333pt;}
.y152{bottom:163.624292pt;}
.y63{bottom:163.854169pt;}
.yeb{bottom:165.838547pt;}
.y1d{bottom:167.656207pt;}
.y130{bottom:169.343749pt;}
.y43{bottom:169.796861pt;}
.y10b{bottom:173.036453pt;}
.yc7{bottom:174.416670pt;}
.y82{bottom:175.135407pt;}
.y151{bottom:179.582620pt;}
.y64{bottom:181.786459pt;}
.yea{bottom:182.640630pt;}
.y62{bottom:182.786459pt;}
.y1c{bottom:184.453087pt;}
.y12f{bottom:185.302083pt;}
.y42{bottom:186.593741pt;}
.y10a{bottom:189.838536pt;}
.yc6{bottom:191.213546pt;}
.y81{bottom:191.932287pt;}
.y150{bottom:195.540955pt;}
.y1b{bottom:201.255175pt;}
.y12e{bottom:201.265623pt;}
.y41{bottom:203.395829pt;}
.ye9{bottom:206.442713pt;}
.y109{bottom:206.635392pt;}
.y135{bottom:208.641333pt;}
.y14f{bottom:211.504500pt;}
.yc5{bottom:215.015628pt;}
.y12d{bottom:217.223959pt;}
.ya9{bottom:217.442728pt;}
.y1a{bottom:218.052055pt;}
.y40{bottom:220.197883pt;}
.y80{bottom:220.734365pt;}
.ye8{bottom:223.239589pt;}
.y108{bottom:223.437480pt;}
.y14e{bottom:227.462826pt;}
.y12c{bottom:233.182292pt;}
.y19{bottom:234.854143pt;}
.y3f{bottom:236.994763pt;}
.y7f{bottom:237.536453pt;}
.yc4{bottom:238.812503pt;}
.y107{bottom:240.234360pt;}
.ya8{bottom:241.239603pt;}
.y14d{bottom:243.421161pt;}
.ye7{bottom:247.041671pt;}
.y12b{bottom:249.145831pt;}
.y18{bottom:251.656231pt;}
.y3e{bottom:253.796851pt;}
.y7e{bottom:254.333333pt;}
.y106{bottom:257.036448pt;}
.y14c{bottom:259.384706pt;}
.yc3{bottom:262.614585pt;}
.ye6{bottom:263.838547pt;}
.ya7{bottom:265.041685pt;}
.y12a{bottom:265.104167pt;}
.y17{bottom:268.453111pt;}
.y3d{bottom:270.593731pt;}
.y7d{bottom:271.135364pt;}
.y105{bottom:273.838536pt;}
.y14b{bottom:275.343041pt;}
.yc2{bottom:279.416669pt;}
.ye5{bottom:280.640630pt;}
.y129{bottom:281.062500pt;}
.y16{bottom:285.255199pt;}
.y3c{bottom:287.395819pt;}
.y7c{bottom:287.932244pt;}
.ya6{bottom:288.838560pt;}
.y104{bottom:290.635388pt;}
.y14a{bottom:291.301375pt;}
.y128{bottom:297.026031pt;}
.y15{bottom:302.052079pt;}
.yc1{bottom:303.213543pt;}
.y3b{bottom:304.197907pt;}
.ye4{bottom:304.442713pt;}
.y149{bottom:307.264913pt;}
.y103{bottom:307.437476pt;}
.ya5{bottom:312.640642pt;}
.y127{bottom:312.984366pt;}
.y7b{bottom:316.734332pt;}
.y14{bottom:318.854167pt;}
.y3a{bottom:320.994787pt;}
.ye3{bottom:321.239588pt;}
.y148{bottom:323.223249pt;}
.y102{bottom:324.234356pt;}
.yc0{bottom:327.015625pt;}
.y126{bottom:328.942702pt;}
.y7a{bottom:333.536420pt;}
.ya4{bottom:336.442724pt;}
.y39{bottom:337.796861pt;}
.y147{bottom:339.181584pt;}
.y101{bottom:341.036444pt;}
.y125{bottom:344.906247pt;}
.ye2{bottom:345.041671pt;}
.y79{bottom:350.333300pt;}
.ybf{bottom:350.812500pt;}
.y13{bottom:352.526041pt;}
.y38{bottom:354.593741pt;}
.y146{bottom:355.145125pt;}
.y100{bottom:357.838532pt;}
.ya3{bottom:360.239599pt;}
.y124{bottom:360.864582pt;}
.ye1{bottom:361.838547pt;}
.y78{bottom:367.135388pt;}
.y145{bottom:371.103455pt;}
.y37{bottom:371.395829pt;}
.yff{bottom:374.635412pt;}
.y123{bottom:376.822917pt;}
.ye0{bottom:378.640630pt;}
.ybe{bottom:382.692685pt;}
.y77{bottom:383.932268pt;}
.ya2{bottom:384.041681pt;}
.y144{bottom:387.061790pt;}
.y12{bottom:387.864584pt;}
.y36{bottom:388.197907pt;}
.yfe{bottom:391.437500pt;}
.y122{bottom:392.786455pt;}
.ybd{bottom:399.489565pt;}
.y76{bottom:400.734356pt;}
.ydf{bottom:402.442713pt;}
.y143{bottom:403.020125pt;}
.y35{bottom:404.994787pt;}
.ya1{bottom:407.838555pt;}
.yfd{bottom:408.234341pt;}
.y121{bottom:408.744790pt;}
.ybc{bottom:416.291653pt;}
.y75{bottom:417.536444pt;}
.y142{bottom:418.983667pt;}
.y34{bottom:421.796875pt;}
.y120{bottom:424.703125pt;}
.yfc{bottom:425.036429pt;}
.yde{bottom:426.239587pt;}
.y5d{bottom:427.296851pt;}
.ya0{bottom:431.640638pt;}
.ybb{bottom:433.088533pt;}
.y74{bottom:434.333324pt;}
.y8c{bottom:434.505213pt;}
.y141{bottom:434.941992pt;}
.y11f{bottom:440.661459pt;}
.yfb{bottom:441.838517pt;}
.y5c{bottom:444.093731pt;}
.y33{bottom:449.046875pt;}
.y11{bottom:449.286459pt;}
.yba{bottom:449.890621pt;}
.ydd{bottom:450.041669pt;}
.y140{bottom:450.900328pt;}
.y73{bottom:451.135412pt;}
.y8d{bottom:452.442708pt;}
.y8b{bottom:453.442708pt;}
.y9f{bottom:455.442720pt;}
.y11e{bottom:456.624996pt;}
.yfa{bottom:458.635397pt;}
.y5b{bottom:460.895819pt;}
.y10{bottom:464.218739pt;}
.ydc{bottom:466.838545pt;}
.y13f{bottom:466.863873pt;}
.y72{bottom:467.932292pt;}
.y11d{bottom:472.583331pt;}
.yf9{bottom:475.437485pt;}
.yb9{bottom:476.833333pt;}
.y5a{bottom:477.697907pt;}
.yf{bottom:479.151029pt;}
.y9e{bottom:479.239595pt;}
.y13e{bottom:482.822208pt;}
.y11c{bottom:488.541667pt;}
.ydb{bottom:490.640627pt;}
.yb8{bottom:493.630192pt;}
.y59{bottom:494.494787pt;}
.y71{bottom:495.322917pt;}
.ye{bottom:498.083325pt;}
.y32{bottom:498.473959pt;}
.y13d{bottom:498.780541pt;}
.y9d{bottom:503.041677pt;}
.yf8{bottom:504.234365pt;}
.yda{bottom:507.442711pt;}
.y58{bottom:511.296875pt;}
.y13c{bottom:514.744081pt;}
.yd{bottom:517.020829pt;}
.yb7{bottom:520.572904pt;}
.yf7{bottom:521.036453pt;}
.y11b{bottom:521.885416pt;}
.y31{bottom:525.723959pt;}
.y9c{bottom:526.838551pt;}
.y13b{bottom:530.702416pt;}
.yd9{bottom:531.239586pt;}
.yc{bottom:535.953125pt;}
.yb6{bottom:537.369784pt;}
.yf6{bottom:537.838527pt;}
.y57{bottom:538.687500pt;}
.y70{bottom:544.755173pt;}
.y13a{bottom:546.660751pt;}
.yd8{bottom:548.041669pt;}
.y9b{bottom:550.640634pt;}
.yf5{bottom:554.635407pt;}
.y139{bottom:562.624290pt;}
.yb5{bottom:564.312496pt;}
.yd7{bottom:564.838545pt;}
.y11a{bottom:571.317669pt;}
.yf4{bottom:571.437495pt;}
.y6f{bottom:573.697877pt;}
.y9a{bottom:574.442716pt;}
.y30{bottom:575.156192pt;}
.y138{bottom:578.582625pt;}
.yb{bottom:580.619804pt;}
.y56{bottom:588.114540pt;}
.y119{bottom:588.114549pt;}
.yf3{bottom:588.234375pt;}
.yd6{bottom:588.640627pt;}
.y6e{bottom:590.494757pt;}
.yb4{bottom:591.255204pt;}
.y2f{bottom:591.958280pt;}
.ya{bottom:592.380216pt;}
.y137{bottom:594.540955pt;}
.y99{bottom:598.239590pt;}
.y9{bottom:604.140629pt;}
.y55{bottom:604.916628pt;}
.y118{bottom:604.916637pt;}
.yd5{bottom:605.442711pt;}
.y6d{bottom:607.296845pt;}
.y2e{bottom:608.755160pt;}
.y136{bottom:610.504500pt;}
.yf2{bottom:615.484375pt;}
.y8{bottom:615.901041pt;}
.yb3{bottom:618.192700pt;}
.y54{bottom:621.713508pt;}
.y117{bottom:621.713517pt;}
.y98{bottom:622.041673pt;}
.y6c{bottom:624.093725pt;}
.y2d{bottom:625.557248pt;}
.yd4{bottom:629.239585pt;}
.y7{bottom:634.531251pt;}
.y53{bottom:638.515596pt;}
.y116{bottom:638.515605pt;}
.y1e{bottom:638.531251pt;}
.y6b{bottom:640.895813pt;}
.y2c{bottom:642.354128pt;}
.yb2{bottom:645.135412pt;}
.y97{bottom:645.838547pt;}
.yd3{bottom:646.041669pt;}
.y115{bottom:655.317693pt;}
.y6a{bottom:657.697901pt;}
.y2b{bottom:659.156216pt;}
.yb1{bottom:661.932292pt;}
.y52{bottom:667.317684pt;}
.y96{bottom:669.640629pt;}
.yd2{bottom:669.838544pt;}
.y114{bottom:672.114573pt;}
.y6{bottom:672.140627pt;}
.y69{bottom:674.494781pt;}
.y2a{bottom:675.958304pt;}
.y51{bottom:684.114564pt;}
.yd1{bottom:686.640627pt;}
.yb0{bottom:689.322917pt;}
.y68{bottom:691.296869pt;}
.y29{bottom:692.755184pt;}
.y95{bottom:693.442712pt;}
.y50{bottom:700.916652pt;}
.y113{bottom:700.916661pt;}
.y5{bottom:705.520828pt;}
.y67{bottom:708.093749pt;}
.y28{bottom:709.557272pt;}
.yd0{bottom:710.442709pt;}
.y94{bottom:717.239586pt;}
.y4f{bottom:717.713532pt;}
.y112{bottom:717.713537pt;}
.y23{bottom:724.067083pt;}
.y27{bottom:726.354152pt;}
.ycf{bottom:727.239585pt;}
.y89{bottom:730.958292pt;}
.y111{bottom:734.515605pt;}
.y4e{bottom:734.515620pt;}
.y66{bottom:735.484375pt;}
.yaf{bottom:738.755200pt;}
.y4{bottom:738.906251pt;}
.y93{bottom:741.041669pt;}
.y26{bottom:743.156240pt;}
.yce{bottom:751.041668pt;}
.y4d{bottom:751.317693pt;}
.yae{bottom:755.557288pt;}
.y25{bottom:759.958328pt;}
.y92{bottom:764.838543pt;}
.ycd{bottom:767.838543pt;}
.y8a{bottom:768.114569pt;}
.y4c{bottom:768.114573pt;}
.yf1{bottom:774.838542pt;}
.y24{bottom:776.755208pt;}
.yad{bottom:782.494792pt;}
.y65{bottom:784.916657pt;}
.y4b{bottom:784.916661pt;}
.y91{bottom:788.640625pt;}
.ycc{bottom:791.640626pt;}
.yf0{bottom:798.640624pt;}
.y3{bottom:799.447917pt;}
.y4a{bottom:801.713537pt;}
.yac{bottom:809.885416pt;}
.ycb{bottom:815.442708pt;}
.y49{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y48{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.h13{height:27.178740pt;}
.h1{height:27.215197pt;}
.h10{height:28.438367pt;}
.h4{height:31.105115pt;}
.hd{height:31.659632pt;}
.h18{height:33.243717pt;}
.h2{height:34.992188pt;}
.hb{height:34.992241pt;}
.he{height:34.992246pt;}
.h17{height:34.992267pt;}
.h16{height:34.992283pt;}
.h15{height:34.992299pt;}
.h11{height:34.992305pt;}
.h14{height:34.992321pt;}
.hc{height:34.992326pt;}
.hf{height:35.859375pt;}
.h7{height:41.596640pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h19{height:622.437333pt;}
.h12{height:743.521333pt;}
.ha{height:744.718667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x12{left:10.297416pt;}
.x11{left:40.000541pt;}
.x3{left:69.921875pt;}
.xb{left:73.921875pt;}
.x7{left:76.921875pt;}
.xf{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xc{left:89.921879pt;}
.xd{left:93.921875pt;}
.x10{left:109.921874pt;}
.x8{left:122.921875pt;}
.x1{left:124.718749pt;}
.x9{left:142.312500pt;}
.x6{left:144.921875pt;}
.xe{left:228.921875pt;}
.x2{left:280.812500pt;}
.xa{left:525.704101pt;}
}




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