
    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_5143081403a57963df63ff8d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_529ed60ade7fec5e7d886bae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_737c3c6a2139d98bacc99a4f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_d273ca5e665e60f98a35a112.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_a5c67273f84daf52ec281529.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000977;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_c7a0c3aa54176d09ddda35c7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.678711;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_80126b52d4e0ab22bba387d2.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_5e1fbfbac5a156a8d4b06643.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.982000px;}
.v1{vertical-align:26.760000px;}
.ls1c{letter-spacing:-7.200000px;}
.ls1e{letter-spacing:-6.912000px;}
.ls1b{letter-spacing:-6.768000px;}
.ls29{letter-spacing:-2.808000px;}
.ls28{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls35{letter-spacing:-0.066000px;}
.lsb{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls34{letter-spacing:0.132000px;}
.lse{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.198000px;}
.ls5{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.285000px;}
.ls17{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls2d{letter-spacing:0.594000px;}
.ls21{letter-spacing:0.648000px;}
.ls2f{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.726000px;}
.ls6{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.864000px;}
.ls7{letter-spacing:0.936000px;}
.ls2e{letter-spacing:0.990000px;}
.ls23{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.080000px;}
.ls16{letter-spacing:2.952000px;}
.ls38{letter-spacing:4.161000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.642800px;}
.ls14{letter-spacing:4.686000px;}
.ls25{letter-spacing:5.040000px;}
.ls9{letter-spacing:5.400000px;}
.ls2b{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.lsf{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.ls30{letter-spacing:10.890000px;}
.ls31{letter-spacing:10.956000px;}
.ls32{letter-spacing:11.616000px;}
.ls26{letter-spacing:11.664000px;}
.ls36{letter-spacing:19.800000px;}
.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;}
}
.ws3d{word-spacing:-30.162000px;}
.ws3c{word-spacing:-29.502000px;}
.ws3b{word-spacing:-29.436000px;}
.ws38{word-spacing:-27.432000px;}
.ws39{word-spacing:-22.860000px;}
.ws0{word-spacing:-20.592000px;}
.ws2{word-spacing:-20.232000px;}
.ws20{word-spacing:-20.160000px;}
.ws25{word-spacing:-19.728000px;}
.ws24{word-spacing:-19.440000px;}
.ws2b{word-spacing:-19.296000px;}
.ws3a{word-spacing:-19.206000px;}
.wsc{word-spacing:-18.546000px;}
.ws27{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.144000px;}
.ws28{word-spacing:-18.072000px;}
.ws2c{word-spacing:-17.928000px;}
.ws1f{word-spacing:-17.784000px;}
.ws26{word-spacing:-17.568000px;}
.ws21{word-spacing:-17.424000px;}
.ws2a{word-spacing:-17.352000px;}
.ws22{word-spacing:-17.280000px;}
.ws23{word-spacing:-17.208000px;}
.ws2d{word-spacing:-17.136000px;}
.ws4{word-spacing:-16.860000px;}
.ws29{word-spacing:-12.139200px;}
.ws6{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws2e{word-spacing:277.134000px;}
.ws31{word-spacing:289.938000px;}
.ws32{word-spacing:296.736000px;}
.ws35{word-spacing:312.906000px;}
.ws33{word-spacing:313.566000px;}
.ws2f{word-spacing:316.668000px;}
.ws37{word-spacing:321.816000px;}
.ws34{word-spacing:326.040000px;}
.ws30{word-spacing:330.066000px;}
.ws36{word-spacing:332.376000px;}
.ws8{word-spacing:791.010000px;}
.ws14{word-spacing:1005.048000px;}
.wsa{word-spacing:1257.762000px;}
.wse{word-spacing:1286.208000px;}
.wsb{word-spacing:1290.498000px;}
.ws1d{word-spacing:1305.282000px;}
.ws1b{word-spacing:1309.044000px;}
.ws5{word-spacing:1312.212000px;}
.ws15{word-spacing:1316.370000px;}
.wsf{word-spacing:1320.000000px;}
.ws18{word-spacing:1323.102000px;}
.wsd{word-spacing:1325.478000px;}
.ws10{word-spacing:1330.164000px;}
.ws1c{word-spacing:1340.262000px;}
.ws9{word-spacing:1350.228000px;}
.ws7{word-spacing:1352.208000px;}
.ws17{word-spacing:1358.082000px;}
.ws12{word-spacing:1375.836000px;}
.ws19{word-spacing:1386.330000px;}
.ws16{word-spacing:1387.584000px;}
.ws1e{word-spacing:1392.072000px;}
.ws11{word-spacing:1393.656000px;}
.ws1a{word-spacing:1409.892000px;}
.ws13{word-spacing:1427.052000px;}
._48{margin-left:-13.908000px;}
._47{margin-left:-12.636000px;}
._12{margin-left:-11.550000px;}
._6{margin-left:-10.200000px;}
._7{margin-left:-7.956000px;}
._4{margin-left:-6.630000px;}
._46{margin-left:-5.595600px;}
._0{margin-left:-4.410000px;}
._1{margin-left:-3.150000px;}
._f{margin-left:-2.138400px;}
._2{margin-left:-1.068000px;}
._9{width:1.146000px;}
._b{width:2.382000px;}
._d{width:3.510000px;}
._3{width:4.686000px;}
._8{width:6.088200px;}
._5{width:7.242000px;}
._c{width:8.928000px;}
._a{width:10.098000px;}
._e{width:11.124000px;}
._10{width:56.923200px;}
._4c{width:272.514000px;}
._4e{width:299.204400px;}
._49{width:302.148000px;}
._4a{width:316.430400px;}
._4f{width:364.386000px;}
._4d{width:371.580000px;}
._50{width:373.416000px;}
._4b{width:382.272000px;}
._11{width:624.324000px;}
._2b{width:775.546800px;}
._2a{width:785.530800px;}
._16{width:804.064800px;}
._15{width:815.068800px;}
._33{width:816.154800px;}
._24{width:820.732800px;}
._34{width:828.499200px;}
._1c{width:833.560800px;}
._1b{width:843.544800px;}
._1e{width:861.379200px;}
._1a{width:879.514800px;}
._19{width:890.560800px;}
._29{width:963.702000px;}
._30{width:969.192000px;}
._28{width:973.620000px;}
._2f{width:979.242000px;}
._3f{width:984.588000px;}
._3e{width:995.592000px;}
._32{width:1032.288000px;}
._31{width:1042.272000px;}
._39{width:1052.382000px;}
._3b{width:1055.472000px;}
._38{width:1062.366000px;}
._22{width:1073.036400px;}
._21{width:1083.020400px;}
._35{width:1089.800400px;}
._2c{width:1097.390400px;}
._27{width:1112.240400px;}
._36{width:1151.972400px;}
._2d{width:1159.562400px;}
._26{width:1165.634400px;}
._1f{width:1172.036400px;}
._3a{width:1178.538000px;}
._41{width:1185.144000px;}
._3d{width:1189.262400px;}
._14{width:1192.496400px;}
._13{width:1205.538000px;}
._42{width:1217.280000px;}
._37{width:1224.514800px;}
._18{width:1231.639200px;}
._20{width:1240.087200px;}
._45{width:1243.136400px;}
._17{width:1245.692400px;}
._43{width:1250.964000px;}
._40{width:1254.576000px;}
._44{width:1257.590400px;}
._25{width:1260.758400px;}
._2e{width:1270.130400px;}
._3c{width:1271.736000px;}
._23{width:1319.260800px;}
._1d{width:1338.506400px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs5{font-size:43.800000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:76.325850px;}
.y1{bottom:76.337550px;}
.y1f{bottom:140.311650px;}
.ye7{bottom:141.608550px;}
.y122{bottom:142.147050px;}
.y183{bottom:143.535750px;}
.y9d{bottom:143.994750px;}
.yc3{bottom:145.162500px;}
.y160{bottom:145.325250px;}
.y140{bottom:145.642950px;}
.yff{bottom:145.851300px;}
.y41{bottom:146.096850px;}
.y60{bottom:148.218150px;}
.y7f{bottom:149.188050px;}
.y1e{bottom:162.363150px;}
.ye6{bottom:163.208550px;}
.y182{bottom:163.632750px;}
.y121{bottom:164.197050px;}
.y15f{bottom:166.032750px;}
.yc2{bottom:166.312500px;}
.y9c{bottom:166.350750px;}
.y13f{bottom:167.836950px;}
.y40{bottom:168.146850px;}
.y5f{bottom:173.991150px;}
.y7e{bottom:174.911550px;}
.y181{bottom:183.729750px;}
.ye5{bottom:184.808550px;}
.y120{bottom:186.247050px;}
.y15e{bottom:186.740250px;}
.yc1{bottom:187.462500px;}
.y9b{bottom:187.950750px;}
.y13e{bottom:190.030950px;}
.y3f{bottom:190.196850px;}
.yfe{bottom:191.579400px;}
.y5e{bottom:199.764150px;}
.y7d{bottom:200.635050px;}
.y180{bottom:203.826750px;}
.y1d{bottom:205.558650px;}
.ye4{bottom:206.408550px;}
.y15d{bottom:207.447750px;}
.y11f{bottom:208.297050px;}
.yc0{bottom:208.612500px;}
.y9a{bottom:209.550750px;}
.yfd{bottom:210.936150px;}
.y13d{bottom:212.224950px;}
.y3e{bottom:212.246850px;}
.y17f{bottom:223.923750px;}
.y5d{bottom:225.537150px;}
.y7c{bottom:226.358550px;}
.y1c{bottom:227.464650px;}
.ye3{bottom:228.008550px;}
.y15c{bottom:228.155250px;}
.ybf{bottom:229.762500px;}
.yfc{bottom:230.292900px;}
.y11e{bottom:230.347050px;}
.y99{bottom:231.150750px;}
.y3d{bottom:234.296850px;}
.y17e{bottom:244.020750px;}
.y15b{bottom:248.862750px;}
.y1b{bottom:249.370650px;}
.ye2{bottom:249.608550px;}
.ybe{bottom:250.912500px;}
.y5c{bottom:251.310150px;}
.y7b{bottom:252.082050px;}
.y11d{bottom:252.397050px;}
.y98{bottom:252.750750px;}
.y3c{bottom:256.346850px;}
.y13c{bottom:259.301550px;}
.y17d{bottom:264.117750px;}
.yfb{bottom:269.022900px;}
.y15a{bottom:269.570250px;}
.ye1{bottom:271.208550px;}
.y1a{bottom:271.276650px;}
.ybd{bottom:272.062500px;}
.y97{bottom:274.350750px;}
.y11c{bottom:274.447050px;}
.y5b{bottom:277.083150px;}
.y7a{bottom:277.805550px;}
.y3b{bottom:278.396850px;}
.y17c{bottom:284.214750px;}
.y13b{bottom:287.285550px;}
.y159{bottom:290.277750px;}
.yfa{bottom:291.216900px;}
.ye0{bottom:292.808550px;}
.y19{bottom:293.182650px;}
.ybc{bottom:293.212500px;}
.y96{bottom:295.950750px;}
.y11b{bottom:296.497050px;}
.y3a{bottom:300.446850px;}
.y5a{bottom:302.856150px;}
.y79{bottom:303.529050px;}
.y17b{bottom:304.311750px;}
.y158{bottom:310.985250px;}
.yf9{bottom:313.410900px;}
.ybb{bottom:314.362500px;}
.ydf{bottom:314.408550px;}
.y18{bottom:315.088650px;}
.y13a{bottom:315.269550px;}
.y95{bottom:317.550750px;}
.y11a{bottom:318.547050px;}
.y39{bottom:322.496850px;}
.y17a{bottom:324.408750px;}
.y59{bottom:328.629150px;}
.y78{bottom:329.252550px;}
.y157{bottom:331.692750px;}
.yba{bottom:335.512500px;}
.yf8{bottom:335.604900px;}
.yde{bottom:336.008550px;}
.y17{bottom:336.994650px;}
.y94{bottom:339.150750px;}
.y119{bottom:340.597050px;}
.y139{bottom:343.253550px;}
.y179{bottom:344.505750px;}
.y38{bottom:344.546850px;}
.y58{bottom:354.402150px;}
.y77{bottom:354.976050px;}
.yb9{bottom:356.662500px;}
.ydd{bottom:357.608550px;}
.yf7{bottom:357.798900px;}
.y16{bottom:358.900650px;}
.y93{bottom:360.750750px;}
.y156{bottom:360.896700px;}
.y178{bottom:364.602750px;}
.y37{bottom:366.596850px;}
.y138{bottom:371.237550px;}
.yb8{bottom:377.812500px;}
.ydc{bottom:379.208550px;}
.yf6{bottom:379.992900px;}
.y57{bottom:380.175150px;}
.y76{bottom:380.699550px;}
.y15{bottom:380.806650px;}
.y118{bottom:381.074550px;}
.y177{bottom:384.699750px;}
.y36{bottom:388.646850px;}
.yb7{bottom:398.962500px;}
.y137{bottom:399.221550px;}
.y117{bottom:400.132050px;}
.ydb{bottom:400.808550px;}
.y14{bottom:402.712650px;}
.y92{bottom:405.482550px;}
.y56{bottom:405.948150px;}
.y75{bottom:406.423050px;}
.y35{bottom:410.696850px;}
.y155{bottom:410.800650px;}
.y116{bottom:419.189550px;}
.yb6{bottom:420.112500px;}
.yda{bottom:422.408550px;}
.y13{bottom:424.618650px;}
.y136{bottom:426.644550px;}
.y176{bottom:426.699750px;}
.y91{bottom:431.255550px;}
.y55{bottom:431.721150px;}
.y74{bottom:432.146550px;}
.y34{bottom:432.746850px;}
.y154{bottom:433.300650px;}
.y133{bottom:436.693050px;}
.y115{bottom:438.247050px;}
.yb5{bottom:441.262500px;}
.yd9{bottom:444.008550px;}
.y12{bottom:446.524650px;}
.y135{bottom:446.741550px;}
.y33{bottom:454.796850px;}
.y175{bottom:455.297700px;}
.y153{bottom:455.800650px;}
.y132{bottom:456.790050px;}
.y90{bottom:457.028550px;}
.y54{bottom:457.494150px;}
.y73{bottom:457.870050px;}
.yb4{bottom:462.412500px;}
.yd8{bottom:465.608550px;}
.y134{bottom:466.838550px;}
.y11{bottom:468.430650px;}
.y114{bottom:476.347050px;}
.y32{bottom:476.846850px;}
.y174{bottom:477.203700px;}
.y152{bottom:478.300650px;}
.y8f{bottom:482.801550px;}
.y53{bottom:483.267150px;}
.yb3{bottom:483.562500px;}
.y72{bottom:483.593550px;}
.yd7{bottom:487.208550px;}
.y10{bottom:490.336650px;}
.y113{bottom:498.397050px;}
.y31{bottom:498.896850px;}
.yf5{bottom:499.346850px;}
.y131{bottom:501.014550px;}
.yb2{bottom:504.712500px;}
.y8e{bottom:508.574550px;}
.yd6{bottom:508.808550px;}
.y52{bottom:509.040150px;}
.y151{bottom:509.304600px;}
.y71{bottom:509.317050px;}
.yf{bottom:512.242650px;}
.y196{bottom:516.510000px;}
.y112{bottom:520.447050px;}
.y30{bottom:520.946850px;}
.yf4{bottom:521.396850px;}
.y130{bottom:521.408550px;}
.yb1{bottom:525.862500px;}
.yd5{bottom:530.408550px;}
.ye{bottom:534.118650px;}
.y8d{bottom:534.347550px;}
.y195{bottom:534.510000px;}
.y51{bottom:534.813150px;}
.y70{bottom:535.040550px;}
.y111{bottom:542.497050px;}
.y173{bottom:542.904450px;}
.y2f{bottom:542.996850px;}
.yf3{bottom:543.446850px;}
.yb0{bottom:547.012500px;}
.yd4{bottom:552.008550px;}
.y194{bottom:552.510000px;}
.yd{bottom:556.024650px;}
.y150{bottom:559.208550px;}
.y8c{bottom:560.120550px;}
.y172{bottom:560.303700px;}
.y50{bottom:560.586150px;}
.y6f{bottom:560.764050px;}
.y12f{bottom:564.044550px;}
.y110{bottom:564.547050px;}
.y2e{bottom:565.046850px;}
.yf2{bottom:565.496850px;}
.yaf{bottom:568.162500px;}
.y193{bottom:570.510000px;}
.yd3{bottom:573.608550px;}
.yc{bottom:577.930650px;}
.y14f{bottom:581.708550px;}
.y8b{bottom:585.893550px;}
.y12e{bottom:586.238550px;}
.y4f{bottom:586.359150px;}
.y6e{bottom:586.487550px;}
.y10f{bottom:586.597050px;}
.y2d{bottom:587.096850px;}
.yf1{bottom:587.546850px;}
.yae{bottom:589.312500px;}
.yd2{bottom:595.208550px;}
.y171{bottom:599.648700px;}
.yb{bottom:599.836650px;}
.y14e{bottom:604.208550px;}
.y12d{bottom:608.432550px;}
.y10e{bottom:608.647050px;}
.y2c{bottom:609.146850px;}
.yf0{bottom:609.596850px;}
.y192{bottom:610.110000px;}
.yad{bottom:610.462500px;}
.y8a{bottom:611.666550px;}
.y4e{bottom:612.132150px;}
.y6d{bottom:612.211050px;}
.yd1{bottom:616.808550px;}
.y170{bottom:619.745700px;}
.ya{bottom:621.742650px;}
.y14d{bottom:626.708550px;}
.y191{bottom:629.910000px;}
.y12c{bottom:630.626550px;}
.y10d{bottom:630.697050px;}
.y2b{bottom:631.196850px;}
.yac{bottom:631.612500px;}
.yef{bottom:631.646850px;}
.y89{bottom:637.439550px;}
.y4d{bottom:637.905150px;}
.y6c{bottom:637.934550px;}
.yd0{bottom:638.408550px;}
.y16f{bottom:639.842700px;}
.y9{bottom:643.648650px;}
.y14c{bottom:649.208550px;}
.y10c{bottom:652.747050px;}
.yab{bottom:652.762500px;}
.y12b{bottom:652.820550px;}
.y2a{bottom:653.246850px;}
.yee{bottom:653.696850px;}
.y16e{bottom:659.939700px;}
.ycf{bottom:660.008550px;}
.y88{bottom:663.212550px;}
.y6b{bottom:663.658050px;}
.y4c{bottom:663.678150px;}
.y190{bottom:671.310000px;}
.y14b{bottom:671.708550px;}
.yaa{bottom:673.912500px;}
.y10b{bottom:674.797050px;}
.y12a{bottom:675.014550px;}
.y29{bottom:675.296850px;}
.yed{bottom:675.746850px;}
.y16d{bottom:680.036700px;}
.yce{bottom:681.608550px;}
.y87{bottom:688.985550px;}
.y6a{bottom:689.381550px;}
.y4b{bottom:689.451150px;}
.y18f{bottom:691.110000px;}
.y14a{bottom:694.208550px;}
.ya9{bottom:695.062500px;}
.y10a{bottom:696.847050px;}
.y129{bottom:697.208550px;}
.yec{bottom:697.796850px;}
.y16c{bottom:700.133700px;}
.ycd{bottom:703.208550px;}
.y28{bottom:705.850800px;}
.y18e{bottom:710.910000px;}
.y86{bottom:714.758550px;}
.y69{bottom:715.105050px;}
.y4a{bottom:715.224150px;}
.ya8{bottom:716.212500px;}
.y149{bottom:716.708550px;}
.y109{bottom:718.897050px;}
.yeb{bottom:719.846850px;}
.y16b{bottom:720.230700px;}
.ycc{bottom:724.808550px;}
.y128{bottom:727.912500px;}
.y18d{bottom:730.710000px;}
.y8{bottom:733.048650px;}
.ya7{bottom:737.362500px;}
.y148{bottom:739.208550px;}
.y16a{bottom:740.327700px;}
.y85{bottom:740.531550px;}
.y68{bottom:740.828550px;}
.y108{bottom:740.947050px;}
.y49{bottom:740.997150px;}
.yea{bottom:741.896850px;}
.ycb{bottom:746.408550px;}
.y18c{bottom:750.510000px;}
.y7{bottom:752.848650px;}
.ya6{bottom:758.512500px;}
.y169{bottom:760.424700px;}
.y147{bottom:761.708550px;}
.y107{bottom:762.997050px;}
.ye9{bottom:763.946850px;}
.y84{bottom:766.304550px;}
.y67{bottom:766.552050px;}
.y48{bottom:766.770150px;}
.yca{bottom:768.008550px;}
.y18b{bottom:770.310000px;}
.ya5{bottom:779.662500px;}
.y168{bottom:780.521700px;}
.y146{bottom:784.208550px;}
.y106{bottom:785.047050px;}
.yc9{bottom:789.608550px;}
.y18a{bottom:790.110000px;}
.y83{bottom:792.077550px;}
.y66{bottom:792.275550px;}
.y47{bottom:792.543150px;}
.y6{bottom:794.248650px;}
.ye8{bottom:794.500800px;}
.y27{bottom:794.536800px;}
.y167{bottom:800.618700px;}
.ya4{bottom:800.812500px;}
.y145{bottom:806.708550px;}
.y105{bottom:807.097050px;}
.y189{bottom:809.910000px;}
.yc8{bottom:811.208550px;}
.y26{bottom:816.730800px;}
.y127{bottom:816.742500px;}
.y82{bottom:817.850550px;}
.y65{bottom:817.999050px;}
.y46{bottom:818.316150px;}
.y166{bottom:820.715700px;}
.ya3{bottom:821.962500px;}
.y5{bottom:824.848650px;}
.y104{bottom:829.147050px;}
.y144{bottom:829.208550px;}
.y188{bottom:829.710000px;}
.yc7{bottom:832.808550px;}
.y25{bottom:838.924800px;}
.y126{bottom:838.936500px;}
.y165{bottom:840.812700px;}
.ya2{bottom:843.112500px;}
.y81{bottom:843.623550px;}
.y64{bottom:843.722550px;}
.y45{bottom:844.089150px;}
.y187{bottom:849.510000px;}
.y103{bottom:851.197050px;}
.y143{bottom:851.708550px;}
.yc6{bottom:854.408550px;}
.y4{bottom:855.448650px;}
.y164{bottom:860.909700px;}
.y24{bottom:861.118800px;}
.y125{bottom:861.130500px;}
.ya1{bottom:864.262500px;}
.y186{bottom:869.310000px;}
.y80{bottom:869.396550px;}
.y63{bottom:869.446050px;}
.y44{bottom:869.862150px;}
.y142{bottom:874.208550px;}
.yc5{bottom:876.008550px;}
.y163{bottom:881.006700px;}
.y23{bottom:883.312800px;}
.y124{bottom:883.324500px;}
.ya0{bottom:885.412500px;}
.y185{bottom:889.110000px;}
.y102{bottom:892.310550px;}
.y62{bottom:895.169550px;}
.y43{bottom:895.635150px;}
.y141{bottom:896.708550px;}
.yc4{bottom:897.608550px;}
.y162{bottom:901.103700px;}
.y22{bottom:905.506800px;}
.y123{bottom:905.518500px;}
.y9f{bottom:906.562500px;}
.y184{bottom:908.910000px;}
.y3{bottom:910.710000px;}
.y101{bottom:910.753800px;}
.y61{bottom:921.124050px;}
.y21{bottom:927.700800px;}
.y9e{bottom:927.712500px;}
.y42{bottom:928.698300px;}
.y2{bottom:928.710000px;}
.y100{bottom:929.197050px;}
.y161{bottom:929.707650px;}
.h9{height:30.568359px;}
.h6{height:37.191504px;}
.hb{height:38.645086px;}
.h2{height:40.757812px;}
.hf{height:45.585938px;}
.ha{height:48.399902px;}
.he{height:50.144531px;}
.h3{height:50.947266px;}
.hd{height:53.494629px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.hc{height:63.322031px;}
.h8{height:63.442031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x9{left:84.634950px;}
.x5{left:97.795200px;}
.xb{left:105.894900px;}
.x7{left:119.071350px;}
.x19{left:138.969600px;}
.xc{left:140.317650px;}
.x18{left:141.527100px;}
.xe{left:146.427600px;}
.x17{left:149.018100px;}
.x6{left:150.670350px;}
.x1{left:166.064850px;}
.xd{left:191.338650px;}
.x8{left:193.897950px;}
.x4{left:198.071850px;}
.xa{left:215.157900px;}
.x10{left:250.955100px;}
.x11{left:254.502600px;}
.xf{left:269.814600px;}
.x12{left:413.562600px;}
.x13{left:420.509100px;}
.x15{left:525.036600px;}
.x16{left:528.584100px;}
.x1b{left:531.240300px;}
.x1a{left:540.203550px;}
.x14{left:543.896100px;}
.x2{left:572.164350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.650667pt;}
.v1{vertical-align:23.786667pt;}
.ls1c{letter-spacing:-6.400000pt;}
.ls1e{letter-spacing:-6.144000pt;}
.ls1b{letter-spacing:-6.016000pt;}
.ls29{letter-spacing:-2.496000pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls35{letter-spacing:-0.058667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls34{letter-spacing:0.117333pt;}
.lse{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.176000pt;}
.ls5{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.253333pt;}
.ls17{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls2d{letter-spacing:0.528000pt;}
.ls21{letter-spacing:0.576000pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.645333pt;}
.ls6{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.768000pt;}
.ls7{letter-spacing:0.832000pt;}
.ls2e{letter-spacing:0.880000pt;}
.ls23{letter-spacing:0.896000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls16{letter-spacing:2.624000pt;}
.ls38{letter-spacing:3.698667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:4.126933pt;}
.ls14{letter-spacing:4.165333pt;}
.ls25{letter-spacing:4.480000pt;}
.ls9{letter-spacing:4.800000pt;}
.ls2b{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.lsf{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls30{letter-spacing:9.680000pt;}
.ls31{letter-spacing:9.738667pt;}
.ls32{letter-spacing:10.325333pt;}
.ls26{letter-spacing:10.368000pt;}
.ls36{letter-spacing:17.600000pt;}
.ws3d{word-spacing:-26.810667pt;}
.ws3c{word-spacing:-26.224000pt;}
.ws3b{word-spacing:-26.165333pt;}
.ws38{word-spacing:-24.384000pt;}
.ws39{word-spacing:-20.320000pt;}
.ws0{word-spacing:-18.304000pt;}
.ws2{word-spacing:-17.984000pt;}
.ws20{word-spacing:-17.920000pt;}
.ws25{word-spacing:-17.536000pt;}
.ws24{word-spacing:-17.280000pt;}
.ws2b{word-spacing:-17.152000pt;}
.ws3a{word-spacing:-17.072000pt;}
.wsc{word-spacing:-16.485333pt;}
.ws27{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws28{word-spacing:-16.064000pt;}
.ws2c{word-spacing:-15.936000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws26{word-spacing:-15.616000pt;}
.ws21{word-spacing:-15.488000pt;}
.ws2a{word-spacing:-15.424000pt;}
.ws22{word-spacing:-15.360000pt;}
.ws23{word-spacing:-15.296000pt;}
.ws2d{word-spacing:-15.232000pt;}
.ws4{word-spacing:-14.986667pt;}
.ws29{word-spacing:-10.790400pt;}
.ws6{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws2e{word-spacing:246.341333pt;}
.ws31{word-spacing:257.722667pt;}
.ws32{word-spacing:263.765333pt;}
.ws35{word-spacing:278.138667pt;}
.ws33{word-spacing:278.725333pt;}
.ws2f{word-spacing:281.482667pt;}
.ws37{word-spacing:286.058667pt;}
.ws34{word-spacing:289.813333pt;}
.ws30{word-spacing:293.392000pt;}
.ws36{word-spacing:295.445333pt;}
.ws8{word-spacing:703.120000pt;}
.ws14{word-spacing:893.376000pt;}
.wsa{word-spacing:1118.010667pt;}
.wse{word-spacing:1143.296000pt;}
.wsb{word-spacing:1147.109333pt;}
.ws1d{word-spacing:1160.250667pt;}
.ws1b{word-spacing:1163.594667pt;}
.ws5{word-spacing:1166.410667pt;}
.ws15{word-spacing:1170.106667pt;}
.wsf{word-spacing:1173.333333pt;}
.ws18{word-spacing:1176.090667pt;}
.wsd{word-spacing:1178.202667pt;}
.ws10{word-spacing:1182.368000pt;}
.ws1c{word-spacing:1191.344000pt;}
.ws9{word-spacing:1200.202667pt;}
.ws7{word-spacing:1201.962667pt;}
.ws17{word-spacing:1207.184000pt;}
.ws12{word-spacing:1222.965333pt;}
.ws19{word-spacing:1232.293333pt;}
.ws16{word-spacing:1233.408000pt;}
.ws1e{word-spacing:1237.397333pt;}
.ws11{word-spacing:1238.805333pt;}
.ws1a{word-spacing:1253.237333pt;}
.ws13{word-spacing:1268.490667pt;}
._48{margin-left:-12.362667pt;}
._47{margin-left:-11.232000pt;}
._12{margin-left:-10.266667pt;}
._6{margin-left:-9.066667pt;}
._7{margin-left:-7.072000pt;}
._4{margin-left:-5.893333pt;}
._46{margin-left:-4.973867pt;}
._0{margin-left:-3.920000pt;}
._1{margin-left:-2.800000pt;}
._f{margin-left:-1.900800pt;}
._2{margin-left:-0.949333pt;}
._9{width:1.018667pt;}
._b{width:2.117333pt;}
._d{width:3.120000pt;}
._3{width:4.165333pt;}
._8{width:5.411733pt;}
._5{width:6.437333pt;}
._c{width:7.936000pt;}
._a{width:8.976000pt;}
._e{width:9.888000pt;}
._10{width:50.598400pt;}
._4c{width:242.234667pt;}
._4e{width:265.959467pt;}
._49{width:268.576000pt;}
._4a{width:281.271467pt;}
._4f{width:323.898667pt;}
._4d{width:330.293333pt;}
._50{width:331.925333pt;}
._4b{width:339.797333pt;}
._11{width:554.954667pt;}
._2b{width:689.374933pt;}
._2a{width:698.249600pt;}
._16{width:714.724267pt;}
._15{width:724.505600pt;}
._33{width:725.470933pt;}
._24{width:729.540267pt;}
._34{width:736.443733pt;}
._1c{width:740.942933pt;}
._1b{width:749.817600pt;}
._1e{width:765.670400pt;}
._1a{width:781.790933pt;}
._19{width:791.609600pt;}
._29{width:856.624000pt;}
._30{width:861.504000pt;}
._28{width:865.440000pt;}
._2f{width:870.437333pt;}
._3f{width:875.189333pt;}
._3e{width:884.970667pt;}
._32{width:917.589333pt;}
._31{width:926.464000pt;}
._39{width:935.450667pt;}
._3b{width:938.197333pt;}
._38{width:944.325333pt;}
._22{width:953.810133pt;}
._21{width:962.684800pt;}
._35{width:968.711467pt;}
._2c{width:975.458133pt;}
._27{width:988.658133pt;}
._36{width:1023.975467pt;}
._2d{width:1030.722133pt;}
._26{width:1036.119467pt;}
._1f{width:1041.810133pt;}
._3a{width:1047.589333pt;}
._41{width:1053.461333pt;}
._3d{width:1057.122133pt;}
._14{width:1059.996800pt;}
._13{width:1071.589333pt;}
._42{width:1082.026667pt;}
._37{width:1088.457600pt;}
._18{width:1094.790400pt;}
._20{width:1102.299733pt;}
._45{width:1105.010133pt;}
._17{width:1107.282133pt;}
._43{width:1111.968000pt;}
._40{width:1115.178667pt;}
._44{width:1117.858133pt;}
._25{width:1120.674133pt;}
._2e{width:1129.004800pt;}
._3c{width:1130.432000pt;}
._23{width:1172.676267pt;}
._1d{width:1189.783467pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs5{font-size:38.933333pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:67.845200pt;}
.y1{bottom:67.855600pt;}
.y1f{bottom:124.721467pt;}
.ye7{bottom:125.874267pt;}
.y122{bottom:126.352933pt;}
.y183{bottom:127.587333pt;}
.y9d{bottom:127.995333pt;}
.yc3{bottom:129.033333pt;}
.y160{bottom:129.178000pt;}
.y140{bottom:129.460400pt;}
.yff{bottom:129.645600pt;}
.y41{bottom:129.863867pt;}
.y60{bottom:131.749467pt;}
.y7f{bottom:132.611600pt;}
.y1e{bottom:144.322800pt;}
.ye6{bottom:145.074267pt;}
.y182{bottom:145.451333pt;}
.y121{bottom:145.952933pt;}
.y15f{bottom:147.584667pt;}
.yc2{bottom:147.833333pt;}
.y9c{bottom:147.867333pt;}
.y13f{bottom:149.188400pt;}
.y40{bottom:149.463867pt;}
.y5f{bottom:154.658800pt;}
.y7e{bottom:155.476933pt;}
.y181{bottom:163.315333pt;}
.ye5{bottom:164.274267pt;}
.y120{bottom:165.552933pt;}
.y15e{bottom:165.991333pt;}
.yc1{bottom:166.633333pt;}
.y9b{bottom:167.067333pt;}
.y13e{bottom:168.916400pt;}
.y3f{bottom:169.063867pt;}
.yfe{bottom:170.292800pt;}
.y5e{bottom:177.568133pt;}
.y7d{bottom:178.342267pt;}
.y180{bottom:181.179333pt;}
.y1d{bottom:182.718800pt;}
.ye4{bottom:183.474267pt;}
.y15d{bottom:184.398000pt;}
.y11f{bottom:185.152933pt;}
.yc0{bottom:185.433333pt;}
.y9a{bottom:186.267333pt;}
.yfd{bottom:187.498800pt;}
.y13d{bottom:188.644400pt;}
.y3e{bottom:188.663867pt;}
.y17f{bottom:199.043333pt;}
.y5d{bottom:200.477467pt;}
.y7c{bottom:201.207600pt;}
.y1c{bottom:202.190800pt;}
.ye3{bottom:202.674267pt;}
.y15c{bottom:202.804667pt;}
.ybf{bottom:204.233333pt;}
.yfc{bottom:204.704800pt;}
.y11e{bottom:204.752933pt;}
.y99{bottom:205.467333pt;}
.y3d{bottom:208.263867pt;}
.y17e{bottom:216.907333pt;}
.y15b{bottom:221.211333pt;}
.y1b{bottom:221.662800pt;}
.ye2{bottom:221.874267pt;}
.ybe{bottom:223.033333pt;}
.y5c{bottom:223.386800pt;}
.y7b{bottom:224.072933pt;}
.y11d{bottom:224.352933pt;}
.y98{bottom:224.667333pt;}
.y3c{bottom:227.863867pt;}
.y13c{bottom:230.490267pt;}
.y17d{bottom:234.771333pt;}
.yfb{bottom:239.131467pt;}
.y15a{bottom:239.618000pt;}
.ye1{bottom:241.074267pt;}
.y1a{bottom:241.134800pt;}
.ybd{bottom:241.833333pt;}
.y97{bottom:243.867333pt;}
.y11c{bottom:243.952933pt;}
.y5b{bottom:246.296133pt;}
.y7a{bottom:246.938267pt;}
.y3b{bottom:247.463867pt;}
.y17c{bottom:252.635333pt;}
.y13b{bottom:255.364933pt;}
.y159{bottom:258.024667pt;}
.yfa{bottom:258.859467pt;}
.ye0{bottom:260.274267pt;}
.y19{bottom:260.606800pt;}
.ybc{bottom:260.633333pt;}
.y96{bottom:263.067333pt;}
.y11b{bottom:263.552933pt;}
.y3a{bottom:267.063867pt;}
.y5a{bottom:269.205467pt;}
.y79{bottom:269.803600pt;}
.y17b{bottom:270.499333pt;}
.y158{bottom:276.431333pt;}
.yf9{bottom:278.587467pt;}
.ybb{bottom:279.433333pt;}
.ydf{bottom:279.474267pt;}
.y18{bottom:280.078800pt;}
.y13a{bottom:280.239600pt;}
.y95{bottom:282.267333pt;}
.y11a{bottom:283.152933pt;}
.y39{bottom:286.663867pt;}
.y17a{bottom:288.363333pt;}
.y59{bottom:292.114800pt;}
.y78{bottom:292.668933pt;}
.y157{bottom:294.838000pt;}
.yba{bottom:298.233333pt;}
.yf8{bottom:298.315467pt;}
.yde{bottom:298.674267pt;}
.y17{bottom:299.550800pt;}
.y94{bottom:301.467333pt;}
.y119{bottom:302.752933pt;}
.y139{bottom:305.114267pt;}
.y179{bottom:306.227333pt;}
.y38{bottom:306.263867pt;}
.y58{bottom:315.024133pt;}
.y77{bottom:315.534267pt;}
.yb9{bottom:317.033333pt;}
.ydd{bottom:317.874267pt;}
.yf7{bottom:318.043467pt;}
.y16{bottom:319.022800pt;}
.y93{bottom:320.667333pt;}
.y156{bottom:320.797067pt;}
.y178{bottom:324.091333pt;}
.y37{bottom:325.863867pt;}
.y138{bottom:329.988933pt;}
.yb8{bottom:335.833333pt;}
.ydc{bottom:337.074267pt;}
.yf6{bottom:337.771467pt;}
.y57{bottom:337.933467pt;}
.y76{bottom:338.399600pt;}
.y15{bottom:338.494800pt;}
.y118{bottom:338.732933pt;}
.y177{bottom:341.955333pt;}
.y36{bottom:345.463867pt;}
.yb7{bottom:354.633333pt;}
.y137{bottom:354.863600pt;}
.y117{bottom:355.672933pt;}
.ydb{bottom:356.274267pt;}
.y14{bottom:357.966800pt;}
.y92{bottom:360.428933pt;}
.y56{bottom:360.842800pt;}
.y75{bottom:361.264933pt;}
.y35{bottom:365.063867pt;}
.y155{bottom:365.156133pt;}
.y116{bottom:372.612933pt;}
.yb6{bottom:373.433333pt;}
.yda{bottom:375.474267pt;}
.y13{bottom:377.438800pt;}
.y136{bottom:379.239600pt;}
.y176{bottom:379.288667pt;}
.y91{bottom:383.338267pt;}
.y55{bottom:383.752133pt;}
.y74{bottom:384.130267pt;}
.y34{bottom:384.663867pt;}
.y154{bottom:385.156133pt;}
.y133{bottom:388.171600pt;}
.y115{bottom:389.552933pt;}
.yb5{bottom:392.233333pt;}
.yd9{bottom:394.674267pt;}
.y12{bottom:396.910800pt;}
.y135{bottom:397.103600pt;}
.y33{bottom:404.263867pt;}
.y175{bottom:404.709067pt;}
.y153{bottom:405.156133pt;}
.y132{bottom:406.035600pt;}
.y90{bottom:406.247600pt;}
.y54{bottom:406.661467pt;}
.y73{bottom:406.995600pt;}
.yb4{bottom:411.033333pt;}
.yd8{bottom:413.874267pt;}
.y134{bottom:414.967600pt;}
.y11{bottom:416.382800pt;}
.y114{bottom:423.419600pt;}
.y32{bottom:423.863867pt;}
.y174{bottom:424.181067pt;}
.y152{bottom:425.156133pt;}
.y8f{bottom:429.156933pt;}
.y53{bottom:429.570800pt;}
.yb3{bottom:429.833333pt;}
.y72{bottom:429.860933pt;}
.yd7{bottom:433.074267pt;}
.y10{bottom:435.854800pt;}
.y113{bottom:443.019600pt;}
.y31{bottom:443.463867pt;}
.yf5{bottom:443.863867pt;}
.y131{bottom:445.346267pt;}
.yb2{bottom:448.633333pt;}
.y8e{bottom:452.066267pt;}
.yd6{bottom:452.274267pt;}
.y52{bottom:452.480133pt;}
.y151{bottom:452.715200pt;}
.y71{bottom:452.726267pt;}
.yf{bottom:455.326800pt;}
.y196{bottom:459.120000pt;}
.y112{bottom:462.619600pt;}
.y30{bottom:463.063867pt;}
.yf4{bottom:463.463867pt;}
.y130{bottom:463.474267pt;}
.yb1{bottom:467.433333pt;}
.yd5{bottom:471.474267pt;}
.ye{bottom:474.772133pt;}
.y8d{bottom:474.975600pt;}
.y195{bottom:475.120000pt;}
.y51{bottom:475.389467pt;}
.y70{bottom:475.591600pt;}
.y111{bottom:482.219600pt;}
.y173{bottom:482.581733pt;}
.y2f{bottom:482.663867pt;}
.yf3{bottom:483.063867pt;}
.yb0{bottom:486.233333pt;}
.yd4{bottom:490.674267pt;}
.y194{bottom:491.120000pt;}
.yd{bottom:494.244133pt;}
.y150{bottom:497.074267pt;}
.y8c{bottom:497.884933pt;}
.y172{bottom:498.047733pt;}
.y50{bottom:498.298800pt;}
.y6f{bottom:498.456933pt;}
.y12f{bottom:501.372933pt;}
.y110{bottom:501.819600pt;}
.y2e{bottom:502.263867pt;}
.yf2{bottom:502.663867pt;}
.yaf{bottom:505.033333pt;}
.y193{bottom:507.120000pt;}
.yd3{bottom:509.874267pt;}
.yc{bottom:513.716133pt;}
.y14f{bottom:517.074267pt;}
.y8b{bottom:520.794267pt;}
.y12e{bottom:521.100933pt;}
.y4f{bottom:521.208133pt;}
.y6e{bottom:521.322267pt;}
.y10f{bottom:521.419600pt;}
.y2d{bottom:521.863867pt;}
.yf1{bottom:522.263867pt;}
.yae{bottom:523.833333pt;}
.yd2{bottom:529.074267pt;}
.y171{bottom:533.021067pt;}
.yb{bottom:533.188133pt;}
.y14e{bottom:537.074267pt;}
.y12d{bottom:540.828933pt;}
.y10e{bottom:541.019600pt;}
.y2c{bottom:541.463867pt;}
.yf0{bottom:541.863867pt;}
.y192{bottom:542.320000pt;}
.yad{bottom:542.633333pt;}
.y8a{bottom:543.703600pt;}
.y4e{bottom:544.117467pt;}
.y6d{bottom:544.187600pt;}
.yd1{bottom:548.274267pt;}
.y170{bottom:550.885067pt;}
.ya{bottom:552.660133pt;}
.y14d{bottom:557.074267pt;}
.y191{bottom:559.920000pt;}
.y12c{bottom:560.556933pt;}
.y10d{bottom:560.619600pt;}
.y2b{bottom:561.063867pt;}
.yac{bottom:561.433333pt;}
.yef{bottom:561.463867pt;}
.y89{bottom:566.612933pt;}
.y4d{bottom:567.026800pt;}
.y6c{bottom:567.052933pt;}
.yd0{bottom:567.474267pt;}
.y16f{bottom:568.749067pt;}
.y9{bottom:572.132133pt;}
.y14c{bottom:577.074267pt;}
.y10c{bottom:580.219600pt;}
.yab{bottom:580.233333pt;}
.y12b{bottom:580.284933pt;}
.y2a{bottom:580.663867pt;}
.yee{bottom:581.063867pt;}
.y16e{bottom:586.613067pt;}
.ycf{bottom:586.674267pt;}
.y88{bottom:589.522267pt;}
.y6b{bottom:589.918267pt;}
.y4c{bottom:589.936133pt;}
.y190{bottom:596.720000pt;}
.y14b{bottom:597.074267pt;}
.yaa{bottom:599.033333pt;}
.y10b{bottom:599.819600pt;}
.y12a{bottom:600.012933pt;}
.y29{bottom:600.263867pt;}
.yed{bottom:600.663867pt;}
.y16d{bottom:604.477067pt;}
.yce{bottom:605.874267pt;}
.y87{bottom:612.431600pt;}
.y6a{bottom:612.783600pt;}
.y4b{bottom:612.845467pt;}
.y18f{bottom:614.320000pt;}
.y14a{bottom:617.074267pt;}
.ya9{bottom:617.833333pt;}
.y10a{bottom:619.419600pt;}
.y129{bottom:619.740933pt;}
.yec{bottom:620.263867pt;}
.y16c{bottom:622.341067pt;}
.ycd{bottom:625.074267pt;}
.y28{bottom:627.422933pt;}
.y18e{bottom:631.920000pt;}
.y86{bottom:635.340933pt;}
.y69{bottom:635.648933pt;}
.y4a{bottom:635.754800pt;}
.ya8{bottom:636.633333pt;}
.y149{bottom:637.074267pt;}
.y109{bottom:639.019600pt;}
.yeb{bottom:639.863867pt;}
.y16b{bottom:640.205067pt;}
.ycc{bottom:644.274267pt;}
.y128{bottom:647.033333pt;}
.y18d{bottom:649.520000pt;}
.y8{bottom:651.598800pt;}
.ya7{bottom:655.433333pt;}
.y148{bottom:657.074267pt;}
.y16a{bottom:658.069067pt;}
.y85{bottom:658.250267pt;}
.y68{bottom:658.514267pt;}
.y108{bottom:658.619600pt;}
.y49{bottom:658.664133pt;}
.yea{bottom:659.463867pt;}
.ycb{bottom:663.474267pt;}
.y18c{bottom:667.120000pt;}
.y7{bottom:669.198800pt;}
.ya6{bottom:674.233333pt;}
.y169{bottom:675.933067pt;}
.y147{bottom:677.074267pt;}
.y107{bottom:678.219600pt;}
.ye9{bottom:679.063867pt;}
.y84{bottom:681.159600pt;}
.y67{bottom:681.379600pt;}
.y48{bottom:681.573467pt;}
.yca{bottom:682.674267pt;}
.y18b{bottom:684.720000pt;}
.ya5{bottom:693.033333pt;}
.y168{bottom:693.797067pt;}
.y146{bottom:697.074267pt;}
.y106{bottom:697.819600pt;}
.yc9{bottom:701.874267pt;}
.y18a{bottom:702.320000pt;}
.y83{bottom:704.068933pt;}
.y66{bottom:704.244933pt;}
.y47{bottom:704.482800pt;}
.y6{bottom:705.998800pt;}
.ye8{bottom:706.222933pt;}
.y27{bottom:706.254933pt;}
.y167{bottom:711.661067pt;}
.ya4{bottom:711.833333pt;}
.y145{bottom:717.074267pt;}
.y105{bottom:717.419600pt;}
.y189{bottom:719.920000pt;}
.yc8{bottom:721.074267pt;}
.y26{bottom:725.982933pt;}
.y127{bottom:725.993333pt;}
.y82{bottom:726.978267pt;}
.y65{bottom:727.110267pt;}
.y46{bottom:727.392133pt;}
.y166{bottom:729.525067pt;}
.ya3{bottom:730.633333pt;}
.y5{bottom:733.198800pt;}
.y104{bottom:737.019600pt;}
.y144{bottom:737.074267pt;}
.y188{bottom:737.520000pt;}
.yc7{bottom:740.274267pt;}
.y25{bottom:745.710933pt;}
.y126{bottom:745.721333pt;}
.y165{bottom:747.389067pt;}
.ya2{bottom:749.433333pt;}
.y81{bottom:749.887600pt;}
.y64{bottom:749.975600pt;}
.y45{bottom:750.301467pt;}
.y187{bottom:755.120000pt;}
.y103{bottom:756.619600pt;}
.y143{bottom:757.074267pt;}
.yc6{bottom:759.474267pt;}
.y4{bottom:760.398800pt;}
.y164{bottom:765.253067pt;}
.y24{bottom:765.438933pt;}
.y125{bottom:765.449333pt;}
.ya1{bottom:768.233333pt;}
.y186{bottom:772.720000pt;}
.y80{bottom:772.796933pt;}
.y63{bottom:772.840933pt;}
.y44{bottom:773.210800pt;}
.y142{bottom:777.074267pt;}
.yc5{bottom:778.674267pt;}
.y163{bottom:783.117067pt;}
.y23{bottom:785.166933pt;}
.y124{bottom:785.177333pt;}
.ya0{bottom:787.033333pt;}
.y185{bottom:790.320000pt;}
.y102{bottom:793.164933pt;}
.y62{bottom:795.706267pt;}
.y43{bottom:796.120133pt;}
.y141{bottom:797.074267pt;}
.yc4{bottom:797.874267pt;}
.y162{bottom:800.981067pt;}
.y22{bottom:804.894933pt;}
.y123{bottom:804.905333pt;}
.y9f{bottom:805.833333pt;}
.y184{bottom:807.920000pt;}
.y3{bottom:809.520000pt;}
.y101{bottom:809.558933pt;}
.y61{bottom:818.776933pt;}
.y21{bottom:824.622933pt;}
.y9e{bottom:824.633333pt;}
.y42{bottom:825.509600pt;}
.y2{bottom:825.520000pt;}
.y100{bottom:825.952933pt;}
.y161{bottom:826.406800pt;}
.h9{height:27.171875pt;}
.h6{height:33.059115pt;}
.hb{height:34.351188pt;}
.h2{height:36.229167pt;}
.hf{height:40.520833pt;}
.ha{height:43.022135pt;}
.he{height:44.572917pt;}
.h3{height:45.286458pt;}
.hd{height:47.550781pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.hc{height:56.286250pt;}
.h8{height:56.392917pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x9{left:75.231067pt;}
.x5{left:86.929067pt;}
.xb{left:94.128800pt;}
.x7{left:105.841200pt;}
.x19{left:123.528533pt;}
.xc{left:124.726800pt;}
.x18{left:125.801867pt;}
.xe{left:130.157867pt;}
.x17{left:132.460533pt;}
.x6{left:133.929200pt;}
.x1{left:147.613200pt;}
.xd{left:170.078800pt;}
.x8{left:172.353733pt;}
.x4{left:176.063867pt;}
.xa{left:191.251467pt;}
.x10{left:223.071200pt;}
.x11{left:226.224533pt;}
.xf{left:239.835200pt;}
.x12{left:367.611200pt;}
.x13{left:373.785867pt;}
.x15{left:466.699200pt;}
.x16{left:469.852533pt;}
.x1b{left:472.213600pt;}
.x1a{left:480.180933pt;}
.x14{left:483.463200pt;}
.x2{left:508.590533pt;}
}




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