
    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_0d602d24e125b53741d733d1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_cf311bae5ce1707f7105ce07.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_36980f6d0b326c377d71bc16.woff')format("woff");}.ff3{font-family:ff3;line-height:0.710938;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_36980f6d0b326c377d71bc16.woff')format("woff");}.ff4{font-family:ff4;line-height:0.710938;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_6c5a69377ccc1a963c6bea3f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_a71c0174fb4eaa64d90a18b8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.759766;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_770b065085fcb64ea9792a56.woff')format("woff");}.ff7{font-family:ff7;line-height:0.770020;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_93126e4846982587de6f0415.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2be9da46f7d0ca4afa6b023.woff')format("woff");}.ff9{font-family:ff9;line-height:0.677734;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_ef4ea02fd11060b993c8980d.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_441a487cb6c320d0925e58ff.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a8a645c8b6e56e4a8b9da040.woff')format("woff");}.ffc{font-family:ffc;line-height:0.710938;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_06e3c6c41107420df962d2a7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.861816;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_55db04b3d13f63c76a83d8a8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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:fff;src:url('chunks/assets/font_92836e1734c5776d0d5d4c05.woff')format("woff");}.fff{font-family:fff;line-height:4.335938;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:ff10;src:url('chunks/assets/font_a2a43a01e168763f99c9f52b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.675781;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:ff11;src:url('chunks/assets/font_aea90819351614a679a97f9d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.895996;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.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,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);}
.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);}
.v8{vertical-align:-147.840855px;}
.v9{vertical-align:-32.340000px;}
.va{vertical-align:-27.700577px;}
.v3{vertical-align:-22.867839px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.982283px;}
.v2{vertical-align:32.339998px;}
.v5{vertical-align:36.316097px;}
.v1{vertical-align:55.207834px;}
.v7{vertical-align:68.656096px;}
.v6{vertical-align:91.523931px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:366.429742px;}
.lsa{letter-spacing:1634.388481px;}
.ls10{letter-spacing:1677.514133px;}
.lsd{letter-spacing:1700.736931px;}
.ls9{letter-spacing:1806.064561px;}
.ls8{letter-spacing:1862.356996px;}
.ls5{letter-spacing:1894.817395px;}
.ls6{letter-spacing:1962.316504px;}
.lsb{letter-spacing:2035.064534px;}
.ls4{letter-spacing:2131.901672px;}
.lsc{letter-spacing:2310.963710px;}
.ls3{letter-spacing:2337.446395px;}
.ls7{letter-spacing:2342.308600px;}
.lse{letter-spacing:2439.908479px;}
.ls2{letter-spacing:2465.252065px;}
.ls1{letter-spacing:2545.052702px;}
.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;}
}
.wsb{word-spacing:-18.336914px;}
.ws1{word-spacing:-14.920899px;}
.ws3{word-spacing:-14.534180px;}
.ws2{word-spacing:-13.564453px;}
.ws6{word-spacing:-10.277217px;}
.ws4{word-spacing:-7.267090px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:15.813286px;}
.ws7{word-spacing:159.338319px;}
.wsa{word-spacing:214.907960px;}
.ws8{word-spacing:394.354538px;}
.ws9{word-spacing:399.000134px;}
._1e{margin-left:-735.731955px;}
._26{margin-left:-23.106446px;}
._7{margin-left:-8.490234px;}
._5{margin-left:-6.632951px;}
._4{margin-left:-5.554728px;}
._b{margin-left:-4.372010px;}
._3{margin-left:-2.416813px;}
._1{margin-left:-1.308747px;}
._a{width:1.110604px;}
._2c{width:2.424655px;}
._8{width:4.412839px;}
._f{width:5.433540px;}
._e{width:8.541611px;}
._d{width:9.933013px;}
._c{width:12.956241px;}
._9{width:17.881547px;}
._14{width:18.943806px;}
._25{width:20.298890px;}
._12{width:21.594191px;}
._11{width:22.743828px;}
._16{width:26.197551px;}
._10{width:27.209610px;}
._29{width:32.636090px;}
._1c{width:33.786841px;}
._13{width:35.995880px;}
._19{width:37.818132px;}
._20{width:40.525255px;}
._28{width:44.989402px;}
._2{width:48.888364px;}
._0{width:53.812310px;}
._1d{width:56.837006px;}
._1f{width:65.825259px;}
._2e{width:68.221862px;}
._2d{width:72.010661px;}
._2a{width:80.080965px;}
._2b{width:81.243923px;}
._22{width:89.880686px;}
._21{width:94.381547px;}
._23{width:137.991948px;}
._1a{width:291.004651px;}
._17{width:417.048234px;}
._15{width:438.488632px;}
._18{width:474.019531px;}
._1b{width:516.306241px;}
._6{width:697.595837px;}
._27{width:955.118874px;}
._24{width:962.977722px;}
.fc7{color:rgb(17,85,204);}
.fc4{color:rgb(79,189,177);}
.fc2{color:rgb(126,179,224);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(82,82,82);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.000001px;}
.fs7{font-size:46.669046px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs6{font-size:72.000000px;}
.fs9{font-size:78.739707px;}
.fs5{font-size:83.999997px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:167.999994px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.749909px;}
.y41{bottom:3.750000px;}
.y102{bottom:3.750733px;}
.y97{bottom:4.124267px;}
.y72{bottom:4.124633px;}
.y24{bottom:4.124909px;}
.y4{bottom:4.124988px;}
.y8{bottom:4.124995px;}
.y3f{bottom:4.125000px;}
.y9{bottom:4.125008px;}
.y27{bottom:4.125091px;}
.y42{bottom:4.125365px;}
.y100{bottom:4.125732px;}
.y7b{bottom:7.146240px;}
.y78{bottom:7.146606px;}
.ye3{bottom:11.999263px;}
.yda{bottom:11.999267px;}
.y10e{bottom:11.999269px;}
.ye8{bottom:11.999278px;}
.y107{bottom:11.999999px;}
.y1e{bottom:12.000006px;}
.y10b{bottom:12.000742px;}
.yde{bottom:12.001459px;}
.yea{bottom:12.001474px;}
.y7{bottom:24.266578px;}
.y120{bottom:29.999268px;}
.y1b{bottom:30.000000px;}
.y126{bottom:30.000731px;}
.y12a{bottom:30.001453px;}
.y10a{bottom:32.141602px;}
.ye2{bottom:32.142328px;}
.ydd{bottom:32.142334px;}
.ye7{bottom:32.142343px;}
.y6{bottom:44.408203px;}
.y125{bottom:50.141591px;}
.y129{bottom:50.142328px;}
.y12c{bottom:50.142334px;}
.ye1{bottom:52.283203px;}
.y6d{bottom:56.849858px;}
.y20{bottom:56.850038px;}
.y3b{bottom:56.850218px;}
.y139{bottom:56.850578px;}
.y128{bottom:70.283203px;}
.y124{bottom:70.284656px;}
.y123{bottom:90.425531px;}
.y1d{bottom:95.999999px;}
.y122{bottom:110.566407px;}
.y96{bottom:124.015868px;}
.y6f{bottom:124.016236px;}
.y13b{bottom:124.016600px;}
.y22{bottom:124.016693px;}
.y3d{bottom:124.016968px;}
.y1f{bottom:141.280433px;}
.y138{bottom:143.992673px;}
.y1a{bottom:158.421930px;}
.yba{bottom:165.561038px;}
.y137{bottom:167.154788px;}
.y1c{bottom:168.655329px;}
.y6c{bottom:173.790524px;}
.yfe{bottom:183.997556px;}
.yb9{bottom:195.773430px;}
.yb8{bottom:195.773438px;}
.y136{bottom:202.318358px;}
.y6b{bottom:204.002926px;}
.y95{bottom:212.638178px;}
.yfd{bottom:214.209959px;}
.y118{bottom:217.042973px;}
.y2{bottom:223.816400px;}
.y135{bottom:225.480473px;}
.yb7{bottom:225.985838px;}
.y6a{bottom:234.215328px;}
.yfc{bottom:244.422361px;}
.y134{bottom:248.644043px;}
.y94{bottom:254.850578px;}
.y69{bottom:264.427730px;}
.yb6{bottom:268.197503px;}
.y93{bottom:271.992188px;}
.yd7{bottom:272.305664px;}
.y117{bottom:274.288325px;}
.yfb{bottom:274.634763px;}
.y133{bottom:283.806158px;}
.y68{bottom:294.640133px;}
.y92{bottom:296.279297px;}
.yb2{bottom:301.982741px;}
.yb5{bottom:302.391954px;}
.yd6{bottom:302.518066px;}
.yb4{bottom:304.316193px;}
.yfa{bottom:304.847165px;}
.y132{bottom:306.969719px;}
.yb0{bottom:311.061228px;}
.yb1{bottom:311.061765px;}
.y19{bottom:315.867743px;}
.y91{bottom:320.567507px;}
.yb3{bottom:322.939484px;}
.y131{bottom:330.131828px;}
.y116{bottom:332.693851px;}
.yd5{bottom:332.730468px;}
.yf9{bottom:335.059568px;}
.y67{bottom:335.143069px;}
.y90{bottom:344.855708px;}
.yaf{bottom:352.593020px;}
.y18{bottom:357.911042px;}
.y115{bottom:362.906253px;}
.yd4{bottom:362.942870px;}
.y130{bottom:365.293943px;}
.y8f{bottom:369.142817px;}
.yf8{bottom:375.562504px;}
.y66{bottom:378.811516px;}
.yae{bottom:382.805423px;}
.y3a{bottom:384.834048px;}
.y12f{bottom:388.457513px;}
.y114{bottom:393.118655px;}
.yd3{bottom:393.155273px;}
.y8e{bottom:393.431027px;}
.y17{bottom:399.615782px;}
.y39{bottom:404.975648px;}
.y65{bottom:409.023918px;}
.y12e{bottom:411.621098px;}
.yad{bottom:416.589874px;}
.y8d{bottom:417.719243px;}
.yf7{bottom:419.231693px;}
.y113{bottom:423.331058px;}
.yac{bottom:423.335445px;}
.yab{bottom:423.335606px;}
.y38{bottom:425.117436px;}
.yd2{bottom:433.658209px;}
.yf5{bottom:436.373290px;}
.y64{bottom:439.236320px;}
.y16{bottom:441.320612px;}
.y8c{bottom:442.006352px;}
.y37{bottom:445.258853px;}
.yf6{bottom:456.514160px;}
.yaa{bottom:462.533941px;}
.y112{bottom:463.833979px;}
.y8b{bottom:466.294562px;}
.y12d{bottom:468.866451px;}
.y63{bottom:469.448723px;}
.yf4{bottom:476.657226px;}
.yd1{bottom:477.327398px;}
.y15{bottom:483.025547px;}
.y36{bottom:486.421688px;}
.y150{bottom:489.473138px;}
.y8a{bottom:490.582763px;}
.ya9{bottom:492.746343px;}
.y111{bottom:507.500978px;}
.y62{bottom:512.532715px;}
.yf2{bottom:513.673091px;}
.y12b{bottom:514.200440px;}
.y89{bottom:514.869872px;}
.yd0{bottom:520.411375px;}
.ya8{bottom:522.958745px;}
.y110{bottom:524.642584px;}
.y14{bottom:524.730287px;}
.y35{bottom:527.584718px;}
.yf3{bottom:533.813960px;}
.y88{bottom:539.158082px;}
.y14f{bottom:541.756343px;}
.y10f{bottom:544.785651px;}
.ya7{bottom:553.171148px;}
.yf1{bottom:553.957026px;}
.y87{bottom:563.446283px;}
.y13{bottom:566.435162px;}
.ycf{bottom:566.991946px;}
.y34{bottom:568.747373px;}
.y61{bottom:574.146605px;}
.y14e{bottom:576.919928px;}
.y10d{bottom:581.801510px;}
.y86{bottom:587.733392px;}
.yef{bottom:590.972905px;}
.y12{bottom:592.613435px;}
.ya6{bottom:595.382819px;}
.yce{bottom:597.204348px;}
.y14d{bottom:600.082028px;}
.y10c{bottom:601.943844px;}
.y121{bottom:607.357917px;}
.y33{bottom:609.910223px;}
.yf0{bottom:611.113774px;}
.y85{bottom:612.021602px;}
.y53{bottom:617.449958px;}
.y14c{bottom:623.244143px;}
.ya5{bottom:625.595221px;}
.ycd{bottom:627.416750px;}
.yee{bottom:631.256841px;}
.y60{bottom:632.551763px;}
.y84{bottom:636.309818px;}
.y52{bottom:637.591194px;}
.y109{bottom:638.958976px;}
.y127{bottom:647.641121px;}
.y32{bottom:651.073235px;}
.ya4{bottom:655.807623px;}
.ycc{bottom:657.629153px;}
.y14b{bottom:658.407713px;}
.y108{bottom:659.101311px;}
.y11{bottom:659.409482px;}
.y83{bottom:660.596927px;}
.y51{bottom:662.233149px;}
.yec{bottom:668.272706px;}
.y31{bottom:674.235893px;}
.y5f{bottom:674.764156px;}
.y14a{bottom:681.571283px;}
.y82{bottom:684.885137px;}
.ya3{bottom:686.020025px;}
.y50{bottom:686.874759px;}
.y11f{bottom:687.925056px;}
.yed{bottom:688.413574px;}
.y106{bottom:696.118659px;}
.ycb{bottom:699.840826px;}
.y10{bottom:701.114357px;}
.y5e{bottom:704.976559px;}
.yeb{bottom:708.556641px;}
.y81{bottom:709.173338px;}
.y4f{bottom:711.515994px;}
.y30{bottom:715.398743px;}
.ya2{bottom:716.232428px;}
.y149{bottom:716.733398px;}
.yca{bottom:730.053228px;}
.y105{bottom:733.135251px;}
.y80{bottom:733.460447px;}
.y5d{bottom:735.188963px;}
.y4e{bottom:736.157964px;}
.y148{bottom:739.895504px;}
.yf{bottom:742.988393px;}
.ye6{bottom:745.572505px;}
.y2f{bottom:756.561773px;}
.ya1{bottom:756.735349px;}
.y7f{bottom:757.748657px;}
.yc9{bottom:760.265630px;}
.y4d{bottom:760.799379px;}
.y147{bottom:763.059079px;}
.y5c{bottom:765.401367px;}
.ye9{bottom:765.713374px;}
.y104{bottom:770.151126px;}
.y7e{bottom:782.036858px;}
.ye{bottom:785.200748px;}
.y4c{bottom:785.440794px;}
.ye5{bottom:785.856441px;}
.y146{bottom:786.222653px;}
.y11e{bottom:787.137458px;}
.yc8{bottom:790.478033px;}
.y5b{bottom:795.613766px;}
.y2e{bottom:797.724428px;}
.ya0{bottom:800.404543px;}
.y7d{bottom:806.323982px;}
.y4b{bottom:810.082764px;}
.y103{bottom:820.072259px;}
.y145{bottom:821.384768px;}
.ye0{bottom:822.872321px;}
.y5a{bottom:825.826169px;}
.yd{bottom:827.413193px;}
.y7c{bottom:830.612177px;}
.y9f{bottom:830.616946px;}
.yc6{bottom:834.376410px;}
.yc7{bottom:834.376470px;}
.y4a{bottom:834.724179px;}
.y2d{bottom:838.887263px;}
.ye4{bottom:843.013190px;}
.y11d{bottom:844.382810px;}
.y144{bottom:844.546879px;}
.y7a{bottom:854.900393px;}
.y59{bottom:856.038571px;}
.y49{bottom:859.365594px;}
.y9e{bottom:860.829346px;}
.ydf{bottom:863.156256px;}
.y143{bottom:867.710453px;}
.yc{bottom:869.625593px;}
.yc4{bottom:877.772460px;}
.y79{bottom:879.187502px;}
.y2c{bottom:880.050293px;}
.yc5{bottom:880.737603px;}
.y48{bottom:884.007564px;}
.y58{bottom:886.250973px;}
.y9d{bottom:891.041748px;}
.y11c{bottom:902.788328px;}
.y142{bottom:902.872553px;}
.y77{bottom:903.475712px;}
.ydc{bottom:906.013190px;}
.y47{bottom:908.648994px;}
.yb{bottom:911.837978px;}
.yc3{bottom:914.732670px;}
.yc2{bottom:914.733398px;}
.y57{bottom:916.463375px;}
.y2b{bottom:921.212948px;}
.y9c{bottom:921.254151px;}
.y141{bottom:926.036138px;}
.ydb{bottom:926.156256px;}
.y11b{bottom:933.000725px;}
.y46{bottom:933.290409px;}
.yc1{bottom:944.945798px;}
.y56{bottom:946.675778px;}
.y140{bottom:949.198241px;}
.y9b{bottom:951.466552px;}
.y76{bottom:953.959345px;}
.ya{bottom:954.050393px;}
.y45{bottom:957.932378px;}
.yd9{bottom:963.172116px;}
.y11a{bottom:963.213128px;}
.y2a{bottom:969.425348px;}
.y1{bottom:970.066995px;}
.y13f{bottom:972.361816px;}
.yc0{bottom:975.157470px;}
.ybf{bottom:975.158145px;}
.y9a{bottom:981.678955px;}
.y75{bottom:982.881223px;}
.y5{bottom:990.208603px;}
.y119{bottom:993.425543px;}
.y13e{bottom:995.525390px;}
.y55{bottom:1003.921874px;}
.y44{bottom:1009.178285px;}
.y29{bottom:1011.637847px;}
.ybe{bottom:1011.793945px;}
.y99{bottom:1011.891358px;}
.yd8{bottom:1013.093262px;}
.y74{bottom:1023.637939px;}
.y13d{bottom:1030.687503px;}
.ybd{bottom:1040.681431px;}
.ybb{bottom:1047.426943px;}
.ybc{bottom:1047.427002px;}
.y3{bottom:1050.633408px;}
.y98{bottom:1052.394287px;}
.y13c{bottom:1053.849610px;}
.y54{bottom:1053.849976px;}
.y28{bottom:1053.850159px;}
.y73{bottom:1053.850342px;}
.y43{bottom:1056.762085px;}
.y13a{bottom:1069.866211px;}
.y3c{bottom:1069.866577px;}
.y21{bottom:1069.866761px;}
.y6e{bottom:1069.866943px;}
.yff{bottom:1090.007812px;}
.y3e{bottom:1090.008178px;}
.y23{bottom:1090.008453px;}
.y70{bottom:1090.008544px;}
.y101{bottom:1171.754882px;}
.y40{bottom:1171.755249px;}
.y25{bottom:1171.755523px;}
.y71{bottom:1171.755615px;}
.he{height:18.002838px;}
.h14{height:18.002930px;}
.h2c{height:18.003662px;}
.h1f{height:23.162842px;}
.h1e{height:23.163208px;}
.h26{height:35.890869px;}
.h2d{height:35.891601px;}
.h15{height:35.991211px;}
.h1d{height:43.066405px;}
.h27{height:43.989259px;}
.h5{height:44.891603px;}
.h10{height:45.117189px;}
.hf{height:45.615233px;}
.h6{height:46.921876px;}
.h2{height:47.373048px;}
.h1b{height:49.218750px;}
.h8{height:49.500001px;}
.h2e{height:56.033204px;}
.h28{height:56.033935px;}
.h1a{height:57.421873px;}
.h4{height:60.424804px;}
.h2f{height:71.890869px;}
.h16{height:71.982422px;}
.h19{height:73.828125px;}
.h29{height:76.174805px;}
.h17{height:76.781250px;}
.h32{height:92.033935px;}
.hd{height:99.749909px;}
.h13{height:99.750000px;}
.h2b{height:99.750732px;}
.h31{height:112.174805px;}
.h24{height:114.507792px;}
.h7{height:114.843746px;}
.ha{height:119.891601px;}
.h18{height:127.199700px;}
.h11{height:127.199895px;}
.hb{height:127.200075px;}
.h2a{height:127.200435px;}
.h33{height:127.201170px;}
.h9{height:130.125000px;}
.h3{height:139.124988px;}
.h30{height:152.458008px;}
.h25{height:161.938480px;}
.h20{height:169.715626px;}
.h21{height:188.920764px;}
.h1c{height:193.133057px;}
.hc{height:193.133239px;}
.h12{height:193.133423px;}
.h34{height:193.133789px;}
.h23{height:193.196791px;}
.h22{height:206.031724px;}
.h1{height:292.933005px;}
.h0{height:1263.000000px;}
.wf{width:57.375012px;}
.w11{width:88.874954px;}
.w5{width:153.000023px;}
.wd{width:164.250023px;}
.w9{width:211.499909px;}
.w8{width:211.500000px;}
.w7{width:211.500022px;}
.wc{width:236.249909px;}
.wa{width:238.500022px;}
.wb{width:240.750000px;}
.w2{width:296.999955px;}
.w4{width:358.874910px;}
.w3{width:358.875030px;}
.we{width:553.499910px;}
.w10{width:559.124955px;}
.w6{width:569.249910px;}
.w12{width:707.624910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xa{left:6.750000px;}
.x4{left:7.875000px;}
.x1f{left:52.042382px;}
.x1e{left:58.837340px;}
.x21{left:61.059411px;}
.x20{left:63.961767px;}
.x18{left:66.348856px;}
.x1c{left:68.216617px;}
.x1b{left:74.536769px;}
.x1d{left:82.434539px;}
.x1a{left:83.533584px;}
.x5{left:85.049996px;}
.x8{left:86.174995px;}
.x16{left:88.927606px;}
.x2d{left:90.822504px;}
.x12{left:112.049996px;}
.x15{left:127.799995px;}
.x13{left:139.049996px;}
.x30{left:144.675007px;}
.xd{left:151.875000px;}
.x29{left:185.604104px;}
.xe{left:238.050018px;}
.x3{left:252.000000px;}
.x14{left:259.424996px;}
.x6{left:261.963404px;}
.x2a{left:264.262043px;}
.xb{left:275.625000px;}
.x2{left:297.675015px;}
.x24{left:308.085615px;}
.x2e{left:325.800015px;}
.x11{left:331.133204px;}
.x17{left:340.425015px;}
.x25{left:345.232416px;}
.x9{left:351.000000px;}
.x28{left:385.471980px;}
.x7{left:387.334897px;}
.xf{left:389.242553px;}
.x2c{left:412.285260px;}
.x1{left:446.456696px;}
.x27{left:484.934990px;}
.x26{left:491.942843px;}
.x19{left:553.050015px;}
.x2f{left:567.675015px;}
.x22{left:588.052740px;}
.x23{left:625.513527px;}
.x2b{left:658.386660px;}
.x31{left:704.924970px;}
.x32{left:791.149687px;}
.x10{left:799.506502px;}
.xc{left:807.863384px;}
@media print{
.v8{vertical-align:-131.414094pt;}
.v9{vertical-align:-28.746666pt;}
.va{vertical-align:-24.622735pt;}
.v3{vertical-align:-20.326968pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.984252pt;}
.v2{vertical-align:28.746665pt;}
.v5{vertical-align:32.280975pt;}
.v1{vertical-align:49.073630pt;}
.v7{vertical-align:61.027641pt;}
.v6{vertical-align:81.354606pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:325.715326pt;}
.lsa{letter-spacing:1452.789761pt;}
.ls10{letter-spacing:1491.123674pt;}
.lsd{letter-spacing:1511.766161pt;}
.ls9{letter-spacing:1605.390721pt;}
.ls8{letter-spacing:1655.428441pt;}
.ls5{letter-spacing:1684.282129pt;}
.ls6{letter-spacing:1744.281337pt;}
.lsb{letter-spacing:1808.946253pt;}
.ls4{letter-spacing:1895.023709pt;}
.lsc{letter-spacing:2054.189965pt;}
.ls3{letter-spacing:2077.730129pt;}
.ls7{letter-spacing:2082.052089pt;}
.lse{letter-spacing:2168.807537pt;}
.ls2{letter-spacing:2191.335169pt;}
.ls1{letter-spacing:2262.269069pt;}
.wsb{word-spacing:-16.299479pt;}
.ws1{word-spacing:-13.263021pt;}
.ws3{word-spacing:-12.919271pt;}
.ws2{word-spacing:-12.057291pt;}
.ws6{word-spacing:-9.135304pt;}
.ws4{word-spacing:-6.459635pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:14.056254pt;}
.ws7{word-spacing:141.634061pt;}
.wsa{word-spacing:191.029297pt;}
.ws8{word-spacing:350.537367pt;}
.ws9{word-spacing:354.666786pt;}
._1e{margin-left:-653.983960pt;}
._26{margin-left:-20.539063pt;}
._7{margin-left:-7.546875pt;}
._5{margin-left:-5.895956pt;}
._4{margin-left:-4.937536pt;}
._b{margin-left:-3.886231pt;}
._3{margin-left:-2.148278pt;}
._1{margin-left:-1.163330pt;}
._a{width:0.987204pt;}
._2c{width:2.155248pt;}
._8{width:3.922524pt;}
._f{width:4.829813pt;}
._e{width:7.592543pt;}
._d{width:8.829345pt;}
._c{width:11.516659pt;}
._9{width:15.894708pt;}
._14{width:16.838938pt;}
._25{width:18.043457pt;}
._12{width:19.194836pt;}
._11{width:20.216736pt;}
._16{width:23.286712pt;}
._10{width:24.186320pt;}
._29{width:29.009858pt;}
._1c{width:30.032747pt;}
._13{width:31.996338pt;}
._19{width:33.616117pt;}
._20{width:36.022449pt;}
._28{width:39.990580pt;}
._2{width:43.456324pt;}
._0{width:47.833164pt;}
._1d{width:50.521783pt;}
._1f{width:58.511341pt;}
._2e{width:60.641655pt;}
._2d{width:64.009477pt;}
._2a{width:71.183080pt;}
._2b{width:72.216821pt;}
._22{width:79.893943pt;}
._21{width:83.894708pt;}
._23{width:122.659509pt;}
._1a{width:258.670801pt;}
._17{width:370.709541pt;}
._15{width:389.767673pt;}
._18{width:421.350694pt;}
._1b{width:458.938880pt;}
._6{width:620.085188pt;}
._27{width:848.994555pt;}
._24{width:855.980198pt;}
.fs8{font-size:29.333334pt;}
.fs7{font-size:41.483597pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs6{font-size:64.000000pt;}
.fs9{font-size:69.990851pt;}
.fs5{font-size:74.666664pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:149.333328pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:3.333252pt;}
.y41{bottom:3.333334pt;}
.y102{bottom:3.333985pt;}
.y97{bottom:3.666015pt;}
.y72{bottom:3.666341pt;}
.y24{bottom:3.666585pt;}
.y4{bottom:3.666656pt;}
.y8{bottom:3.666662pt;}
.y3f{bottom:3.666667pt;}
.y9{bottom:3.666674pt;}
.y27{bottom:3.666747pt;}
.y42{bottom:3.666991pt;}
.y100{bottom:3.667317pt;}
.y7b{bottom:6.352213pt;}
.y78{bottom:6.352539pt;}
.ye3{bottom:10.666011pt;}
.yda{bottom:10.666015pt;}
.y10e{bottom:10.666016pt;}
.ye8{bottom:10.666025pt;}
.y107{bottom:10.666666pt;}
.y1e{bottom:10.666672pt;}
.y10b{bottom:10.667326pt;}
.yde{bottom:10.667963pt;}
.yea{bottom:10.667976pt;}
.y7{bottom:21.570291pt;}
.y120{bottom:26.666016pt;}
.y1b{bottom:26.666667pt;}
.y126{bottom:26.667316pt;}
.y12a{bottom:26.667958pt;}
.y10a{bottom:28.570312pt;}
.ye2{bottom:28.570958pt;}
.ydd{bottom:28.570963pt;}
.ye7{bottom:28.570971pt;}
.y6{bottom:39.473958pt;}
.y125{bottom:44.570303pt;}
.y129{bottom:44.570958pt;}
.y12c{bottom:44.570964pt;}
.ye1{bottom:46.473958pt;}
.y6d{bottom:50.533207pt;}
.y20{bottom:50.533367pt;}
.y3b{bottom:50.533527pt;}
.y139{bottom:50.533847pt;}
.y128{bottom:62.473958pt;}
.y124{bottom:62.475250pt;}
.y123{bottom:80.378250pt;}
.y1d{bottom:85.333333pt;}
.y122{bottom:98.281250pt;}
.y96{bottom:110.236327pt;}
.y6f{bottom:110.236654pt;}
.y13b{bottom:110.236978pt;}
.y22{bottom:110.237061pt;}
.y3d{bottom:110.237305pt;}
.y1f{bottom:125.582607pt;}
.y138{bottom:127.993487pt;}
.y1a{bottom:140.819493pt;}
.yba{bottom:147.165367pt;}
.y137{bottom:148.582034pt;}
.y1c{bottom:149.915848pt;}
.y6c{bottom:154.480465pt;}
.yfe{bottom:163.553383pt;}
.yb9{bottom:174.020827pt;}
.yb8{bottom:174.020834pt;}
.y136{bottom:179.838541pt;}
.y6b{bottom:181.335934pt;}
.y95{bottom:189.011714pt;}
.yfd{bottom:190.408852pt;}
.y118{bottom:192.927087pt;}
.y2{bottom:198.947911pt;}
.y135{bottom:200.427087pt;}
.yb7{bottom:200.876300pt;}
.y6a{bottom:208.191402pt;}
.yfc{bottom:217.264321pt;}
.y134{bottom:221.016927pt;}
.y94{bottom:226.533847pt;}
.y69{bottom:235.046872pt;}
.yb6{bottom:238.397780pt;}
.y93{bottom:241.770834pt;}
.yd7{bottom:242.049479pt;}
.y117{bottom:243.811844pt;}
.yfb{bottom:244.119789pt;}
.y133{bottom:252.272140pt;}
.y68{bottom:261.902340pt;}
.y92{bottom:263.359375pt;}
.yb2{bottom:268.429103pt;}
.yb5{bottom:268.792848pt;}
.yd6{bottom:268.904948pt;}
.yb4{bottom:270.503283pt;}
.yfa{bottom:270.975258pt;}
.y132{bottom:272.861973pt;}
.yb0{bottom:276.498869pt;}
.yb1{bottom:276.499347pt;}
.y19{bottom:280.771327pt;}
.y91{bottom:284.948895pt;}
.yb3{bottom:287.057319pt;}
.y131{bottom:293.450514pt;}
.y116{bottom:295.727868pt;}
.yd5{bottom:295.760416pt;}
.yf9{bottom:297.830727pt;}
.y67{bottom:297.904950pt;}
.y90{bottom:306.538407pt;}
.yaf{bottom:313.416018pt;}
.y18{bottom:318.143148pt;}
.y115{bottom:322.583336pt;}
.yd4{bottom:322.615885pt;}
.y130{bottom:324.705727pt;}
.y8f{bottom:328.126948pt;}
.yf8{bottom:333.833337pt;}
.y66{bottom:336.721348pt;}
.yae{bottom:340.271487pt;}
.y3a{bottom:342.074709pt;}
.y12f{bottom:345.295567pt;}
.y114{bottom:349.438805pt;}
.yd3{bottom:349.471354pt;}
.y8e{bottom:349.716468pt;}
.y17{bottom:355.214028pt;}
.y39{bottom:359.978354pt;}
.y65{bottom:363.576816pt;}
.y12e{bottom:365.885420pt;}
.yad{bottom:370.302110pt;}
.y8d{bottom:371.305994pt;}
.yf7{bottom:372.650394pt;}
.y113{bottom:376.294274pt;}
.yac{bottom:376.298173pt;}
.yab{bottom:376.298317pt;}
.y38{bottom:377.882165pt;}
.yd2{bottom:385.473963pt;}
.yf5{bottom:387.887369pt;}
.y64{bottom:390.432285pt;}
.y16{bottom:392.284988pt;}
.y8c{bottom:392.894535pt;}
.y37{bottom:395.785647pt;}
.yf6{bottom:405.790364pt;}
.yaa{bottom:411.141281pt;}
.y112{bottom:412.296870pt;}
.y8b{bottom:414.484055pt;}
.y12d{bottom:416.770178pt;}
.y63{bottom:417.287754pt;}
.yf4{bottom:423.695312pt;}
.yd1{bottom:424.291020pt;}
.y15{bottom:429.356042pt;}
.y36{bottom:432.374834pt;}
.y150{bottom:435.087234pt;}
.y8a{bottom:436.073567pt;}
.ya9{bottom:437.996749pt;}
.y111{bottom:451.111981pt;}
.y62{bottom:455.584636pt;}
.yf2{bottom:456.598303pt;}
.y12b{bottom:457.067057pt;}
.y89{bottom:457.662108pt;}
.yd0{bottom:462.587889pt;}
.ya8{bottom:464.852218pt;}
.y110{bottom:466.348964pt;}
.y14{bottom:466.426922pt;}
.y35{bottom:468.964194pt;}
.yf3{bottom:474.501297pt;}
.y88{bottom:479.251628pt;}
.y14f{bottom:481.561194pt;}
.y10f{bottom:484.253912pt;}
.ya7{bottom:491.707687pt;}
.yf1{bottom:492.406245pt;}
.y87{bottom:500.841141pt;}
.y13{bottom:503.497922pt;}
.ycf{bottom:503.992841pt;}
.y34{bottom:505.553220pt;}
.y61{bottom:510.352538pt;}
.y14e{bottom:512.817714pt;}
.y10d{bottom:517.156897pt;}
.y86{bottom:522.429682pt;}
.yef{bottom:525.309249pt;}
.y12{bottom:526.767498pt;}
.ya6{bottom:529.229172pt;}
.yce{bottom:530.848309pt;}
.y14d{bottom:533.406247pt;}
.y10c{bottom:535.061195pt;}
.y121{bottom:539.873704pt;}
.y33{bottom:542.142420pt;}
.yf0{bottom:543.212244pt;}
.y85{bottom:544.019202pt;}
.y53{bottom:548.844407pt;}
.y14c{bottom:553.994794pt;}
.ya5{bottom:556.084641pt;}
.ycd{bottom:557.703778pt;}
.yee{bottom:561.117192pt;}
.y60{bottom:562.268234pt;}
.y84{bottom:565.608727pt;}
.y52{bottom:566.747728pt;}
.y109{bottom:567.963535pt;}
.y127{bottom:575.680996pt;}
.y32{bottom:578.731765pt;}
.ya4{bottom:582.940109pt;}
.ycc{bottom:584.559247pt;}
.y14b{bottom:585.251300pt;}
.y108{bottom:585.867832pt;}
.y11{bottom:586.141762pt;}
.y83{bottom:587.197268pt;}
.y51{bottom:588.651688pt;}
.yec{bottom:594.020183pt;}
.y31{bottom:599.320794pt;}
.y5f{bottom:599.790360pt;}
.y14a{bottom:605.841140pt;}
.y82{bottom:608.786788pt;}
.ya3{bottom:609.795578pt;}
.y50{bottom:610.555341pt;}
.y11f{bottom:611.488939pt;}
.yed{bottom:611.923177pt;}
.y106{bottom:618.772141pt;}
.ycb{bottom:622.080735pt;}
.y10{bottom:623.212762pt;}
.y5e{bottom:626.645830pt;}
.yeb{bottom:629.828125pt;}
.y81{bottom:630.376301pt;}
.y4f{bottom:632.458661pt;}
.y30{bottom:635.909994pt;}
.ya2{bottom:636.651047pt;}
.y149{bottom:637.096354pt;}
.yca{bottom:648.936203pt;}
.y105{bottom:651.675779pt;}
.y80{bottom:651.964842pt;}
.y5d{bottom:653.501300pt;}
.y4e{bottom:654.362635pt;}
.y148{bottom:657.684892pt;}
.yf{bottom:660.434127pt;}
.ye6{bottom:662.731116pt;}
.y2f{bottom:672.499354pt;}
.ya1{bottom:672.653643pt;}
.y7f{bottom:673.554362pt;}
.yc9{bottom:675.791672pt;}
.y4d{bottom:676.266115pt;}
.y147{bottom:678.274736pt;}
.y5c{bottom:680.356770pt;}
.ye9{bottom:680.634111pt;}
.y104{bottom:684.578779pt;}
.y7e{bottom:695.143874pt;}
.ye{bottom:697.956220pt;}
.y4c{bottom:698.169595pt;}
.ye5{bottom:698.539059pt;}
.y146{bottom:698.864580pt;}
.y11e{bottom:699.677740pt;}
.yc8{bottom:702.647141pt;}
.y5b{bottom:707.212236pt;}
.y2e{bottom:709.088380pt;}
.ya0{bottom:711.470704pt;}
.y7d{bottom:716.732428pt;}
.y4b{bottom:720.073568pt;}
.y103{bottom:728.953119pt;}
.y145{bottom:730.119794pt;}
.ye0{bottom:731.442063pt;}
.y5a{bottom:734.067705pt;}
.yd{bottom:735.478394pt;}
.y7c{bottom:738.321935pt;}
.y9f{bottom:738.326174pt;}
.yc6{bottom:741.667920pt;}
.yc7{bottom:741.667973pt;}
.y4a{bottom:741.977048pt;}
.y2d{bottom:745.677567pt;}
.ye4{bottom:749.345057pt;}
.y11d{bottom:750.562498pt;}
.y144{bottom:750.708336pt;}
.y7a{bottom:759.911461pt;}
.y59{bottom:760.923174pt;}
.y49{bottom:763.880528pt;}
.y9e{bottom:765.181640pt;}
.ydf{bottom:767.250005pt;}
.y143{bottom:771.298180pt;}
.yc{bottom:773.000527pt;}
.yc4{bottom:780.242187pt;}
.y79{bottom:781.500002pt;}
.y2c{bottom:782.266927pt;}
.yc5{bottom:782.877870pt;}
.y48{bottom:785.784501pt;}
.y58{bottom:787.778642pt;}
.y9d{bottom:792.037109pt;}
.y11c{bottom:802.478514pt;}
.y142{bottom:802.553380pt;}
.y77{bottom:803.089522pt;}
.ydc{bottom:805.345057pt;}
.y47{bottom:807.687995pt;}
.yb{bottom:810.522647pt;}
.yc3{bottom:813.095707pt;}
.yc2{bottom:813.096354pt;}
.y57{bottom:814.634111pt;}
.y2b{bottom:818.855954pt;}
.y9c{bottom:818.892578pt;}
.y141{bottom:823.143234pt;}
.ydb{bottom:823.250005pt;}
.y11b{bottom:829.333978pt;}
.y46{bottom:829.591475pt;}
.yc1{bottom:839.951820pt;}
.y56{bottom:841.489580pt;}
.y140{bottom:843.731770pt;}
.y9b{bottom:845.748046pt;}
.y76{bottom:847.963863pt;}
.ya{bottom:848.044794pt;}
.y45{bottom:851.495447pt;}
.yd9{bottom:856.152992pt;}
.y11a{bottom:856.189447pt;}
.y2a{bottom:861.711420pt;}
.y1{bottom:862.281773pt;}
.y13f{bottom:864.321614pt;}
.yc0{bottom:866.806640pt;}
.ybf{bottom:866.807240pt;}
.y9a{bottom:872.603515pt;}
.y75{bottom:873.672199pt;}
.y5{bottom:880.185425pt;}
.y119{bottom:883.044927pt;}
.y13e{bottom:884.911458pt;}
.y55{bottom:892.374999pt;}
.y44{bottom:897.047364pt;}
.y29{bottom:899.233642pt;}
.ybe{bottom:899.372395pt;}
.y99{bottom:899.458984pt;}
.yd8{bottom:900.527344pt;}
.y74{bottom:909.900390pt;}
.y13d{bottom:916.166669pt;}
.ybd{bottom:925.050161pt;}
.ybb{bottom:931.046172pt;}
.ybc{bottom:931.046224pt;}
.y3{bottom:933.896363pt;}
.y98{bottom:935.461589pt;}
.y13c{bottom:936.755208pt;}
.y54{bottom:936.755534pt;}
.y28{bottom:936.755697pt;}
.y73{bottom:936.755859pt;}
.y43{bottom:939.344076pt;}
.y13a{bottom:950.992188pt;}
.y3c{bottom:950.992513pt;}
.y21{bottom:950.992676pt;}
.y6e{bottom:950.992839pt;}
.yff{bottom:968.895833pt;}
.y3e{bottom:968.896159pt;}
.y23{bottom:968.896403pt;}
.y70{bottom:968.896484pt;}
.y101{bottom:1041.559895pt;}
.y40{bottom:1041.560221pt;}
.y25{bottom:1041.560465pt;}
.y71{bottom:1041.560547pt;}
.he{height:16.002523pt;}
.h14{height:16.002604pt;}
.h2c{height:16.003255pt;}
.h1f{height:20.589193pt;}
.h1e{height:20.589518pt;}
.h26{height:31.902995pt;}
.h2d{height:31.903645pt;}
.h15{height:31.992188pt;}
.h1d{height:38.281249pt;}
.h27{height:39.101563pt;}
.h5{height:39.903647pt;}
.h10{height:40.104168pt;}
.hf{height:40.546874pt;}
.h6{height:41.708334pt;}
.h2{height:42.109376pt;}
.h1b{height:43.750000pt;}
.h8{height:44.000001pt;}
.h2e{height:49.807292pt;}
.h28{height:49.807943pt;}
.h1a{height:51.041665pt;}
.h4{height:53.710937pt;}
.h2f{height:63.902995pt;}
.h16{height:63.984375pt;}
.h19{height:65.625000pt;}
.h29{height:67.710937pt;}
.h17{height:68.250000pt;}
.h32{height:81.807943pt;}
.hd{height:88.666585pt;}
.h13{height:88.666667pt;}
.h2b{height:88.667317pt;}
.h31{height:99.710937pt;}
.h24{height:101.784704pt;}
.h7{height:102.083330pt;}
.ha{height:106.570312pt;}
.h18{height:113.066400pt;}
.h11{height:113.066573pt;}
.hb{height:113.066733pt;}
.h2a{height:113.067053pt;}
.h33{height:113.067707pt;}
.h9{height:115.666667pt;}
.h3{height:123.666656pt;}
.h30{height:135.518229pt;}
.h25{height:143.945316pt;}
.h20{height:150.858334pt;}
.h21{height:167.929568pt;}
.h1c{height:171.673828pt;}
.hc{height:171.673991pt;}
.h12{height:171.674153pt;}
.h34{height:171.674479pt;}
.h23{height:171.730481pt;}
.h22{height:183.139310pt;}
.h1{height:260.384893pt;}
.h0{height:1122.666667pt;}
.wf{width:51.000011pt;}
.w11{width:78.999959pt;}
.w5{width:136.000020pt;}
.wd{width:146.000020pt;}
.w9{width:187.999919pt;}
.w8{width:188.000000pt;}
.w7{width:188.000020pt;}
.wc{width:209.999919pt;}
.wa{width:212.000020pt;}
.wb{width:214.000000pt;}
.w2{width:263.999960pt;}
.w4{width:318.999920pt;}
.w3{width:319.000027pt;}
.we{width:491.999920pt;}
.w10{width:496.999960pt;}
.w6{width:505.999920pt;}
.w12{width:628.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xa{left:6.000000pt;}
.x4{left:7.000000pt;}
.x1f{left:46.259895pt;}
.x1e{left:52.299858pt;}
.x21{left:54.275032pt;}
.x20{left:56.854904pt;}
.x18{left:58.976761pt;}
.x1c{left:60.636993pt;}
.x1b{left:66.254906pt;}
.x1d{left:73.275146pt;}
.x1a{left:74.252075pt;}
.x5{left:75.599996pt;}
.x8{left:76.599996pt;}
.x16{left:79.046761pt;}
.x2d{left:80.731115pt;}
.x12{left:99.599996pt;}
.x15{left:113.599996pt;}
.x13{left:123.599996pt;}
.x30{left:128.600007pt;}
.xd{left:135.000000pt;}
.x29{left:164.981425pt;}
.xe{left:211.600016pt;}
.x3{left:224.000000pt;}
.x14{left:230.599996pt;}
.x6{left:232.856359pt;}
.x2a{left:234.899594pt;}
.xb{left:245.000000pt;}
.x2{left:264.600013pt;}
.x24{left:273.853880pt;}
.x2e{left:289.600013pt;}
.x11{left:294.340626pt;}
.x17{left:302.600013pt;}
.x25{left:306.873259pt;}
.x9{left:312.000000pt;}
.x28{left:342.641760pt;}
.x7{left:344.297686pt;}
.xf{left:345.993380pt;}
.x2c{left:366.475787pt;}
.x1{left:396.850396pt;}
.x27{left:431.053325pt;}
.x26{left:437.282527pt;}
.x19{left:491.600013pt;}
.x2f{left:504.600013pt;}
.x22{left:522.713547pt;}
.x23{left:556.012024pt;}
.x2b{left:585.232587pt;}
.x31{left:626.599973pt;}
.x32{left:703.244166pt;}
.x10{left:710.672446pt;}
.xc{left:718.100786pt;}
}




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