
    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_aeeb62c3acd252546de537df.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_868fa7c0a8576b5d50ce2f42.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_b81d932e12c7c05d2ed4db22.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_2e2a278892769ee718bd0b14.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_81fa5b07025422befadf2e90.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724121;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_aaa9d2b10fea22402a95ca47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.986328;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_2aedc3513eca47e357b12de5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.059082;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_64ab1585596c3ef72d381def.woff')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_bfa898f32ded025b4cfe1384.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_1dc43f938e4b7cdf25f34246.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_5cba75809f69b8463debac1f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.764160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls6{letter-spacing:-3.300000px;}
.ls4{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.264000px;}
.ls3{letter-spacing:-0.198000px;}
.ls2{letter-spacing:-0.132000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.172000px;}
.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;}
}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.796000px;}
.wsf{word-spacing:-14.784000px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:0.132000px;}
.wsc{word-spacing:0.198000px;}
.wse{word-spacing:0.264000px;}
.wsd{word-spacing:0.528000px;}
.ws4{word-spacing:4.356000px;}
.ws5{word-spacing:10.044000px;}
.ws6{word-spacing:164.940000px;}
.ws7{word-spacing:290.760000px;}
.ws9{word-spacing:306.960000px;}
.wsa{word-spacing:312.900000px;}
.ws8{word-spacing:336.660000px;}
._12{margin-left:-65.664000px;}
._3b{margin-left:-14.565600px;}
._28{margin-left:-10.929600px;}
._1b{margin-left:-8.989800px;}
._f{margin-left:-7.442041px;}
._b{margin-left:-6.329400px;}
._a{margin-left:-5.280000px;}
._0{margin-left:-3.486000px;}
._14{margin-left:-2.454600px;}
._6{margin-left:-1.444800px;}
._1{width:1.587241px;}
._9{width:2.646600px;}
._7{width:4.204200px;}
._8{width:5.398800px;}
._e{width:6.982800px;}
._1d{width:8.547000px;}
._10{width:9.768600px;}
._11{width:10.952041px;}
._17{width:12.772800px;}
._16{width:13.899000px;}
._25{width:14.909400px;}
._1a{width:15.925800px;}
._22{width:17.008200px;}
._3c{width:18.530400px;}
._15{width:19.859400px;}
._5{width:21.696000px;}
._d{width:23.515200px;}
._4{width:24.576000px;}
._37{width:25.685759px;}
._1c{width:26.703600px;}
._13{width:27.871800px;}
._c{width:29.601000px;}
._1e{width:31.785600px;}
._1f{width:33.032400px;}
._19{width:34.247400px;}
._23{width:35.960641px;}
._20{width:37.263600px;}
._38{width:39.493800px;}
._3a{width:40.680000px;}
._27{width:42.655800px;}
._35{width:44.001600px;}
._21{width:45.335400px;}
._39{width:47.427600px;}
._26{width:49.242600px;}
._18{width:53.823000px;}
._24{width:64.924200px;}
._34{width:66.744000px;}
._36{width:68.626800px;}
._2{width:153.107843px;}
._3{width:183.490826px;}
._2f{width:257.160000px;}
._29{width:295.860000px;}
._2c{width:317.880000px;}
._2d{width:347.584800px;}
._2e{width:349.260000px;}
._31{width:353.100000px;}
._32{width:383.162041px;}
._2b{width:437.820000px;}
._30{width:499.200000px;}
._2a{width:534.840000px;}
._33{width:602.749800px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:56.872050px;}
.y3b{bottom:73.072050px;}
.y3{bottom:81.772500px;}
.y123{bottom:130.107750px;}
.yc3{bottom:130.935450px;}
.y14c{bottom:132.585900px;}
.yf4{bottom:133.077750px;}
.ya5{bottom:134.773950px;}
.y179{bottom:149.334450px;}
.yc2{bottom:149.679450px;}
.y122{bottom:151.112250px;}
.ya4{bottom:153.517950px;}
.yf3{bottom:154.082250px;}
.y14b{bottom:162.087900px;}
.y83{bottom:163.062900px;}
.y178{bottom:168.084450px;}
.yc1{bottom:168.423450px;}
.y121{bottom:172.116750px;}
.ya3{bottom:172.261950px;}
.yf2{bottom:175.086750px;}
.y82{bottom:181.062900px;}
.y177{bottom:186.834450px;}
.ya2{bottom:191.005950px;}
.y14a{bottom:191.589900px;}
.y120{bottom:193.121250px;}
.yf1{bottom:196.091250px;}
.yc0{bottom:204.181350px;}
.ya1{bottom:209.749950px;}
.y176{bottom:211.959450px;}
.y11f{bottom:214.125750px;}
.yf0{bottom:217.095750px;}
.ybf{bottom:225.181350px;}
.ya0{bottom:228.493950px;}
.y175{bottom:230.709450px;}
.y11e{bottom:235.130250px;}
.yef{bottom:238.100250px;}
.y26{bottom:241.376550px;}
.y9f{bottom:247.237950px;}
.ybe{bottom:249.346350px;}
.y174{bottom:249.459450px;}
.y149{bottom:250.593900px;}
.y11d{bottom:256.134750px;}
.y25{bottom:257.576550px;}
.yee{bottom:259.104750px;}
.y9e{bottom:265.981950px;}
.y173{bottom:268.209450px;}
.y148{bottom:271.598400px;}
.ybd{bottom:275.221350px;}
.y11c{bottom:277.139250px;}
.yed{bottom:280.109250px;}
.y9d{bottom:284.725950px;}
.y147{bottom:292.602900px;}
.y172{bottom:293.334450px;}
.ybc{bottom:300.721350px;}
.yec{bottom:301.113750px;}
.y11b{bottom:302.384250px;}
.y9c{bottom:303.469950px;}
.y24{bottom:308.530650px;}
.y171{bottom:312.084450px;}
.y146{bottom:322.104900px;}
.yeb{bottom:322.118250px;}
.y9b{bottom:322.213950px;}
.ybb{bottom:326.221350px;}
.y23{bottom:328.330650px;}
.y170{bottom:330.834450px;}
.y11a{bottom:340.400250px;}
.y9a{bottom:340.957950px;}
.yea{bottom:343.122750px;}
.y22{bottom:348.130650px;}
.y16f{bottom:349.584450px;}
.y145{bottom:351.606900px;}
.yba{bottom:351.721350px;}
.y99{bottom:359.701950px;}
.y119{bottom:361.404750px;}
.ye9{bottom:364.127250px;}
.y21{bottom:367.930650px;}
.y144{bottom:372.611400px;}
.y16e{bottom:374.709450px;}
.yb9{bottom:377.221350px;}
.y98{bottom:378.445950px;}
.y118{bottom:382.409250px;}
.y20{bottom:387.730650px;}
.y16d{bottom:393.459450px;}
.y143{bottom:393.615900px;}
.y97{bottom:397.189950px;}
.ye8{bottom:402.143250px;}
.yb8{bottom:402.721350px;}
.y117{bottom:403.413750px;}
.y16c{bottom:412.209450px;}
.y96{bottom:415.933950px;}
.y1f{bottom:420.285150px;}
.y142{bottom:423.117900px;}
.ye7{bottom:423.147750px;}
.y116{bottom:424.418250px;}
.yb7{bottom:427.846350px;}
.y95{bottom:434.677950px;}
.y16b{bottom:437.334450px;}
.y1e{bottom:440.085150px;}
.ye6{bottom:444.152250px;}
.y115{bottom:445.422750px;}
.yb6{bottom:447.181350px;}
.y141{bottom:452.619900px;}
.y94{bottom:453.421950px;}
.y3a{bottom:455.986050px;}
.y16a{bottom:456.084450px;}
.yb5{bottom:456.181350px;}
.y1d{bottom:459.885150px;}
.ye5{bottom:465.156750px;}
.y114{bottom:466.427250px;}
.y39{bottom:476.438550px;}
.y1c{bottom:479.685150px;}
.y169{bottom:481.209450px;}
.yb4{bottom:482.101800px;}
.y140{bottom:482.121900px;}
.ye4{bottom:486.161250px;}
.y113{bottom:487.431750px;}
.y93{bottom:489.177450px;}
.y38{bottom:496.891050px;}
.y1b{bottom:499.485150px;}
.y168{bottom:499.959450px;}
.ye3{bottom:507.165750px;}
.y60{bottom:507.218400px;}
.y92{bottom:507.921450px;}
.y112{bottom:508.436250px;}
.y13f{bottom:511.623900px;}
.y167{bottom:518.709450px;}
.y5f{bottom:525.962400px;}
.y91{bottom:526.665450px;}
.ye2{bottom:528.170250px;}
.yb3{bottom:529.189950px;}
.y111{bottom:529.440750px;}
.y1a{bottom:532.039650px;}
.y13e{bottom:532.628400px;}
.y81{bottom:536.390400px;}
.y166{bottom:537.459450px;}
.y37{bottom:537.796050px;}
.y5e{bottom:544.706400px;}
.y90{bottom:545.409450px;}
.yb2{bottom:547.933950px;}
.ye1{bottom:549.174750px;}
.y110{bottom:550.445250px;}
.y19{bottom:551.839650px;}
.y80{bottom:555.134400px;}
.y165{bottom:556.209450px;}
.y36{bottom:558.248550px;}
.y13d{bottom:562.130400px;}
.y5d{bottom:563.450400px;}
.y8f{bottom:564.153450px;}
.yb1{bottom:566.677950px;}
.ye0{bottom:570.179250px;}
.y10f{bottom:571.449750px;}
.y18{bottom:571.639650px;}
.y7f{bottom:573.878400px;}
.y164{bottom:574.959450px;}
.y35{bottom:578.701050px;}
.y5c{bottom:582.194400px;}
.y8e{bottom:582.897450px;}
.yb0{bottom:585.421950px;}
.ydf{bottom:591.183750px;}
.y17{bottom:591.439650px;}
.y13c{bottom:591.632400px;}
.y10e{bottom:592.454250px;}
.y7e{bottom:592.622400px;}
.y34{bottom:599.153550px;}
.y163{bottom:600.084450px;}
.y5b{bottom:600.938400px;}
.y8d{bottom:601.641450px;}
.yaf{bottom:604.165950px;}
.y16{bottom:611.239650px;}
.y7d{bottom:611.366400px;}
.yde{bottom:612.188250px;}
.y13b{bottom:612.636900px;}
.y10d{bottom:613.458750px;}
.y162{bottom:618.834450px;}
.y33{bottom:619.606050px;}
.y5a{bottom:619.682400px;}
.yae{bottom:622.909950px;}
.y8c{bottom:624.642450px;}
.y7c{bottom:630.110400px;}
.y15{bottom:631.039650px;}
.ydd{bottom:633.192750px;}
.y13a{bottom:633.641400px;}
.y161{bottom:637.584450px;}
.y59{bottom:638.426400px;}
.yad{bottom:641.653950px;}
.y7b{bottom:648.854400px;}
.y14{bottom:650.839650px;}
.y10c{bottom:651.474750px;}
.ydc{bottom:654.197250px;}
.y160{bottom:656.334450px;}
.y58{bottom:657.170400px;}
.y8b{bottom:660.397950px;}
.y32{bottom:660.511050px;}
.y139{bottom:663.143400px;}
.y7a{bottom:667.598400px;}
.y13{bottom:670.639650px;}
.y10b{bottom:672.479250px;}
.y57{bottom:675.914400px;}
.y31{bottom:676.711050px;}
.yac{bottom:677.409450px;}
.y8a{bottom:679.141950px;}
.y15f{bottom:681.459450px;}
.y79{bottom:686.342400px;}
.ydb{bottom:692.213250px;}
.y138{bottom:692.645400px;}
.y10a{bottom:693.483750px;}
.y56{bottom:694.658400px;}
.yab{bottom:696.153450px;}
.y30{bottom:697.163550px;}
.y89{bottom:697.885950px;}
.y15e{bottom:700.209450px;}
.y12{bottom:703.194150px;}
.y78{bottom:705.086400px;}
.yda{bottom:713.217750px;}
.y55{bottom:713.402400px;}
.y109{bottom:714.488250px;}
.yaa{bottom:714.897450px;}
.y88{bottom:716.629950px;}
.y2f{bottom:717.616050px;}
.y15d{bottom:718.959450px;}
.y137{bottom:722.147400px;}
.y11{bottom:722.994150px;}
.y77{bottom:723.830400px;}
.y54{bottom:732.146400px;}
.ya9{bottom:733.641450px;}
.yd9{bottom:734.222250px;}
.y87{bottom:735.373950px;}
.y108{bottom:735.492750px;}
.y15c{bottom:737.709450px;}
.y76{bottom:742.574400px;}
.y10{bottom:742.794150px;}
.y53{bottom:750.890400px;}
.y136{bottom:751.649400px;}
.ya8{bottom:752.385450px;}
.y86{bottom:754.117950px;}
.yd8{bottom:755.226750px;}
.y15b{bottom:756.459450px;}
.y107{bottom:756.497250px;}
.y2e{bottom:758.521050px;}
.y75{bottom:761.318400px;}
.yf{bottom:762.594150px;}
.y52{bottom:769.634400px;}
.ya7{bottom:771.129450px;}
.y85{bottom:772.861950px;}
.yd7{bottom:776.231250px;}
.y106{bottom:777.501750px;}
.y2d{bottom:778.973550px;}
.y74{bottom:780.062400px;}
.y135{bottom:781.151400px;}
.y15a{bottom:781.584450px;}
.y51{bottom:788.378400px;}
.ya6{bottom:789.873450px;}
.yd6{bottom:797.235750px;}
.y105{bottom:798.506250px;}
.y73{bottom:798.806400px;}
.y159{bottom:800.334450px;}
.y50{bottom:807.122400px;}
.y84{bottom:808.617450px;}
.y72{bottom:817.550400px;}
.ye{bottom:817.972800px;}
.yd5{bottom:818.240250px;}
.y104{bottom:819.510750px;}
.y2c{bottom:819.878550px;}
.y134{bottom:823.143900px;}
.y158{bottom:825.459450px;}
.y4f{bottom:825.866400px;}
.y2b{bottom:836.078550px;}
.y71{bottom:836.294400px;}
.yd4{bottom:839.244750px;}
.y103{bottom:840.515250px;}
.yc4{bottom:843.288900px;}
.y133{bottom:844.148400px;}
.y157{bottom:844.209450px;}
.y4e{bottom:844.610400px;}
.y2a{bottom:852.278550px;}
.y70{bottom:855.038400px;}
.yd3{bottom:860.249250px;}
.y102{bottom:861.519750px;}
.y4d{bottom:863.354400px;}
.y132{bottom:865.152900px;}
.y29{bottom:868.478550px;}
.y156{bottom:869.334450px;}
.y6f{bottom:873.782400px;}
.yd{bottom:875.475300px;}
.yd2{bottom:881.253750px;}
.y4c{bottom:882.098400px;}
.y101{bottom:882.524250px;}
.y28{bottom:884.678550px;}
.y131{bottom:886.157400px;}
.y155{bottom:888.084450px;}
.yc{bottom:889.875300px;}
.y6e{bottom:892.526400px;}
.y4b{bottom:900.842400px;}
.yd1{bottom:902.258250px;}
.y27{bottom:905.131050px;}
.y154{bottom:906.834450px;}
.y130{bottom:907.161900px;}
.y6d{bottom:911.270400px;}
.y4a{bottom:919.586400px;}
.y100{bottom:920.540250px;}
.yd0{bottom:923.262750px;}
.y12f{bottom:928.166400px;}
.yb{bottom:929.957400px;}
.y6c{bottom:930.014400px;}
.y153{bottom:934.023900px;}
.y49{bottom:938.330400px;}
.yff{bottom:941.544750px;}
.ycf{bottom:944.267250px;}
.y6b{bottom:948.758400px;}
.y12e{bottom:949.170900px;}
.y48{bottom:957.074400px;}
.y9{bottom:960.829800px;}
.yfe{bottom:962.549250px;}
.yce{bottom:965.271750px;}
.y6a{bottom:967.502400px;}
.y12d{bottom:970.175400px;}
.yfd{bottom:983.553750px;}
.ycd{bottom:986.276250px;}
.y69{bottom:990.503400px;}
.y152{bottom:990.635400px;}
.y12c{bottom:991.179900px;}
.y47{bottom:992.829900px;}
.y8{bottom:993.229800px;}
.yfc{bottom:1004.558250px;}
.ycc{bottom:1007.280750px;}
.y46{bottom:1011.573900px;}
.y151{bottom:1011.639900px;}
.y12b{bottom:1012.184400px;}
.y68{bottom:1017.761400px;}
.yfb{bottom:1025.562750px;}
.y7{bottom:1025.629800px;}
.ycb{bottom:1028.285250px;}
.y45{bottom:1030.317900px;}
.y12a{bottom:1033.188900px;}
.y17f{bottom:1036.179900px;}
.yfa{bottom:1046.567250px;}
.y44{bottom:1049.061900px;}
.y67{bottom:1053.516900px;}
.yca{bottom:1053.530250px;}
.y6{bottom:1053.546450px;}
.y129{bottom:1054.193400px;}
.y17e{bottom:1055.979900px;}
.yf9{bottom:1067.571750px;}
.y43{bottom:1067.805900px;}
.y5{bottom:1069.746450px;}
.y150{bottom:1070.643900px;}
.y66{bottom:1072.260900px;}
.y128{bottom:1075.197900px;}
.y17d{bottom:1075.779900px;}
.y42{bottom:1086.549900px;}
.yf8{bottom:1088.576250px;}
.y65{bottom:1091.004900px;}
.yc9{bottom:1091.546250px;}
.y127{bottom:1096.202400px;}
.y14f{bottom:1100.145900px;}
.y41{bottom:1105.293900px;}
.y64{bottom:1109.748900px;}
.yc8{bottom:1112.550750px;}
.y126{bottom:1117.206900px;}
.y17c{bottom:1121.757900px;}
.ya{bottom:1123.179750px;}
.y40{bottom:1124.037900px;}
.yf7{bottom:1126.592250px;}
.y63{bottom:1128.492900px;}
.y14e{bottom:1129.647900px;}
.yc7{bottom:1131.294750px;}
.y125{bottom:1138.211400px;}
.y17b{bottom:1141.557900px;}
.y3f{bottom:1142.781900px;}
.y62{bottom:1147.236900px;}
.yf6{bottom:1147.596750px;}
.yc6{bottom:1150.038750px;}
.y14d{bottom:1159.149900px;}
.y124{bottom:1159.215900px;}
.y17a{bottom:1160.307900px;}
.y3e{bottom:1165.782900px;}
.y61{bottom:1165.980900px;}
.yf5{bottom:1168.601250px;}
.yc5{bottom:1168.782750px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y3d{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.ha{height:36.093750px;}
.h6{height:39.972656px;}
.he{height:40.605469px;}
.h3{height:44.414062px;}
.hd{height:44.507812px;}
.h4{height:45.117188px;}
.h5{height:47.277398px;}
.h11{height:49.453125px;}
.h10{height:49.628906px;}
.h8{height:51.257812px;}
.h9{height:51.445312px;}
.hf{height:54.140625px;}
.hc{height:54.398438px;}
.hb{height:72.023438px;}
.h12{height:81.117188px;}
.h7{height:81.210938px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:6.108300px;}
.xd{left:24.130800px;}
.xe{left:25.764300px;}
.x11{left:29.044800px;}
.x13{left:35.875800px;}
.x6{left:37.097700px;}
.x14{left:48.592800px;}
.xc{left:57.178800px;}
.x5{left:63.044700px;}
.xf{left:64.725300px;}
.x15{left:66.655800px;}
.x16{left:72.283350px;}
.x10{left:88.660800px;}
.x1d{left:90.779550px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.xb{left:232.786800px;}
.xa{left:242.046600px;}
.x4{left:308.436300px;}
.x1{left:408.040350px;}
.x17{left:461.545050px;}
.x1a{left:466.588650px;}
.x1c{left:488.338650px;}
.x1b{left:646.168650px;}
.x8{left:659.865300px;}
.x3{left:798.829500px;}
.x19{left:800.243100px;}
.x18{left:829.133850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls6{letter-spacing:-2.933333pt;}
.ls4{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.234667pt;}
.ls3{letter-spacing:-0.176000pt;}
.ls2{letter-spacing:-0.117333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.264000pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.152000pt;}
.wsf{word-spacing:-13.141333pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:0.117333pt;}
.wsc{word-spacing:0.176000pt;}
.wse{word-spacing:0.234667pt;}
.wsd{word-spacing:0.469333pt;}
.ws4{word-spacing:3.872000pt;}
.ws5{word-spacing:8.928000pt;}
.ws6{word-spacing:146.613333pt;}
.ws7{word-spacing:258.453333pt;}
.ws9{word-spacing:272.853333pt;}
.wsa{word-spacing:278.133333pt;}
.ws8{word-spacing:299.253333pt;}
._12{margin-left:-58.368000pt;}
._3b{margin-left:-12.947200pt;}
._28{margin-left:-9.715200pt;}
._1b{margin-left:-7.990933pt;}
._f{margin-left:-6.615148pt;}
._b{margin-left:-5.626133pt;}
._a{margin-left:-4.693333pt;}
._0{margin-left:-3.098667pt;}
._14{margin-left:-2.181867pt;}
._6{margin-left:-1.284267pt;}
._1{width:1.410881pt;}
._9{width:2.352533pt;}
._7{width:3.737067pt;}
._8{width:4.798933pt;}
._e{width:6.206933pt;}
._1d{width:7.597333pt;}
._10{width:8.683200pt;}
._11{width:9.735148pt;}
._17{width:11.353600pt;}
._16{width:12.354667pt;}
._25{width:13.252800pt;}
._1a{width:14.156267pt;}
._22{width:15.118400pt;}
._3c{width:16.471467pt;}
._15{width:17.652800pt;}
._5{width:19.285333pt;}
._d{width:20.902400pt;}
._4{width:21.845333pt;}
._37{width:22.831785pt;}
._1c{width:23.736533pt;}
._13{width:24.774933pt;}
._c{width:26.312000pt;}
._1e{width:28.253867pt;}
._1f{width:29.362133pt;}
._19{width:30.442133pt;}
._23{width:31.965015pt;}
._20{width:33.123200pt;}
._38{width:35.105600pt;}
._3a{width:36.160000pt;}
._27{width:37.916267pt;}
._35{width:39.112533pt;}
._21{width:40.298133pt;}
._39{width:42.157867pt;}
._26{width:43.771200pt;}
._18{width:47.842667pt;}
._24{width:57.710400pt;}
._34{width:59.328000pt;}
._36{width:61.001600pt;}
._2{width:136.095860pt;}
._3{width:163.102957pt;}
._2f{width:228.586667pt;}
._29{width:262.986667pt;}
._2c{width:282.560000pt;}
._2d{width:308.964267pt;}
._2e{width:310.453333pt;}
._31{width:313.866667pt;}
._32{width:340.588481pt;}
._2b{width:389.173333pt;}
._30{width:443.733333pt;}
._2a{width:475.413333pt;}
._33{width:535.777600pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:50.552933pt;}
.y3b{bottom:64.952933pt;}
.y3{bottom:72.686667pt;}
.y123{bottom:115.651333pt;}
.yc3{bottom:116.387067pt;}
.y14c{bottom:117.854133pt;}
.yf4{bottom:118.291333pt;}
.ya5{bottom:119.799067pt;}
.y179{bottom:132.741733pt;}
.yc2{bottom:133.048400pt;}
.y122{bottom:134.322000pt;}
.ya4{bottom:136.460400pt;}
.yf3{bottom:136.962000pt;}
.y14b{bottom:144.078133pt;}
.y83{bottom:144.944800pt;}
.y178{bottom:149.408400pt;}
.yc1{bottom:149.709733pt;}
.y121{bottom:152.992667pt;}
.ya3{bottom:153.121733pt;}
.yf2{bottom:155.632667pt;}
.y82{bottom:160.944800pt;}
.y177{bottom:166.075067pt;}
.ya2{bottom:169.783067pt;}
.y14a{bottom:170.302133pt;}
.y120{bottom:171.663333pt;}
.yf1{bottom:174.303333pt;}
.yc0{bottom:181.494533pt;}
.ya1{bottom:186.444400pt;}
.y176{bottom:188.408400pt;}
.y11f{bottom:190.334000pt;}
.yf0{bottom:192.974000pt;}
.ybf{bottom:200.161200pt;}
.ya0{bottom:203.105733pt;}
.y175{bottom:205.075067pt;}
.y11e{bottom:209.004667pt;}
.yef{bottom:211.644667pt;}
.y26{bottom:214.556933pt;}
.y9f{bottom:219.767067pt;}
.ybe{bottom:221.641200pt;}
.y174{bottom:221.741733pt;}
.y149{bottom:222.750133pt;}
.y11d{bottom:227.675333pt;}
.y25{bottom:228.956933pt;}
.yee{bottom:230.315333pt;}
.y9e{bottom:236.428400pt;}
.y173{bottom:238.408400pt;}
.y148{bottom:241.420800pt;}
.ybd{bottom:244.641200pt;}
.y11c{bottom:246.346000pt;}
.yed{bottom:248.986000pt;}
.y9d{bottom:253.089733pt;}
.y147{bottom:260.091467pt;}
.y172{bottom:260.741733pt;}
.ybc{bottom:267.307867pt;}
.yec{bottom:267.656667pt;}
.y11b{bottom:268.786000pt;}
.y9c{bottom:269.751067pt;}
.y24{bottom:274.249467pt;}
.y171{bottom:277.408400pt;}
.y146{bottom:286.315467pt;}
.yeb{bottom:286.327333pt;}
.y9b{bottom:286.412400pt;}
.ybb{bottom:289.974533pt;}
.y23{bottom:291.849467pt;}
.y170{bottom:294.075067pt;}
.y11a{bottom:302.578000pt;}
.y9a{bottom:303.073733pt;}
.yea{bottom:304.998000pt;}
.y22{bottom:309.449467pt;}
.y16f{bottom:310.741733pt;}
.y145{bottom:312.539467pt;}
.yba{bottom:312.641200pt;}
.y99{bottom:319.735067pt;}
.y119{bottom:321.248667pt;}
.ye9{bottom:323.668667pt;}
.y21{bottom:327.049467pt;}
.y144{bottom:331.210133pt;}
.y16e{bottom:333.075067pt;}
.yb9{bottom:335.307867pt;}
.y98{bottom:336.396400pt;}
.y118{bottom:339.919333pt;}
.y20{bottom:344.649467pt;}
.y16d{bottom:349.741733pt;}
.y143{bottom:349.880800pt;}
.y97{bottom:353.057733pt;}
.ye8{bottom:357.460667pt;}
.yb8{bottom:357.974533pt;}
.y117{bottom:358.590000pt;}
.y16c{bottom:366.408400pt;}
.y96{bottom:369.719067pt;}
.y1f{bottom:373.586800pt;}
.y142{bottom:376.104800pt;}
.ye7{bottom:376.131333pt;}
.y116{bottom:377.260667pt;}
.yb7{bottom:380.307867pt;}
.y95{bottom:386.380400pt;}
.y16b{bottom:388.741733pt;}
.y1e{bottom:391.186800pt;}
.ye6{bottom:394.802000pt;}
.y115{bottom:395.931333pt;}
.yb6{bottom:397.494533pt;}
.y141{bottom:402.328800pt;}
.y94{bottom:403.041733pt;}
.y3a{bottom:405.320933pt;}
.y16a{bottom:405.408400pt;}
.yb5{bottom:405.494533pt;}
.y1d{bottom:408.786800pt;}
.ye5{bottom:413.472667pt;}
.y114{bottom:414.602000pt;}
.y39{bottom:423.500933pt;}
.y1c{bottom:426.386800pt;}
.y169{bottom:427.741733pt;}
.yb4{bottom:428.534933pt;}
.y140{bottom:428.552800pt;}
.ye4{bottom:432.143333pt;}
.y113{bottom:433.272667pt;}
.y93{bottom:434.824400pt;}
.y38{bottom:441.680933pt;}
.y1b{bottom:443.986800pt;}
.y168{bottom:444.408400pt;}
.ye3{bottom:450.814000pt;}
.y60{bottom:450.860800pt;}
.y92{bottom:451.485733pt;}
.y112{bottom:451.943333pt;}
.y13f{bottom:454.776800pt;}
.y167{bottom:461.075067pt;}
.y5f{bottom:467.522133pt;}
.y91{bottom:468.147067pt;}
.ye2{bottom:469.484667pt;}
.yb3{bottom:470.391067pt;}
.y111{bottom:470.614000pt;}
.y1a{bottom:472.924133pt;}
.y13e{bottom:473.447467pt;}
.y81{bottom:476.791467pt;}
.y166{bottom:477.741733pt;}
.y37{bottom:478.040933pt;}
.y5e{bottom:484.183467pt;}
.y90{bottom:484.808400pt;}
.yb2{bottom:487.052400pt;}
.ye1{bottom:488.155333pt;}
.y110{bottom:489.284667pt;}
.y19{bottom:490.524133pt;}
.y80{bottom:493.452800pt;}
.y165{bottom:494.408400pt;}
.y36{bottom:496.220933pt;}
.y13d{bottom:499.671467pt;}
.y5d{bottom:500.844800pt;}
.y8f{bottom:501.469733pt;}
.yb1{bottom:503.713733pt;}
.ye0{bottom:506.826000pt;}
.y10f{bottom:507.955333pt;}
.y18{bottom:508.124133pt;}
.y7f{bottom:510.114133pt;}
.y164{bottom:511.075067pt;}
.y35{bottom:514.400933pt;}
.y5c{bottom:517.506133pt;}
.y8e{bottom:518.131067pt;}
.yb0{bottom:520.375067pt;}
.ydf{bottom:525.496667pt;}
.y17{bottom:525.724133pt;}
.y13c{bottom:525.895467pt;}
.y10e{bottom:526.626000pt;}
.y7e{bottom:526.775467pt;}
.y34{bottom:532.580933pt;}
.y163{bottom:533.408400pt;}
.y5b{bottom:534.167467pt;}
.y8d{bottom:534.792400pt;}
.yaf{bottom:537.036400pt;}
.y16{bottom:543.324133pt;}
.y7d{bottom:543.436800pt;}
.yde{bottom:544.167333pt;}
.y13b{bottom:544.566133pt;}
.y10d{bottom:545.296667pt;}
.y162{bottom:550.075067pt;}
.y33{bottom:550.760933pt;}
.y5a{bottom:550.828800pt;}
.yae{bottom:553.697733pt;}
.y8c{bottom:555.237733pt;}
.y7c{bottom:560.098133pt;}
.y15{bottom:560.924133pt;}
.ydd{bottom:562.838000pt;}
.y13a{bottom:563.236800pt;}
.y161{bottom:566.741733pt;}
.y59{bottom:567.490133pt;}
.yad{bottom:570.359067pt;}
.y7b{bottom:576.759467pt;}
.y14{bottom:578.524133pt;}
.y10c{bottom:579.088667pt;}
.ydc{bottom:581.508667pt;}
.y160{bottom:583.408400pt;}
.y58{bottom:584.151467pt;}
.y8b{bottom:587.020400pt;}
.y32{bottom:587.120933pt;}
.y139{bottom:589.460800pt;}
.y7a{bottom:593.420800pt;}
.y13{bottom:596.124133pt;}
.y10b{bottom:597.759333pt;}
.y57{bottom:600.812800pt;}
.y31{bottom:601.520933pt;}
.yac{bottom:602.141733pt;}
.y8a{bottom:603.681733pt;}
.y15f{bottom:605.741733pt;}
.y79{bottom:610.082133pt;}
.ydb{bottom:615.300667pt;}
.y138{bottom:615.684800pt;}
.y10a{bottom:616.430000pt;}
.y56{bottom:617.474133pt;}
.yab{bottom:618.803067pt;}
.y30{bottom:619.700933pt;}
.y89{bottom:620.343067pt;}
.y15e{bottom:622.408400pt;}
.y12{bottom:625.061467pt;}
.y78{bottom:626.743467pt;}
.yda{bottom:633.971333pt;}
.y55{bottom:634.135467pt;}
.y109{bottom:635.100667pt;}
.yaa{bottom:635.464400pt;}
.y88{bottom:637.004400pt;}
.y2f{bottom:637.880933pt;}
.y15d{bottom:639.075067pt;}
.y137{bottom:641.908800pt;}
.y11{bottom:642.661467pt;}
.y77{bottom:643.404800pt;}
.y54{bottom:650.796800pt;}
.ya9{bottom:652.125733pt;}
.yd9{bottom:652.642000pt;}
.y87{bottom:653.665733pt;}
.y108{bottom:653.771333pt;}
.y15c{bottom:655.741733pt;}
.y76{bottom:660.066133pt;}
.y10{bottom:660.261467pt;}
.y53{bottom:667.458133pt;}
.y136{bottom:668.132800pt;}
.ya8{bottom:668.787067pt;}
.y86{bottom:670.327067pt;}
.yd8{bottom:671.312667pt;}
.y15b{bottom:672.408400pt;}
.y107{bottom:672.442000pt;}
.y2e{bottom:674.240933pt;}
.y75{bottom:676.727467pt;}
.yf{bottom:677.861467pt;}
.y52{bottom:684.119467pt;}
.ya7{bottom:685.448400pt;}
.y85{bottom:686.988400pt;}
.yd7{bottom:689.983333pt;}
.y106{bottom:691.112667pt;}
.y2d{bottom:692.420933pt;}
.y74{bottom:693.388800pt;}
.y135{bottom:694.356800pt;}
.y15a{bottom:694.741733pt;}
.y51{bottom:700.780800pt;}
.ya6{bottom:702.109733pt;}
.yd6{bottom:708.654000pt;}
.y105{bottom:709.783333pt;}
.y73{bottom:710.050133pt;}
.y159{bottom:711.408400pt;}
.y50{bottom:717.442133pt;}
.y84{bottom:718.771067pt;}
.y72{bottom:726.711467pt;}
.ye{bottom:727.086933pt;}
.yd5{bottom:727.324667pt;}
.y104{bottom:728.454000pt;}
.y2c{bottom:728.780933pt;}
.y134{bottom:731.683467pt;}
.y158{bottom:733.741733pt;}
.y4f{bottom:734.103467pt;}
.y2b{bottom:743.180933pt;}
.y71{bottom:743.372800pt;}
.yd4{bottom:745.995333pt;}
.y103{bottom:747.124667pt;}
.yc4{bottom:749.590133pt;}
.y133{bottom:750.354133pt;}
.y157{bottom:750.408400pt;}
.y4e{bottom:750.764800pt;}
.y2a{bottom:757.580933pt;}
.y70{bottom:760.034133pt;}
.yd3{bottom:764.666000pt;}
.y102{bottom:765.795333pt;}
.y4d{bottom:767.426133pt;}
.y132{bottom:769.024800pt;}
.y29{bottom:771.980933pt;}
.y156{bottom:772.741733pt;}
.y6f{bottom:776.695467pt;}
.yd{bottom:778.200267pt;}
.yd2{bottom:783.336667pt;}
.y4c{bottom:784.087467pt;}
.y101{bottom:784.466000pt;}
.y28{bottom:786.380933pt;}
.y131{bottom:787.695467pt;}
.y155{bottom:789.408400pt;}
.yc{bottom:791.000267pt;}
.y6e{bottom:793.356800pt;}
.y4b{bottom:800.748800pt;}
.yd1{bottom:802.007333pt;}
.y27{bottom:804.560933pt;}
.y154{bottom:806.075067pt;}
.y130{bottom:806.366133pt;}
.y6d{bottom:810.018133pt;}
.y4a{bottom:817.410133pt;}
.y100{bottom:818.258000pt;}
.yd0{bottom:820.678000pt;}
.y12f{bottom:825.036800pt;}
.yb{bottom:826.628800pt;}
.y6c{bottom:826.679467pt;}
.y153{bottom:830.243467pt;}
.y49{bottom:834.071467pt;}
.yff{bottom:836.928667pt;}
.ycf{bottom:839.348667pt;}
.y6b{bottom:843.340800pt;}
.y12e{bottom:843.707467pt;}
.y48{bottom:850.732800pt;}
.y9{bottom:854.070933pt;}
.yfe{bottom:855.599333pt;}
.yce{bottom:858.019333pt;}
.y6a{bottom:860.002133pt;}
.y12d{bottom:862.378133pt;}
.yfd{bottom:874.270000pt;}
.ycd{bottom:876.690000pt;}
.y69{bottom:880.447467pt;}
.y152{bottom:880.564800pt;}
.y12c{bottom:881.048800pt;}
.y47{bottom:882.515467pt;}
.y8{bottom:882.870933pt;}
.yfc{bottom:892.940667pt;}
.ycc{bottom:895.360667pt;}
.y46{bottom:899.176800pt;}
.y151{bottom:899.235467pt;}
.y12b{bottom:899.719467pt;}
.y68{bottom:904.676800pt;}
.yfb{bottom:911.611333pt;}
.y7{bottom:911.670933pt;}
.ycb{bottom:914.031333pt;}
.y45{bottom:915.838133pt;}
.y12a{bottom:918.390133pt;}
.y17f{bottom:921.048800pt;}
.yfa{bottom:930.282000pt;}
.y44{bottom:932.499467pt;}
.y67{bottom:936.459467pt;}
.yca{bottom:936.471333pt;}
.y6{bottom:936.485733pt;}
.y129{bottom:937.060800pt;}
.y17e{bottom:938.648800pt;}
.yf9{bottom:948.952667pt;}
.y43{bottom:949.160800pt;}
.y5{bottom:950.885733pt;}
.y150{bottom:951.683467pt;}
.y66{bottom:953.120800pt;}
.y128{bottom:955.731467pt;}
.y17d{bottom:956.248800pt;}
.y42{bottom:965.822133pt;}
.yf8{bottom:967.623333pt;}
.y65{bottom:969.782133pt;}
.yc9{bottom:970.263333pt;}
.y127{bottom:974.402133pt;}
.y14f{bottom:977.907467pt;}
.y41{bottom:982.483467pt;}
.y64{bottom:986.443467pt;}
.yc8{bottom:988.934000pt;}
.y126{bottom:993.072800pt;}
.y17c{bottom:997.118133pt;}
.ya{bottom:998.382000pt;}
.y40{bottom:999.144800pt;}
.yf7{bottom:1001.415333pt;}
.y63{bottom:1003.104800pt;}
.y14e{bottom:1004.131467pt;}
.yc7{bottom:1005.595333pt;}
.y125{bottom:1011.743467pt;}
.y17b{bottom:1014.718133pt;}
.y3f{bottom:1015.806133pt;}
.y62{bottom:1019.766133pt;}
.yf6{bottom:1020.086000pt;}
.yc6{bottom:1022.256667pt;}
.y14d{bottom:1030.355467pt;}
.y124{bottom:1030.414133pt;}
.y17a{bottom:1031.384800pt;}
.y3e{bottom:1036.251467pt;}
.y61{bottom:1036.427467pt;}
.yf5{bottom:1038.756667pt;}
.yc5{bottom:1038.918000pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y3d{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.ha{height:32.083333pt;}
.h6{height:35.531250pt;}
.he{height:36.093750pt;}
.h3{height:39.479167pt;}
.hd{height:39.562500pt;}
.h4{height:40.104167pt;}
.h5{height:42.024354pt;}
.h11{height:43.958333pt;}
.h10{height:44.114583pt;}
.h8{height:45.562500pt;}
.h9{height:45.729167pt;}
.hf{height:48.125000pt;}
.hc{height:48.354167pt;}
.hb{height:64.020833pt;}
.h12{height:72.104167pt;}
.h7{height:72.187500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.429600pt;}
.xd{left:21.449600pt;}
.xe{left:22.901600pt;}
.x11{left:25.817600pt;}
.x13{left:31.889600pt;}
.x6{left:32.975733pt;}
.x14{left:43.193600pt;}
.xc{left:50.825600pt;}
.x5{left:56.039733pt;}
.xf{left:57.533600pt;}
.x15{left:59.249600pt;}
.x16{left:64.251867pt;}
.x10{left:78.809600pt;}
.x1d{left:80.692933pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.xb{left:206.921600pt;}
.xa{left:215.152533pt;}
.x4{left:274.165600pt;}
.x1{left:362.702533pt;}
.x17{left:410.262267pt;}
.x1a{left:414.745467pt;}
.x1c{left:434.078800pt;}
.x1b{left:574.372133pt;}
.x8{left:586.546933pt;}
.x3{left:710.070667pt;}
.x19{left:711.327200pt;}
.x18{left:737.007867pt;}
}




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