
    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_bdae9b77406c34a3d83cf8ec.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_e7b5dde157904f0484933db5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_ef4ea02fd11060b993c8980d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bc61596e5e355614a3f71df7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c999e90fdc4559e9bb8b6e0e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9749bc002526d16cf6053e9f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9749bc002526d16cf6053e9f.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_44805738e33ea9a472f5fc71.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-8.044260px;}
._2{margin-left:-6.609375px;}
._28{margin-left:-5.180394px;}
._1{margin-left:-4.171148px;}
._14{margin-left:-2.671875px;}
._1b{margin-left:-1.300781px;}
._20{width:2.671881px;}
._1c{width:4.500002px;}
._1e{width:8.789083px;}
._1f{width:9.843665px;}
._1d{width:13.500000px;}
._21{width:22.499999px;}
._27{width:30.023438px;}
._24{width:31.499999px;}
._2a{width:34.066406px;}
._23{width:36.000002px;}
._2d{width:42.046875px;}
._25{width:44.507812px;}
._26{width:49.500003px;}
._31{width:71.999983px;}
._30{width:76.500002px;}
._2b{width:706.500000px;}
._11{width:786.023437px;}
._12{width:990.374271px;}
._c{width:1220.343749px;}
._2c{width:1399.500000px;}
._16{width:1506.093750px;}
._2e{width:1579.500000px;}
._2f{width:1593.000000px;}
._9{width:1624.218749px;}
._13{width:1641.046149px;}
._7{width:1650.128905px;}
._17{width:1658.272710px;}
._15{width:1688.835937px;}
._10{width:1708.171875px;}
._a{width:1746.070312px;}
._18{width:1752.011718px;}
._f{width:1864.089844px;}
._b{width:1882.124999px;}
._8{width:1894.183592px;}
._5{width:1944.140625px;}
._22{width:2020.500000px;}
._e{width:2040.152343px;}
._d{width:2110.346929px;}
._4{width:2164.007812px;}
._6{width:2247.996093px;}
._3{width:2290.078125px;}
._29{width:2295.000000px;}
._19{width:2317.992187px;}
._1a{width:2426.238280px;}
.fc3{color:transparent;}
.fc2{color:rgb(67,67,67);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.999997px;}
.fs1{font-size:228.000006px;}
.y0{bottom:0.000000px;}
.y9a{bottom:11.768548px;}
.y8f{bottom:11.768551px;}
.y87{bottom:11.768554px;}
.ya2{bottom:11.768556px;}
.y94{bottom:11.768564px;}
.y96{bottom:11.768567px;}
.y8c{bottom:14.873298px;}
.y99{bottom:32.466793px;}
.y8e{bottom:32.466796px;}
.ya1{bottom:32.466801px;}
.y93{bottom:32.466808px;}
.y8b{bottom:38.676273px;}
.y92{bottom:53.165038px;}
.ya0{bottom:53.165046px;}
.y8a{bottom:62.479248px;}
.y9f{bottom:73.863291px;}
.y9e{bottom:94.561536px;}
.yf2{bottom:113.485103px;}
.y9d{bottom:115.259766px;}
.y7e{bottom:116.796390px;}
.y161{bottom:117.399908px;}
.y119{bottom:119.339362px;}
.y135{bottom:119.701180px;}
.y100{bottom:128.758298px;}
.y157{bottom:130.435553px;}
.y12e{bottom:130.798823px;}
.y27{bottom:132.994267px;}
.y177{bottom:134.084468px;}
.yf1{bottom:137.288092px;}
.y1b4{bottom:139.376947px;}
.y7d{bottom:140.599369px;}
.y160{bottom:141.202148px;}
.y118{bottom:143.141603px;}
.y134{bottom:143.504887px;}
.yad{bottom:146.195068px;}
.y19d{bottom:148.243648px;}
.yff{bottom:152.562007px;}
.y156{bottom:154.239262px;}
.y12d{bottom:154.601802px;}
.y26{bottom:156.797242px;}
.y176{bottom:157.888177px;}
.ycf{bottom:157.909422px;}
.yf0{bottom:161.091068px;}
.y7c{bottom:164.402347px;}
.y15f{bottom:165.005857px;}
.y117{bottom:166.945302px;}
.y133{bottom:167.307127px;}
.y1b3{bottom:169.180658px;}
.yac{bottom:169.998047px;}
.y19c{bottom:173.991208px;}
.y4c{bottom:174.197018px;}
.yfe{bottom:176.364265px;}
.y155{bottom:178.042973px;}
.y25{bottom:180.600217px;}
.y6d{bottom:181.093133px;}
.y175{bottom:181.690433px;}
.yce{bottom:181.712400px;}
.yef{bottom:184.894043px;}
.y7b{bottom:188.205323px;}
.y15e{bottom:188.809572px;}
.y132{bottom:191.110838px;}
.yab{bottom:193.801025px;}
.y4b{bottom:197.999992px;}
.y19b{bottom:199.740238px;}
.yfd{bottom:200.167973px;}
.y154{bottom:201.845212px;}
.y24{bottom:204.403192px;}
.y6c{bottom:204.896122px;}
.y174{bottom:205.494142px;}
.ycd{bottom:205.515379px;}
.yee{bottom:208.697018px;}
.y7a{bottom:212.008303px;}
.y131{bottom:214.913084px;}
.y1b2{bottom:216.401368px;}
.yaa{bottom:217.604003px;}
.y4a{bottom:221.802983px;}
.yfc{bottom:223.970212px;}
.y19a{bottom:225.490723px;}
.y153{bottom:225.647468px;}
.y23{bottom:228.206183px;}
.y6b{bottom:228.699098px;}
.y173{bottom:229.296383px;}
.ycc{bottom:229.318358px;}
.yed{bottom:232.499997px;}
.y79{bottom:235.811282px;}
.y1b1{bottom:238.218748px;}
.ya9{bottom:241.406982px;}
.y49{bottom:245.605957px;}
.yfb{bottom:247.773923px;}
.y199{bottom:247.892573px;}
.y152{bottom:249.451178px;}
.y22{bottom:252.009157px;}
.y6a{bottom:252.502073px;}
.y172{bottom:253.100092px;}
.ycb{bottom:253.121337px;}
.yec{bottom:256.302975px;}
.y78{bottom:259.614260px;}
.ya8{bottom:265.209960px;}
.y1b0{bottom:266.622067px;}
.y48{bottom:269.408932px;}
.yfa{bottom:271.576178px;}
.y198{bottom:271.696283px;}
.y151{bottom:273.254887px;}
.y21{bottom:275.812133px;}
.y69{bottom:276.305048px;}
.y171{bottom:276.902347px;}
.yca{bottom:276.924315px;}
.yeb{bottom:280.105954px;}
.y77{bottom:283.417238px;}
.ya7{bottom:289.012939px;}
.y47{bottom:293.211908px;}
.yf9{bottom:295.379879px;}
.y197{bottom:295.499992px;}
.y150{bottom:297.057127px;}
.y20{bottom:299.615107px;}
.y68{bottom:300.108037px;}
.yc9{bottom:300.727294px;}
.yea{bottom:303.908932px;}
.y170{bottom:306.706058px;}
.y76{bottom:307.220217px;}
.ya6{bottom:312.815918px;}
.y1af{bottom:314.425777px;}
.y46{bottom:317.014898px;}
.yf8{bottom:319.182127px;}
.y196{bottom:319.302248px;}
.y14f{bottom:320.859367px;}
.y1f{bottom:323.418097px;}
.y67{bottom:323.911013px;}
.yc8{bottom:324.530273px;}
.ye9{bottom:327.711908px;}
.y75{bottom:331.023195px;}
.ya5{bottom:336.618893px;}
.y45{bottom:340.817873px;}
.yf7{bottom:342.985838px;}
.y195{bottom:343.104488px;}
.y14e{bottom:344.663092px;}
.y1e{bottom:347.221073px;}
.y66{bottom:347.713995px;}
.yc7{bottom:348.333255px;}
.y16f{bottom:348.508298px;}
.ye8{bottom:351.514898px;}
.y74{bottom:354.826174px;}
.ya4{bottom:360.421867px;}
.y1ae{bottom:362.228033px;}
.y44{bottom:364.620847px;}
.yf6{bottom:366.788092px;}
.y194{bottom:366.908197px;}
.y14d{bottom:368.466803px;}
.y1d{bottom:371.024048px;}
.y65{bottom:371.516974px;}
.yc6{bottom:372.136234px;}
.y16e{bottom:372.310552px;}
.ye7{bottom:375.317873px;}
.y73{bottom:378.629153px;}
.y9c{bottom:386.912102px;}
.y43{bottom:388.423823px;}
.y193{bottom:390.711908px;}
.y14c{bottom:392.269042px;}
.y1c{bottom:394.827022px;}
.y64{bottom:395.319952px;}
.yc5{bottom:395.939213px;}
.y16d{bottom:396.114262px;}
.yf5{bottom:396.591068px;}
.ye6{bottom:399.120847px;}
.y72{bottom:402.432127px;}
.y1ad{bottom:410.031742px;}
.y42{bottom:412.226813px;}
.y192{bottom:414.514162px;}
.y14b{bottom:416.071283px;}
.y1b{bottom:418.629998px;}
.y63{bottom:419.122928px;}
.yc4{bottom:419.742184px;}
.y16c{bottom:419.917973px;}
.y116{bottom:420.317873px;}
.ye5{bottom:422.923822px;}
.y71{bottom:426.235102px;}
.y41{bottom:436.029787px;}
.y191{bottom:438.316402px;}
.yf4{bottom:438.394043px;}
.y1a{bottom:439.328243px;}
.y14a{bottom:439.874997px;}
.y62{bottom:442.925910px;}
.yc3{bottom:443.545163px;}
.y16b{bottom:443.720213px;}
.y115{bottom:444.121574px;}
.ye4{bottom:446.726813px;}
.y70{bottom:450.038092px;}
.y40{bottom:456.728033px;}
.y1ac{bottom:457.835452px;}
.y19{bottom:460.026488px;}
.y190{bottom:462.120113px;}
.yf3{bottom:462.197019px;}
.y61{bottom:466.728889px;}
.yc2{bottom:467.348145px;}
.y16a{bottom:467.522467px;}
.y114{bottom:467.923822px;}
.ya3{bottom:469.705071px;}
.ye3{bottom:470.529787px;}
.y6f{bottom:473.841068px;}
.y18{bottom:480.724733px;}
.y3f{bottom:481.926263px;}
.y18f{bottom:485.923822px;}
.y9b{bottom:490.403313px;}
.y60{bottom:490.531868px;}
.yc1{bottom:491.151124px;}
.y169{bottom:491.326178px;}
.y113{bottom:491.727539px;}
.y149{bottom:493.513178px;}
.ye2{bottom:494.332763px;}
.y6e{bottom:497.644040px;}
.y17{bottom:501.422977px;}
.y1ab{bottom:505.637692px;}
.y3e{bottom:507.124508px;}
.y18e{bottom:509.726077px;}
.yc0{bottom:514.954103px;}
.y168{bottom:515.129887px;}
.y112{bottom:515.529787px;}
.y148{bottom:517.316888px;}
.ye1{bottom:518.135749px;}
.y5f{bottom:520.334842px;}
.y16{bottom:522.121223px;}
.y98{bottom:527.976564px;}
.y3d{bottom:532.322752px;}
.y18d{bottom:533.528318px;}
.ybf{bottom:538.757085px;}
.y167{bottom:538.932119px;}
.y111{bottom:539.333498px;}
.y147{bottom:541.119142px;}
.ye0{bottom:541.938728px;}
.y15{bottom:542.819453px;}
.y1aa{bottom:553.441402px;}
.y18c{bottom:557.332027px;}
.y3c{bottom:557.520998px;}
.ybe{bottom:562.560064px;}
.y166{bottom:562.734367px;}
.y110{bottom:563.135740px;}
.y14{bottom:563.517698px;}
.y146{bottom:564.922844px;}
.ydf{bottom:565.741702px;}
.y15d{bottom:565.932127px;}
.y97{bottom:569.373048px;}
.y5e{bottom:569.425240px;}
.y18b{bottom:581.135738px;}
.y3b{bottom:582.719242px;}
.y13{bottom:584.215942px;}
.ybd{bottom:586.363043px;}
.y165{bottom:586.538092px;}
.y10f{bottom:586.939448px;}
.y145{bottom:588.725092px;}
.yde{bottom:589.544678px;}
.y15c{bottom:589.734367px;}
.y5d{bottom:597.515995px;}
.y1a9{bottom:601.245113px;}
.y12{bottom:604.914188px;}
.y18a{bottom:604.937992px;}
.y91{bottom:606.946284px;}
.y3a{bottom:607.917488px;}
.ybc{bottom:610.166014px;}
.y164{bottom:610.341803px;}
.y10e{bottom:610.741702px;}
.y144{bottom:611.944333px;}
.ydd{bottom:613.347652px;}
.y15b{bottom:613.538092px;}
.y5c{bottom:625.606201px;}
.y11{bottom:625.612433px;}
.y95{bottom:627.644526px;}
.y189{bottom:628.740233px;}
.y12c{bottom:630.725092px;}
.y39{bottom:633.115718px;}
.ybb{bottom:633.968992px;}
.y163{bottom:634.144040px;}
.y143{bottom:634.347652px;}
.y10d{bottom:634.545404px;}
.ydc{bottom:637.150628px;}
.y15a{bottom:637.341803px;}
.y10{bottom:646.310663px;}
.y90{bottom:648.342768px;}
.y1a8{bottom:649.045898px;}
.y188{bottom:652.543942px;}
.y5b{bottom:653.696783px;}
.y12b{bottom:654.528079px;}
.y142{bottom:658.149908px;}
.y38{bottom:658.313963px;}
.y10c{bottom:658.347652px;}
.ydb{bottom:660.953618px;}
.y159{bottom:661.144043px;}
.yba{bottom:663.771248px;}
.yf{bottom:667.008907px;}
.y187{bottom:676.347652px;}
.y12a{bottom:678.331058px;}
.y5a{bottom:681.787356px;}
.y141{bottom:681.953609px;}
.y10b{bottom:682.151363px;}
.y37{bottom:683.512207px;}
.yda{bottom:684.756589px;}
.y158{bottom:684.946286px;}
.y89{bottom:685.916015px;}
.ye{bottom:687.707153px;}
.y1a7{bottom:696.849608px;}
.y186{bottom:700.149908px;}
.y129{bottom:702.134029px;}
.yb9{bottom:705.574223px;}
.y140{bottom:705.755858px;}
.y10a{bottom:705.953620px;}
.yd{bottom:708.405398px;}
.yd9{bottom:708.559568px;}
.y36{bottom:708.710452px;}
.y59{bottom:709.877750px;}
.y8d{bottom:715.928466px;}
.y185{bottom:723.952148px;}
.y128{bottom:725.937008px;}
.yc{bottom:729.103642px;}
.yb8{bottom:729.377197px;}
.y13f{bottom:729.559575px;}
.y109{bottom:729.757328px;}
.yd8{bottom:732.362543px;}
.y35{bottom:733.908698px;}
.y88{bottom:736.626708px;}
.y58{bottom:737.968151px;}
.y1a6{bottom:744.653318px;}
.y184{bottom:747.757324px;}
.y127{bottom:749.739994px;}
.yb{bottom:749.801873px;}
.yb7{bottom:753.180173px;}
.y13e{bottom:753.361815px;}
.yd7{bottom:756.165533px;}
.y34{bottom:759.106928px;}
.y108{bottom:759.559568px;}
.y57{bottom:766.058535px;}
.ya{bottom:770.500118px;}
.y183{bottom:771.559568px;}
.y126{bottom:773.542973px;}
.y86{bottom:774.199953px;}
.yb6{bottom:776.995606px;}
.y13d{bottom:777.165524px;}
.yd6{bottom:779.968507px;}
.y33{bottom:784.305173px;}
.y9{bottom:791.198363px;}
.y1a5{bottom:792.454102px;}
.y56{bottom:794.149297px;}
.y182{bottom:795.363286px;}
.y125{bottom:797.345944px;}
.yb5{bottom:800.889406px;}
.y13c{bottom:800.967772px;}
.y107{bottom:801.362554px;}
.yd5{bottom:803.771483px;}
.y32{bottom:809.503417px;}
.y55{bottom:817.368898px;}
.y85{bottom:818.771483px;}
.y181{bottom:819.165518px;}
.y124{bottom:821.148923px;}
.yb4{bottom:824.771483px;}
.y106{bottom:825.165532px;}
.y8{bottom:830.164303px;}
.y13b{bottom:830.771483px;}
.yd4{bottom:833.574458px;}
.y31{bottom:834.701662px;}
.y1a4{bottom:840.257812px;}
.y180{bottom:842.969236px;}
.y123{bottom:844.951897px;}
.y54{bottom:845.771482px;}
.y84{bottom:848.574457px;}
.y105{bottom:848.968504px;}
.y30{bottom:859.899907px;}
.y17f{bottom:866.771478px;}
.y122{bottom:868.754884px;}
.yb3{bottom:872.377448px;}
.y13a{bottom:872.575192px;}
.y104{bottom:872.771483px;}
.yd3{bottom:875.377447px;}
.y2f{bottom:885.098138px;}
.y1a3{bottom:888.061523px;}
.y7{bottom:890.377448px;}
.y53{bottom:890.574464px;}
.y17e{bottom:890.575196px;}
.y121{bottom:892.557862px;}
.y83{bottom:893.377442px;}
.y139{bottom:896.377448px;}
.y103{bottom:896.574457px;}
.yb2{bottom:902.180419px;}
.y2e{bottom:910.296382px;}
.y6{bottom:914.180423px;}
.y52{bottom:914.377442px;}
.y17d{bottom:914.377444px;}
.y120{bottom:916.360838px;}
.y82{bottom:917.180420px;}
.yd2{bottom:920.180420px;}
.y102{bottom:920.377442px;}
.y138{bottom:926.179688px;}
.y2d{bottom:935.494629px;}
.y5{bottom:937.983399px;}
.y51{bottom:938.180420px;}
.y17c{bottom:938.181152px;}
.y1a2{bottom:940.151364px;}
.y11f{bottom:940.163818px;}
.y81{bottom:940.983399px;}
.yb1{bottom:943.983399px;}
.y101{bottom:944.180419px;}
.y2c{bottom:960.692871px;}
.y4{bottom:961.786377px;}
.y17b{bottom:961.983393px;}
.y50{bottom:961.983399px;}
.y11e{bottom:963.966796px;}
.yb0{bottom:967.786377px;}
.y130{bottom:967.787109px;}
.yd1{bottom:967.983398px;}
.y1a1{bottom:968.242675px;}
.y80{bottom:970.786376px;}
.y3{bottom:985.589355px;}
.y4f{bottom:985.786377px;}
.y17a{bottom:985.787109px;}
.y2b{bottom:985.891113px;}
.y11d{bottom:987.769775px;}
.yaf{bottom:991.589355px;}
.yd0{bottom:991.786377px;}
.y137{bottom:991.787115px;}
.y1a0{bottom:996.332519px;}
.y2{bottom:1009.392335px;}
.y4e{bottom:1009.589356px;}
.y179{bottom:1009.589359px;}
.y2a{bottom:1011.089355px;}
.y11c{bottom:1011.572754px;}
.y7f{bottom:1015.589355px;}
.yae{bottom:1021.392335px;}
.y12f{bottom:1021.393067px;}
.y19f{bottom:1024.422363px;}
.y4d{bottom:1033.392335px;}
.y178{bottom:1033.393067px;}
.y11b{bottom:1035.375732px;}
.y1{bottom:1039.195313px;}
.y162{bottom:1039.391601px;}
.y136{bottom:1039.391605px;}
.y29{bottom:1039.392335px;}
.y19e{bottom:1060.394531px;}
.y28{bottom:1063.195312px;}
.y11a{bottom:1064.595703px;}
.h6{height:36.448242px;}
.hb{height:44.730470px;}
.h4{height:45.858399px;}
.h3{height:48.796875px;}
.h5{height:49.992188px;}
.h1{height:50.027344px;}
.h8{height:57.146484px;}
.hc{height:58.365232px;}
.h9{height:77.844726px;}
.h7{height:87.158935px;}
.ha{height:139.939453px;}
.h2{height:158.419926px;}
.h0{height:1188.000000px;}
.w1{width:40.500000px;}
.w2{width:120.375000px;}
.w3{width:606.375000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:6.750000px;}
.x7{left:106.875000px;}
.x1{left:108.000000px;}
.x5{left:135.000000px;}
.x9{left:148.500000px;}
.x2{left:162.000000px;}
.x6{left:189.000000px;}
.x3{left:200.980857px;}
.xc{left:216.000000px;}
.xa{left:270.000000px;}
.xb{left:324.000000px;}
.x4{left:459.000000px;}
.xd{left:814.500000px;}
.xe{left:868.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-7.150453pt;}
._2{margin-left:-5.875000pt;}
._28{margin-left:-4.604795pt;}
._1{margin-left:-3.707687pt;}
._14{margin-left:-2.375000pt;}
._1b{margin-left:-1.156250pt;}
._20{width:2.375005pt;}
._1c{width:4.000001pt;}
._1e{width:7.812519pt;}
._1f{width:8.749924pt;}
._1d{width:12.000000pt;}
._21{width:19.999999pt;}
._27{width:26.687500pt;}
._24{width:28.000000pt;}
._2a{width:30.281250pt;}
._23{width:32.000002pt;}
._2d{width:37.375000pt;}
._25{width:39.562500pt;}
._26{width:44.000002pt;}
._31{width:63.999984pt;}
._30{width:68.000002pt;}
._2b{width:628.000000pt;}
._11{width:698.687500pt;}
._12{width:880.332686pt;}
._c{width:1084.749999pt;}
._2c{width:1244.000000pt;}
._16{width:1338.750000pt;}
._2e{width:1404.000000pt;}
._2f{width:1416.000000pt;}
._9{width:1443.749999pt;}
._13{width:1458.707688pt;}
._7{width:1466.781249pt;}
._17{width:1474.020187pt;}
._15{width:1501.187500pt;}
._10{width:1518.375000pt;}
._a{width:1552.062500pt;}
._18{width:1557.343750pt;}
._f{width:1656.968750pt;}
._b{width:1672.999999pt;}
._8{width:1683.718749pt;}
._5{width:1728.125000pt;}
._22{width:1796.000000pt;}
._e{width:1813.468749pt;}
._d{width:1875.863937pt;}
._4{width:1923.562500pt;}
._6{width:1998.218749pt;}
._3{width:2035.625000pt;}
._29{width:2040.000000pt;}
._19{width:2060.437500pt;}
._1a{width:2156.656249pt;}
.fs2{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666664pt;}
.fs1{font-size:202.666672pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:10.460932pt;}
.y8f{bottom:10.460935pt;}
.y87{bottom:10.460937pt;}
.ya2{bottom:10.460939pt;}
.y94{bottom:10.460945pt;}
.y96{bottom:10.460948pt;}
.y8c{bottom:13.220709pt;}
.y99{bottom:28.859372pt;}
.y8e{bottom:28.859375pt;}
.ya1{bottom:28.859379pt;}
.y93{bottom:28.859385pt;}
.y8b{bottom:34.378909pt;}
.y92{bottom:47.257812pt;}
.ya0{bottom:47.257819pt;}
.y8a{bottom:55.537109pt;}
.y9f{bottom:65.656259pt;}
.y9e{bottom:84.054699pt;}
.yf2{bottom:100.875647pt;}
.y9d{bottom:102.453125pt;}
.y7e{bottom:103.819013pt;}
.y161{bottom:104.355473pt;}
.y119{bottom:106.079433pt;}
.y135{bottom:106.401048pt;}
.y100{bottom:114.451820pt;}
.y157{bottom:115.942713pt;}
.y12e{bottom:116.265620pt;}
.y27{bottom:118.217127pt;}
.y177{bottom:119.186193pt;}
.yf1{bottom:122.033860pt;}
.y1b4{bottom:123.890620pt;}
.y7d{bottom:124.977216pt;}
.y160{bottom:125.513020pt;}
.y118{bottom:127.236980pt;}
.y134{bottom:127.559900pt;}
.yad{bottom:129.951172pt;}
.y19d{bottom:131.772132pt;}
.yff{bottom:135.610673pt;}
.y156{bottom:137.101567pt;}
.y12d{bottom:137.423824pt;}
.y26{bottom:139.375327pt;}
.y176{bottom:140.345047pt;}
.ycf{bottom:140.363931pt;}
.yf0{bottom:143.192060pt;}
.y7c{bottom:146.135420pt;}
.y15f{bottom:146.671873pt;}
.y117{bottom:148.395824pt;}
.y133{bottom:148.717447pt;}
.y1b3{bottom:150.382807pt;}
.yac{bottom:151.109375pt;}
.y19c{bottom:154.658852pt;}
.y4c{bottom:154.841793pt;}
.yfe{bottom:156.768235pt;}
.y155{bottom:158.260420pt;}
.y25{bottom:160.533527pt;}
.y6d{bottom:160.971673pt;}
.y175{bottom:161.502607pt;}
.yce{bottom:161.522134pt;}
.yef{bottom:164.350260pt;}
.y7b{bottom:167.293620pt;}
.y15e{bottom:167.830731pt;}
.y132{bottom:169.876300pt;}
.yab{bottom:172.267578pt;}
.y4b{bottom:175.999993pt;}
.y19b{bottom:177.546879pt;}
.yfd{bottom:177.927087pt;}
.y154{bottom:179.417967pt;}
.y24{bottom:181.691727pt;}
.y6c{bottom:182.129887pt;}
.y174{bottom:182.661460pt;}
.ycd{bottom:182.680337pt;}
.yee{bottom:185.508461pt;}
.y7a{bottom:188.451825pt;}
.y131{bottom:191.033852pt;}
.y1b2{bottom:192.356772pt;}
.yaa{bottom:193.425781pt;}
.y4a{bottom:197.158207pt;}
.yfc{bottom:199.084633pt;}
.y19a{bottom:200.436199pt;}
.y153{bottom:200.575527pt;}
.y23{bottom:202.849940pt;}
.y6b{bottom:203.288087pt;}
.y173{bottom:203.819007pt;}
.ycc{bottom:203.838540pt;}
.yed{bottom:206.666664pt;}
.y79{bottom:209.610028pt;}
.y1b1{bottom:211.749999pt;}
.ya9{bottom:214.583984pt;}
.y49{bottom:218.316407pt;}
.yfb{bottom:220.243487pt;}
.y199{bottom:220.348953pt;}
.y152{bottom:221.734380pt;}
.y22{bottom:224.008140pt;}
.y6a{bottom:224.446287pt;}
.y172{bottom:224.977860pt;}
.ycb{bottom:224.996744pt;}
.yec{bottom:227.824867pt;}
.y78{bottom:230.768231pt;}
.ya8{bottom:235.742187pt;}
.y1b0{bottom:236.997393pt;}
.y48{bottom:239.474607pt;}
.yfa{bottom:241.401047pt;}
.y198{bottom:241.507807pt;}
.y151{bottom:242.893233pt;}
.y21{bottom:245.166340pt;}
.y69{bottom:245.604487pt;}
.y171{bottom:246.135420pt;}
.yca{bottom:246.154947pt;}
.yeb{bottom:248.983070pt;}
.y77{bottom:251.926434pt;}
.ya7{bottom:256.900390pt;}
.y47{bottom:260.632807pt;}
.yf9{bottom:262.559892pt;}
.y197{bottom:262.666660pt;}
.y150{bottom:264.050780pt;}
.y20{bottom:266.324540pt;}
.y68{bottom:266.762700pt;}
.yc9{bottom:267.313150pt;}
.yea{bottom:270.141273pt;}
.y170{bottom:272.627607pt;}
.y76{bottom:273.084637pt;}
.ya6{bottom:278.058593pt;}
.y1af{bottom:279.489580pt;}
.y46{bottom:281.791020pt;}
.yf8{bottom:283.717447pt;}
.y196{bottom:283.824220pt;}
.y14f{bottom:285.208327pt;}
.y1f{bottom:287.482753pt;}
.y67{bottom:287.920900pt;}
.yc8{bottom:288.471353pt;}
.ye9{bottom:291.299473pt;}
.y75{bottom:294.242840pt;}
.ya5{bottom:299.216793pt;}
.y45{bottom:302.949220pt;}
.yf7{bottom:304.876300pt;}
.y195{bottom:304.981767pt;}
.y14e{bottom:306.367193pt;}
.y1e{bottom:308.640953pt;}
.y66{bottom:309.079107pt;}
.yc7{bottom:309.629560pt;}
.y16f{bottom:309.785153pt;}
.ye8{bottom:312.457687pt;}
.y74{bottom:315.401043pt;}
.ya4{bottom:320.374993pt;}
.y1ae{bottom:321.980473pt;}
.y44{bottom:324.107420pt;}
.yf6{bottom:326.033860pt;}
.y194{bottom:326.140620pt;}
.y14d{bottom:327.526047pt;}
.y1d{bottom:329.799153pt;}
.y65{bottom:330.237310pt;}
.yc6{bottom:330.787763pt;}
.y16e{bottom:330.942713pt;}
.ye7{bottom:333.615887pt;}
.y73{bottom:336.559247pt;}
.y9c{bottom:343.921868pt;}
.y43{bottom:345.265620pt;}
.y193{bottom:347.299473pt;}
.y14c{bottom:348.683593pt;}
.y1c{bottom:350.957353pt;}
.y64{bottom:351.395513pt;}
.yc5{bottom:351.945967pt;}
.y16d{bottom:352.101567pt;}
.yf5{bottom:352.525393pt;}
.ye6{bottom:354.774087pt;}
.y72{bottom:357.717447pt;}
.y1ad{bottom:364.472660pt;}
.y42{bottom:366.423833pt;}
.y192{bottom:368.457033pt;}
.y14b{bottom:369.841140pt;}
.y1b{bottom:372.115553pt;}
.y63{bottom:372.553713pt;}
.yc4{bottom:373.104163pt;}
.y16c{bottom:373.260420pt;}
.y116{bottom:373.615887pt;}
.ye5{bottom:375.932287pt;}
.y71{bottom:378.875647pt;}
.y41{bottom:387.582033pt;}
.y191{bottom:389.614580pt;}
.yf4{bottom:389.683593pt;}
.y1a{bottom:390.513993pt;}
.y14a{bottom:390.999997pt;}
.y62{bottom:393.711920pt;}
.yc3{bottom:394.262367pt;}
.y16b{bottom:394.417967pt;}
.y115{bottom:394.774732pt;}
.ye4{bottom:397.090500pt;}
.y70{bottom:400.033860pt;}
.y40{bottom:405.980473pt;}
.y1ac{bottom:406.964847pt;}
.y19{bottom:408.912433pt;}
.y190{bottom:410.773433pt;}
.yf3{bottom:410.841795pt;}
.y61{bottom:414.870123pt;}
.yc2{bottom:415.420574pt;}
.y16a{bottom:415.575527pt;}
.y114{bottom:415.932287pt;}
.ya3{bottom:417.515619pt;}
.ye3{bottom:418.248700pt;}
.y6f{bottom:421.192060pt;}
.y18{bottom:427.310873pt;}
.y3f{bottom:428.378900pt;}
.y18f{bottom:431.932287pt;}
.y9b{bottom:435.914056pt;}
.y60{bottom:436.028327pt;}
.yc1{bottom:436.578777pt;}
.y169{bottom:436.734380pt;}
.y113{bottom:437.091145pt;}
.y149{bottom:438.678380pt;}
.ye2{bottom:439.406900pt;}
.y6e{bottom:442.350257pt;}
.y17{bottom:445.709313pt;}
.y1ab{bottom:449.455727pt;}
.y3e{bottom:450.777340pt;}
.y18e{bottom:453.089847pt;}
.yc0{bottom:457.736980pt;}
.y168{bottom:457.893233pt;}
.y112{bottom:458.248700pt;}
.y148{bottom:459.837233pt;}
.ye1{bottom:460.565110pt;}
.y5f{bottom:462.519859pt;}
.y16{bottom:464.107753pt;}
.y98{bottom:469.312501pt;}
.y3d{bottom:473.175780pt;}
.y18d{bottom:474.247393pt;}
.ybf{bottom:478.895187pt;}
.y167{bottom:479.050772pt;}
.y111{bottom:479.407553pt;}
.y147{bottom:480.994793pt;}
.ye0{bottom:481.723313pt;}
.y15{bottom:482.506180pt;}
.y1aa{bottom:491.947913pt;}
.y18c{bottom:495.406247pt;}
.y3c{bottom:495.574220pt;}
.ybe{bottom:500.053390pt;}
.y166{bottom:500.208327pt;}
.y110{bottom:500.565102pt;}
.y14{bottom:500.904620pt;}
.y146{bottom:502.153639pt;}
.ydf{bottom:502.881513pt;}
.y15d{bottom:503.050780pt;}
.y97{bottom:506.109376pt;}
.y5e{bottom:506.155769pt;}
.y18b{bottom:516.565100pt;}
.y3b{bottom:517.972660pt;}
.y13{bottom:519.303060pt;}
.ybd{bottom:521.211593pt;}
.y165{bottom:521.367193pt;}
.y10f{bottom:521.723953pt;}
.y145{bottom:523.311193pt;}
.yde{bottom:524.039713pt;}
.y15c{bottom:524.208327pt;}
.y5d{bottom:531.125329pt;}
.y1a9{bottom:534.440100pt;}
.y12{bottom:537.701500pt;}
.y18a{bottom:537.722660pt;}
.y91{bottom:539.507808pt;}
.y3a{bottom:540.371100pt;}
.ybc{bottom:542.369790pt;}
.y164{bottom:542.526047pt;}
.y10e{bottom:542.881513pt;}
.y144{bottom:543.950519pt;}
.ydd{bottom:545.197913pt;}
.y15b{bottom:545.367193pt;}
.y5c{bottom:556.094401pt;}
.y11{bottom:556.099940pt;}
.y95{bottom:557.906245pt;}
.y189{bottom:558.880207pt;}
.y12c{bottom:560.644527pt;}
.y39{bottom:562.769527pt;}
.ybb{bottom:563.527993pt;}
.y163{bottom:563.683591pt;}
.y143{bottom:563.864580pt;}
.y10d{bottom:564.040359pt;}
.ydc{bottom:566.356113pt;}
.y15a{bottom:566.526047pt;}
.y10{bottom:574.498367pt;}
.y90{bottom:576.304683pt;}
.y1a8{bottom:576.929687pt;}
.y188{bottom:580.039060pt;}
.y5b{bottom:581.063807pt;}
.y12b{bottom:581.802736pt;}
.y142{bottom:585.022140pt;}
.y38{bottom:585.167967pt;}
.y10c{bottom:585.197913pt;}
.ydb{bottom:587.514327pt;}
.y159{bottom:587.683593pt;}
.yba{bottom:590.018887pt;}
.yf{bottom:592.896807pt;}
.y187{bottom:601.197913pt;}
.y12a{bottom:602.960940pt;}
.y5a{bottom:606.033205pt;}
.y141{bottom:606.180986pt;}
.y10b{bottom:606.356767pt;}
.y37{bottom:607.566407pt;}
.yda{bottom:608.672523pt;}
.y158{bottom:608.841143pt;}
.y89{bottom:609.703124pt;}
.ye{bottom:611.295247pt;}
.y1a7{bottom:619.421873pt;}
.y186{bottom:622.355473pt;}
.y129{bottom:624.119136pt;}
.yb9{bottom:627.177087pt;}
.y140{bottom:627.338540pt;}
.y10a{bottom:627.514329pt;}
.yd{bottom:629.693687pt;}
.yd9{bottom:629.830727pt;}
.y36{bottom:629.964847pt;}
.y59{bottom:631.002444pt;}
.y8d{bottom:636.380859pt;}
.y185{bottom:643.513020pt;}
.y128{bottom:645.277340pt;}
.yc{bottom:648.092127pt;}
.yb8{bottom:648.335287pt;}
.y13f{bottom:648.497400pt;}
.y109{bottom:648.673180pt;}
.yd8{bottom:650.988927pt;}
.y35{bottom:652.363287pt;}
.y88{bottom:654.779296pt;}
.y58{bottom:655.971690pt;}
.y1a6{bottom:661.914060pt;}
.y184{bottom:664.673177pt;}
.y127{bottom:666.435550pt;}
.yb{bottom:666.490553pt;}
.yb7{bottom:669.493487pt;}
.y13e{bottom:669.654947pt;}
.yd7{bottom:672.147140pt;}
.y34{bottom:674.761713pt;}
.y108{bottom:675.164060pt;}
.y57{bottom:680.940920pt;}
.ya{bottom:684.888993pt;}
.y183{bottom:685.830727pt;}
.y126{bottom:687.593753pt;}
.y86{bottom:688.177736pt;}
.yb6{bottom:690.662761pt;}
.y13d{bottom:690.813799pt;}
.yd6{bottom:693.305340pt;}
.y33{bottom:697.160153pt;}
.y9{bottom:703.287433pt;}
.y1a5{bottom:704.403647pt;}
.y56{bottom:705.910487pt;}
.y182{bottom:706.989587pt;}
.y125{bottom:708.751950pt;}
.yb5{bottom:711.901694pt;}
.y13c{bottom:711.971353pt;}
.y107{bottom:712.322270pt;}
.yd5{bottom:714.463540pt;}
.y32{bottom:719.558593pt;}
.y55{bottom:726.550132pt;}
.y85{bottom:727.796873pt;}
.y181{bottom:728.147127pt;}
.y124{bottom:729.910153pt;}
.yb4{bottom:733.130207pt;}
.y106{bottom:733.480473pt;}
.y8{bottom:737.923825pt;}
.y13b{bottom:738.463540pt;}
.yd4{bottom:740.955074pt;}
.y31{bottom:741.957033pt;}
.y1a4{bottom:746.895833pt;}
.y180{bottom:749.305987pt;}
.y123{bottom:751.068353pt;}
.y54{bottom:751.796873pt;}
.y84{bottom:754.288406pt;}
.y105{bottom:754.638670pt;}
.y30{bottom:764.355473pt;}
.y17f{bottom:770.463536pt;}
.y122{bottom:772.226563pt;}
.yb3{bottom:775.446620pt;}
.y13a{bottom:775.622393pt;}
.y104{bottom:775.796873pt;}
.yd3{bottom:778.113286pt;}
.y2f{bottom:786.753900pt;}
.y1a3{bottom:789.388021pt;}
.y7{bottom:791.446620pt;}
.y53{bottom:791.621745pt;}
.y17e{bottom:791.622396pt;}
.y121{bottom:793.384767pt;}
.y83{bottom:794.113281pt;}
.y139{bottom:796.779953pt;}
.y103{bottom:796.955073pt;}
.yb2{bottom:801.938151pt;}
.y2e{bottom:809.152340pt;}
.y6{bottom:812.604820pt;}
.y52{bottom:812.779948pt;}
.y17d{bottom:812.779950pt;}
.y120{bottom:814.542967pt;}
.y82{bottom:815.271484pt;}
.yd2{bottom:817.938151pt;}
.y102{bottom:818.113281pt;}
.y138{bottom:823.270833pt;}
.y2d{bottom:831.550781pt;}
.y5{bottom:833.763021pt;}
.y51{bottom:833.938152pt;}
.y17c{bottom:833.938802pt;}
.y1a2{bottom:835.690101pt;}
.y11f{bottom:835.701171pt;}
.y81{bottom:836.429688pt;}
.yb1{bottom:839.096355pt;}
.y101{bottom:839.271484pt;}
.y2c{bottom:853.949219pt;}
.y4{bottom:854.921224pt;}
.y17b{bottom:855.096349pt;}
.y50{bottom:855.096354pt;}
.y11e{bottom:856.859375pt;}
.yb0{bottom:860.254557pt;}
.y130{bottom:860.255208pt;}
.yd1{bottom:860.429687pt;}
.y1a1{bottom:860.660155pt;}
.y80{bottom:862.921223pt;}
.y3{bottom:876.079427pt;}
.y4f{bottom:876.254558pt;}
.y17a{bottom:876.255208pt;}
.y2b{bottom:876.347656pt;}
.y11d{bottom:878.017578pt;}
.yaf{bottom:881.412760pt;}
.yd0{bottom:881.587891pt;}
.y137{bottom:881.588547pt;}
.y1a0{bottom:885.628905pt;}
.y2{bottom:897.237631pt;}
.y4e{bottom:897.412760pt;}
.y179{bottom:897.412763pt;}
.y2a{bottom:898.746093pt;}
.y11c{bottom:899.175781pt;}
.y7f{bottom:902.746093pt;}
.yae{bottom:907.904298pt;}
.y12f{bottom:907.904949pt;}
.y19f{bottom:910.597656pt;}
.y4d{bottom:918.570964pt;}
.y178{bottom:918.571615pt;}
.y11b{bottom:920.333984pt;}
.y1{bottom:923.729168pt;}
.y162{bottom:923.903645pt;}
.y136{bottom:923.903649pt;}
.y29{bottom:923.904297pt;}
.y19e{bottom:942.572916pt;}
.y28{bottom:945.062500pt;}
.y11a{bottom:946.307292pt;}
.h6{height:32.398437pt;}
.hb{height:39.760418pt;}
.h4{height:40.763022pt;}
.h3{height:43.375000pt;}
.h5{height:44.437500pt;}
.h1{height:44.468750pt;}
.h8{height:50.796875pt;}
.hc{height:51.880206pt;}
.h9{height:69.195312pt;}
.h7{height:77.474609pt;}
.ha{height:124.390625pt;}
.h2{height:140.817712pt;}
.h0{height:1056.000000pt;}
.w1{width:36.000000pt;}
.w2{width:107.000000pt;}
.w3{width:539.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.000000pt;}
.x7{left:95.000000pt;}
.x1{left:96.000000pt;}
.x5{left:120.000000pt;}
.x9{left:132.000000pt;}
.x2{left:144.000000pt;}
.x6{left:168.000000pt;}
.x3{left:178.649651pt;}
.xc{left:192.000000pt;}
.xa{left:240.000000pt;}
.xb{left:288.000000pt;}
.x4{left:408.000000pt;}
.xd{left:724.000000pt;}
.xe{left:772.000000pt;}
}




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