
    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_d97ad3e1649ce6398caf0f5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_66933aaeef14b5b8444050ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_954735770f30e3ba263aa2a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_faeecae48aa6be593e0b8899.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_c2b9a768570a042d1d1adcfa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_33cb53768af1ee47675bc7bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_91573ccef6d5397c49414ca6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_896960cb6b37bf0f71a02d12.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_983bd6b239e444945fddc569.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_2f74eadf7cce8cf5fd38c189.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_2cd3748e637d5c682a99e42f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_68d5b44837f1a8887d586e4d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_289140298c8a065a231563fb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4a9b3f58115ca938b9335dbc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4f257a70c6ab727deae3f573.woff2')format("woff");}.fff{font-family:fff;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1d8264b7bc72af70c8d0aa2f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5b20ac1e593b4d2a9c689725.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a28c793f12d8b471d732f6a0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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:30.240000px;}
.ls12{letter-spacing:-0.533400px;}
.lse{letter-spacing:-0.348600px;}
.ls10{letter-spacing:-0.308400px;}
.ls20{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.252000px;}
.ls13{letter-spacing:-0.229800px;}
.ls11{letter-spacing:-0.224400px;}
.ls6{letter-spacing:-0.175800px;}
.ls17{letter-spacing:-0.138000px;}
.lsa{letter-spacing:-0.115800px;}
.lsf{letter-spacing:-0.092400px;}
.ls4{letter-spacing:-0.083400px;}
.ls9{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.008640px;}
.ls1f{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.061200px;}
.ls15{letter-spacing:0.070560px;}
.ls8{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.077040px;}
.ls1e{letter-spacing:0.092880px;}
.lsd{letter-spacing:0.115200px;}
.ls19{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.149760px;}
.ls1b{letter-spacing:0.196560px;}
.ls18{letter-spacing:0.208800px;}
.lsc{letter-spacing:0.222000px;}
.ls0{letter-spacing:0.233280px;}
.ls7{letter-spacing:0.247800px;}
.ls1{letter-spacing:0.433440px;}
.ls2{letter-spacing:0.661680px;}
.ls1a{letter-spacing:157.104000px;}
.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:-66.240000px;}
.ws1{word-spacing:-66.156600px;}
.ws13{word-spacing:-19.038240px;}
.ws10{word-spacing:-18.808440px;}
.ws11{word-spacing:-16.272000px;}
.ws4{word-spacing:-14.970240px;}
.ws12{word-spacing:-14.832240px;}
.wsa{word-spacing:-13.668720px;}
.ws6{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.446720px;}
.ws8{word-spacing:-13.389960px;}
.wsd{word-spacing:-13.354320px;}
.wsf{word-spacing:-13.222320px;}
.wse{word-spacing:-13.138320px;}
.wsb{word-spacing:-13.098120px;}
.ws2{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.131280px;}
.ws3{word-spacing:-11.952000px;}
.ws9{word-spacing:0.000000px;}
._28{margin-left:-9.011520px;}
._22{margin-left:-7.164720px;}
._6{margin-left:-6.121440px;}
._3{margin-left:-4.843440px;}
._4{margin-left:-3.706560px;}
._1{margin-left:-2.656080px;}
._0{margin-left:-1.562400px;}
._5{width:1.008000px;}
._2{width:2.187360px;}
._16{width:3.240000px;}
._7{width:4.302720px;}
._8{width:6.231600px;}
._10{width:7.273440px;}
._f{width:8.853120px;}
._13{width:10.466640px;}
._20{width:11.759760px;}
._1a{width:12.794400px;}
._15{width:13.957200px;}
._e{width:15.289920px;}
._d{width:16.442640px;}
._b{width:18.243360px;}
._c{width:19.728480px;}
._18{width:21.042720px;}
._a{width:22.162320px;}
._9{width:23.494320px;}
._12{width:24.629040px;}
._11{width:26.294400px;}
._19{width:28.221840px;}
._14{width:29.760480px;}
._24{width:31.010400px;}
._1b{width:32.666400px;}
._1c{width:33.955200px;}
._21{width:35.496000px;}
._27{width:36.627120px;}
._17{width:40.536000px;}
._1d{width:42.364800px;}
._23{width:43.920000px;}
._1f{width:48.324000px;}
._1e{width:49.514400px;}
._25{width:54.864000px;}
._26{width:56.700000px;}
.fc4{color:rgb(163,14,12);}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs9{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:156.240000px;}
.y60{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y34{bottom:4.320000px;}
.y194{bottom:4.680000px;}
.yfe{bottom:4.860000px;}
.y1d4{bottom:5.040000px;}
.yf5{bottom:5.220000px;}
.y111{bottom:5.400000px;}
.y115{bottom:5.580000px;}
.y2{bottom:5.760000px;}
.yee{bottom:5.940000px;}
.y192{bottom:6.120000px;}
.y1c2{bottom:6.150000px;}
.y1bf{bottom:6.300000px;}
.y108{bottom:13.680000px;}
.y188{bottom:13.860000px;}
.yf6{bottom:15.120000px;}
.y105{bottom:22.500000px;}
.y107{bottom:22.680000px;}
.y1d3{bottom:22.860000px;}
.y191{bottom:23.940000px;}
.yf4{bottom:25.020000px;}
.y18a{bottom:31.500000px;}
.y102{bottom:31.545000px;}
.y1d1{bottom:31.710000px;}
.y18e{bottom:32.760000px;}
.y18c{bottom:40.320000px;}
.y104{bottom:40.365000px;}
.y1cc{bottom:40.500000px;}
.y1d2{bottom:40.710000px;}
.y190{bottom:41.760000px;}
.y1{bottom:46.260000px;}
.y5e{bottom:46.980000px;}
.y3{bottom:48.960000px;}
.y1cd{bottom:49.320000px;}
.y18b{bottom:58.140000px;}
.y103{bottom:58.185000px;}
.y1ce{bottom:58.320000px;}
.y18f{bottom:59.580000px;}
.y5d{bottom:67.140000px;}
.y196{bottom:75.960000px;}
.y5c{bottom:87.336000px;}
.y1b3{bottom:111.276000px;}
.y1c8{bottom:111.996000px;}
.yae{bottom:118.836000px;}
.y10e{bottom:121.176000px;}
.y153{bottom:121.896000px;}
.y224{bottom:122.976000px;}
.y33{bottom:125.856000px;}
.y1c7{bottom:126.396000px;}
.y1e0{bottom:128.196000px;}
.y1a3{bottom:129.816000px;}
.y131{bottom:131.076000px;}
.y182{bottom:131.436000px;}
.yd7{bottom:131.796000px;}
.y1b2{bottom:133.236000px;}
.y16c{bottom:138.276000px;}
.yad{bottom:140.796000px;}
.y10d{bottom:143.136000px;}
.y152{bottom:144.036000px;}
.y223{bottom:144.756000px;}
.y32{bottom:146.016000px;}
.y1df{bottom:150.150000px;}
.y1a2{bottom:151.770000px;}
.y130{bottom:153.210000px;}
.y181{bottom:153.390000px;}
.ye8{bottom:153.750000px;}
.y1b1{bottom:155.190000px;}
.yd6{bottom:162.750000px;}
.y151{bottom:165.990000px;}
.y31{bottom:166.170000px;}
.y16b{bottom:169.230000px;}
.yac{bottom:171.750000px;}
.y1a1{bottom:173.730000px;}
.y10c{bottom:174.270000px;}
.y12f{bottom:175.170000px;}
.y180{bottom:175.350000px;}
.y222{bottom:178.410000px;}
.y1de{bottom:181.110000px;}
.yd5{bottom:184.710000px;}
.y1b0{bottom:185.250000px;}
.y150{bottom:187.950000px;}
.yab{bottom:193.710000px;}
.y1a0{bottom:195.690000px;}
.y12e{bottom:197.130000px;}
.y17f{bottom:197.310000px;}
.y1af{bottom:199.650000px;}
.y30{bottom:200.010000px;}
.y16a{bottom:200.190000px;}
.y1dd{bottom:203.070000px;}
.y10b{bottom:204.150000px;}
.yd4{bottom:206.670000px;}
.y14f{bottom:209.910000px;}
.yaa{bottom:215.670000px;}
.y19f{bottom:217.650000px;}
.y12d{bottom:219.090000px;}
.y10a{bottom:219.270000px;}
.y2f{bottom:219.630000px;}
.y221{bottom:221.970000px;}
.y1dc{bottom:225.030000px;}
.y17e{bottom:228.270000px;}
.yd3{bottom:228.810000px;}
.y169{bottom:231.150000px;}
.y2e{bottom:237.810000px;}
.y19e{bottom:239.610000px;}
.y12c{bottom:241.050000px;}
.y14e{bottom:241.590000px;}
.y220{bottom:242.130000px;}
.y1db{bottom:246.990000px;}
.y17d{bottom:250.230000px;}
.yd2{bottom:250.770000px;}
.y109{bottom:254.730000px;}
.y2d{bottom:256.170000px;}
.ya9{bottom:259.770000px;}
.y168{bottom:262.110000px;}
.y21f{bottom:262.290000px;}
.y12b{bottom:263.010000px;}
.y1da{bottom:268.950000px;}
.y19d{bottom:270.570000px;}
.y17c{bottom:272.370000px;}
.y106{bottom:272.550000px;}
.yd1{bottom:272.730000px;}
.y2c{bottom:274.530000px;}
.y14d{bottom:275.430000px;}
.ya8{bottom:281.730000px;}
.y21e{bottom:282.270000px;}
.y12a{bottom:284.970000px;}
.y57{bottom:286.410000px;}
.y1d9{bottom:290.910000px;}
.y19c{bottom:292.530000px;}
.y2b{bottom:292.710000px;}
.y167{bottom:293.070000px;}
.yd0{bottom:294.690000px;}
.y21d{bottom:302.430000px;}
.ya7{bottom:303.690000px;}
.y17b{bottom:304.050000px;}
.y14c{bottom:306.390000px;}
.y129{bottom:306.930000px;}
.y101{bottom:308.190000px;}
.y2a{bottom:311.070000px;}
.y1d8{bottom:312.870000px;}
.y19b{bottom:314.490000px;}
.ycf{bottom:316.650000px;}
.y21c{bottom:322.590000px;}
.y166{bottom:324.030000px;}
.ya6{bottom:325.650000px;}
.y14b{bottom:328.350000px;}
.y29{bottom:329.430000px;}
.y56{bottom:332.895000px;}
.y19a{bottom:336.495000px;}
.y128{bottom:337.935000px;}
.yce{bottom:338.655000px;}
.y21b{bottom:342.795000px;}
.y1d7{bottom:342.975000px;}
.ye7{bottom:347.655000px;}
.y28{bottom:347.835000px;}
.y55{bottom:349.455000px;}
.y14a{bottom:350.355000px;}
.y165{bottom:355.035000px;}
.ya5{bottom:356.655000px;}
.y1d6{bottom:358.095000px;}
.y127{bottom:359.895000px;}
.ycd{bottom:360.615000px;}
.y21a{bottom:362.955000px;}
.y27{bottom:366.015000px;}
.y17a{bottom:367.995000px;}
.y199{bottom:368.355000px;}
.ye6{bottom:369.615000px;}
.y149{bottom:372.495000px;}
.y164{bottom:376.995000px;}
.ya4{bottom:378.615000px;}
.y100{bottom:379.335000px;}
.y126{bottom:381.855000px;}
.y179{bottom:382.395000px;}
.ycc{bottom:382.575000px;}
.y54{bottom:382.755000px;}
.y219{bottom:383.115000px;}
.y26{bottom:384.375000px;}
.y1f9{bottom:391.575000px;}
.y148{bottom:394.455000px;}
.yff{bottom:397.155000px;}
.y163{bottom:399.135000px;}
.ya3{bottom:400.575000px;}
.y53{bottom:401.115000px;}
.y1ae{bottom:401.655000px;}
.y198{bottom:402.195000px;}
.y25{bottom:402.735000px;}
.y218{bottom:403.275000px;}
.y125{bottom:403.815000px;}
.ycb{bottom:413.535000px;}
.yfd{bottom:415.695000px;}
.y147{bottom:416.415000px;}
.y52{bottom:419.475000px;}
.y24{bottom:420.915000px;}
.y162{bottom:421.095000px;}
.ya2{bottom:422.535000px;}
.y1f8{bottom:423.255000px;}
.y217{bottom:423.435000px;}
.y124{bottom:425.775000px;}
.y1ad{bottom:429.735000px;}
.y197{bottom:432.075000px;}
.yca{bottom:435.495000px;}
.y51{bottom:437.655000px;}
.yfc{bottom:438.195000px;}
.y146{bottom:438.375000px;}
.y23{bottom:439.275000px;}
.y161{bottom:443.055000px;}
.y216{bottom:443.595000px;}
.ya1{bottom:444.495000px;}
.y195{bottom:447.375000px;}
.y123{bottom:447.735000px;}
.y1ac{bottom:451.695000px;}
.y50{bottom:456.015000px;}
.y1f7{bottom:457.275000px;}
.yc9{bottom:457.455000px;}
.y22{bottom:457.635000px;}
.y215{bottom:463.755000px;}
.y160{bottom:465.015000px;}
.ya0{bottom:466.455000px;}
.y145{bottom:469.335000px;}
.y122{bottom:469.875000px;}
.y1ab{bottom:473.655000px;}
.y4f{bottom:474.375000px;}
.y21{bottom:475.995000px;}
.y83{bottom:478.155000px;}
.yc8{bottom:479.415000px;}
.y214{bottom:483.735000px;}
.y1f6{bottom:488.235000px;}
.y9f{bottom:488.415000px;}
.y121{bottom:491.835000px;}
.y4e{bottom:492.555000px;}
.y20{bottom:494.715000px;}
.y15f{bottom:495.975000px;}
.yfb{bottom:497.415000px;}
.y144{bottom:499.395000px;}
.y1d5{bottom:501.915000px;}
.y213{bottom:503.895000px;}
.y1c6{bottom:504.795000px;}
.y1aa{bottom:505.515000px;}
.y1f5{bottom:510.195000px;}
.y9e{bottom:510.375000px;}
.y4d{bottom:510.915000px;}
.y82{bottom:511.275000px;}
.y1f{bottom:512.715000px;}
.y143{bottom:513.795000px;}
.y15e{bottom:517.935000px;}
.ye5{bottom:519.375000px;}
.y120{bottom:522.795000px;}
.y212{bottom:524.055000px;}
.y1e{bottom:525.315000px;}
.y4c{bottom:529.275000px;}
.y1f4{bottom:532.155000px;}
.y9d{bottom:532.335000px;}
.y1c5{bottom:533.055000px;}
.y193{bottom:536.295000px;}
.y1a9{bottom:539.355000px;}
.y15d{bottom:539.895000px;}
.ye4{bottom:541.335000px;}
.y81{bottom:543.495000px;}
.y1d{bottom:543.675000px;}
.y211{bottom:544.215000px;}
.y11f{bottom:544.755000px;}
.y4b{bottom:547.635000px;}
.y178{bottom:550.515000px;}
.y1f3{bottom:554.115000px;}
.yc7{bottom:554.475000px;}
.y1c{bottom:560.415000px;}
.y15c{bottom:561.855000px;}
.y1c4{bottom:562.935000px;}
.y80{bottom:563.115000px;}
.y9c{bottom:563.475000px;}
.y210{bottom:564.375000px;}
.y4a{bottom:565.815000px;}
.y11e{bottom:566.715000px;}
.y1a8{bottom:569.415000px;}
.yfa{bottom:572.295000px;}
.y1b{bottom:573.555000px;}
.y1d0{bottom:573.735000px;}
.yc6{bottom:576.435000px;}
.y1c3{bottom:578.055000px;}
.y177{bottom:578.775000px;}
.y7f{bottom:581.475000px;}
.y15b{bottom:583.815000px;}
.y49{bottom:584.175000px;}
.y20f{bottom:584.535000px;}
.y1f2{bottom:585.075000px;}
.y9b{bottom:585.435000px;}
.y11d{bottom:588.675000px;}
.y1a{bottom:594.795000px;}
.yc5{bottom:598.395000px;}
.y1c1{bottom:599.475000px;}
.y7e{bottom:599.835000px;}
.y176{bottom:600.735000px;}
.yf9{bottom:602.355000px;}
.y48{bottom:602.565000px;}
.y20e{bottom:604.725000px;}
.y15a{bottom:605.805000px;}
.y1f1{bottom:607.065000px;}
.y9a{bottom:607.425000px;}
.y11c{bottom:610.665000px;}
.y19{bottom:617.145000px;}
.yf8{bottom:617.505000px;}
.y7d{bottom:618.045000px;}
.yc4{bottom:620.385000px;}
.y47{bottom:620.745000px;}
.y1c0{bottom:620.925000px;}
.y20d{bottom:624.885000px;}
.y159{bottom:627.765000px;}
.y1cf{bottom:628.305000px;}
.y1f0{bottom:629.025000px;}
.y99{bottom:629.385000px;}
.y18{bottom:630.285000px;}
.y175{bottom:631.725000px;}
.y11b{bottom:632.625000px;}
.y7c{bottom:636.405000px;}
.yf7{bottom:638.205000px;}
.y46{bottom:639.105000px;}
.yc3{bottom:642.345000px;}
.y20c{bottom:645.045000px;}
.y158{bottom:649.725000px;}
.y1ef{bottom:650.985000px;}
.ye3{bottom:651.345000px;}
.y17{bottom:651.525000px;}
.y142{bottom:652.785000px;}
.y174{bottom:653.685000px;}
.y11a{bottom:654.585000px;}
.y7b{bottom:654.765000px;}
.y45{bottom:657.465000px;}
.yf3{bottom:659.085000px;}
.y98{bottom:660.345000px;}
.y1be{bottom:663.585000px;}
.yc2{bottom:664.305000px;}
.y1cb{bottom:664.665000px;}
.y20b{bottom:665.205000px;}
.y1ee{bottom:672.945000px;}
.y7a{bottom:673.125000px;}
.ye2{bottom:673.305000px;}
.y16{bottom:674.025000px;}
.y173{bottom:675.645000px;}
.y44{bottom:676.005000px;}
.y18d{bottom:678.525000px;}
.y157{bottom:679.785000px;}
.y141{bottom:680.865000px;}
.y97{bottom:682.305000px;}
.y1bd{bottom:685.005000px;}
.y20a{bottom:685.185000px;}
.y119{bottom:686.265000px;}
.y15{bottom:687.165000px;}
.y79{bottom:691.305000px;}
.y43{bottom:694.185000px;}
.y1ed{bottom:694.905000px;}
.yc1{bottom:695.265000px;}
.yf2{bottom:698.505000px;}
.y96{bottom:704.265000px;}
.y209{bottom:705.345000px;}
.y1bc{bottom:706.425000px;}
.y14{bottom:707.145000px;}
.y172{bottom:707.505000px;}
.y78{bottom:709.665000px;}
.y118{bottom:711.285000px;}
.y140{bottom:711.825000px;}
.y42{bottom:712.545000px;}
.yc0{bottom:717.225000px;}
.yf1{bottom:719.385000px;}
.y156{bottom:722.445000px;}
.y208{bottom:725.505000px;}
.y1ec{bottom:725.865000px;}
.y95{bottom:726.225000px;}
.y77{bottom:728.025000px;}
.y13{bottom:728.565000px;}
.y41{bottom:730.905000px;}
.y13f{bottom:733.785000px;}
.ybf{bottom:739.185000px;}
.yf0{bottom:740.085000px;}
.y117{bottom:741.165000px;}
.y171{bottom:742.065000px;}
.y207{bottom:745.665000px;}
.y76{bottom:746.385000px;}
.y1eb{bottom:747.825000px;}
.y94{bottom:748.185000px;}
.y40{bottom:749.265000px;}
.y12{bottom:750.885000px;}
.y189{bottom:752.325000px;}
.y1ca{bottom:754.485000px;}
.y1bb{bottom:754.665000px;}
.y13e{bottom:755.925000px;}
.y116{bottom:756.285000px;}
.yef{bottom:760.785000px;}
.ybe{bottom:761.145000px;}
.y11{bottom:764.025000px;}
.y75{bottom:764.565000px;}
.y206{bottom:765.825000px;}
.y3f{bottom:767.445000px;}
.y1ea{bottom:769.785000px;}
.y93{bottom:770.145000px;}
.y114{bottom:776.085000px;}
.y170{bottom:776.805000px;}
.yed{bottom:782.385000px;}
.y74{bottom:782.925000px;}
.ybd{bottom:783.105000px;}
.y10{bottom:785.265000px;}
.y3e{bottom:785.805000px;}
.y205{bottom:785.985000px;}
.y13d{bottom:786.885000px;}
.y1e9{bottom:791.925000px;}
.ye1{bottom:792.105000px;}
.y1c9{bottom:794.985000px;}
.y113{bottom:796.065000px;}
.y92{bottom:801.105000px;}
.y73{bottom:801.285000px;}
.y3d{bottom:804.165000px;}
.y1ba{bottom:804.885000px;}
.ybc{bottom:805.065000px;}
.y204{bottom:806.145000px;}
.yf{bottom:807.585000px;}
.yec{bottom:807.945000px;}
.y13c{bottom:808.845000px;}
.y16f{bottom:809.565000px;}
.y1e8{bottom:813.885000px;}
.ye0{bottom:814.065000px;}
.y112{bottom:815.865000px;}
.y72{bottom:819.465000px;}
.ye{bottom:820.725000px;}
.y3c{bottom:822.345000px;}
.y91{bottom:823.065000px;}
.y187{bottom:824.145000px;}
.y16e{bottom:825.405000px;}
.y203{bottom:826.305000px;}
.y1b9{bottom:826.845000px;}
.ybb{bottom:827.025000px;}
.y13b{bottom:830.805000px;}
.y1a7{bottom:835.305000px;}
.y1e7{bottom:835.845000px;}
.ydf{bottom:836.025000px;}
.y110{bottom:836.385000px;}
.y71{bottom:838.365000px;}
.y3b{bottom:840.705000px;}
.yd{bottom:840.885000px;}
.y90{bottom:845.025000px;}
.y202{bottom:846.465000px;}
.y1b8{bottom:848.805000px;}
.yba{bottom:848.985000px;}
.y13a{bottom:852.765000px;}
.y1e6{bottom:857.805000px;}
.y3a{bottom:859.065000px;}
.y10f{bottom:860.865000px;}
.yc{bottom:862.125000px;}
.y1a6{bottom:862.485000px;}
.y186{bottom:864.465000px;}
.y201{bottom:866.625000px;}
.y8f{bottom:866.985000px;}
.y1b7{bottom:870.810000px;}
.y70{bottom:872.070000px;}
.y39{bottom:877.470000px;}
.yb9{bottom:880.170000px;}
.y139{bottom:883.770000px;}
.y200{bottom:886.650000px;}
.y1e5{bottom:888.810000px;}
.y8e{bottom:889.170000px;}
.y1a5{bottom:889.890000px;}
.yb{bottom:890.430000px;}
.y6f{bottom:891.690000px;}
.y185{bottom:892.770000px;}
.y38{bottom:895.650000px;}
.y1b6{bottom:901.770000px;}
.yb8{bottom:902.130000px;}
.y1a4{bottom:904.290000px;}
.y138{bottom:905.730000px;}
.y1ff{bottom:906.810000px;}
.y6e{bottom:910.050000px;}
.y1e4{bottom:910.770000px;}
.yde{bottom:911.130000px;}
.y37{bottom:914.010000px;}
.ya{bottom:916.170000px;}
.y8d{bottom:920.130000px;}
.y184{bottom:923.730000px;}
.y1fe{bottom:926.970000px;}
.y137{bottom:927.690000px;}
.y6d{bottom:928.410000px;}
.y36{bottom:932.370000px;}
.y1e3{bottom:932.730000px;}
.ydd{bottom:933.090000px;}
.yb7{bottom:933.810000px;}
.y22d{bottom:941.370000px;}
.y9{bottom:941.730000px;}
.y8c{bottom:942.090000px;}
.y183{bottom:945.690000px;}
.y6c{bottom:946.770000px;}
.y1fd{bottom:947.130000px;}
.y136{bottom:949.650000px;}
.y35{bottom:950.730000px;}
.y1e2{bottom:954.690000px;}
.ydc{bottom:955.050000px;}
.y22c{bottom:961.350000px;}
.y8b{bottom:964.050000px;}
.y6b{bottom:964.950000px;}
.y1fc{bottom:967.290000px;}
.y8{bottom:967.470000px;}
.yb6{bottom:967.650000px;}
.y1e1{bottom:976.650000px;}
.ydb{bottom:977.010000px;}
.y135{bottom:980.610000px;}
.y22b{bottom:981.510000px;}
.y6a{bottom:983.310000px;}
.y8a{bottom:986.010000px;}
.yeb{bottom:986.730000px;}
.y1fb{bottom:987.450000px;}
.y1b5{bottom:989.610000px;}
.y7{bottom:998.430000px;}
.yb5{bottom:998.610000px;}
.yda{bottom:998.970000px;}
.y155{bottom:1001.310000px;}
.y69{bottom:1001.670000px;}
.y134{bottom:1002.570000px;}
.y89{bottom:1007.970000px;}
.y1fa{bottom:1008.690000px;}
.y1b4{bottom:1011.570000px;}
.y68{bottom:1020.030000px;}
.yb4{bottom:1020.570000px;}
.y22a{bottom:1021.830000px;}
.y154{bottom:1029.570000px;}
.yd9{bottom:1030.650000px;}
.y133{bottom:1033.530000px;}
.y67{bottom:1038.210000px;}
.y88{bottom:1038.930000px;}
.y229{bottom:1041.990000px;}
.yb3{bottom:1042.530000px;}
.y6{bottom:1046.130000px;}
.yea{bottom:1051.530000px;}
.y132{bottom:1055.490000px;}
.y66{bottom:1056.570000px;}
.y87{bottom:1060.890000px;}
.yb2{bottom:1064.490000px;}
.ye9{bottom:1073.490000px;}
.y65{bottom:1074.930000px;}
.y228{bottom:1075.650000px;}
.y86{bottom:1082.850000px;}
.yb1{bottom:1086.450000px;}
.y64{bottom:1093.110000px;}
.y5{bottom:1093.650000px;}
.yd8{bottom:1095.450000px;}
.y227{bottom:1097.430000px;}
.y85{bottom:1104.810000px;}
.y63{bottom:1111.470000px;}
.yb0{bottom:1117.590000px;}
.y226{bottom:1119.210000px;}
.y62{bottom:1130.370000px;}
.y84{bottom:1136.670000px;}
.yaf{bottom:1139.580000px;}
.y225{bottom:1141.020000px;}
.y4{bottom:1141.380000px;}
.y16d{bottom:1142.280000px;}
.y61{bottom:1150.560000px;}
.y5b{bottom:1170.360000px;}
.y5f{bottom:1177.920000px;}
.y5a{bottom:1191.060000px;}
.y59{bottom:1209.240000px;}
.y58{bottom:1227.420000px;}
.h1e{height:17.820000px;}
.h23{height:19.800000px;}
.h24{height:19.980000px;}
.h1b{height:20.700000px;}
.h1c{height:20.880000px;}
.h2b{height:21.240000px;}
.h2a{height:21.420000px;}
.h2c{height:21.456000px;}
.h21{height:35.460000px;}
.h20{height:35.640000px;}
.hb{height:35.806641px;}
.hd{height:36.861328px;}
.h1d{height:39.420000px;}
.h13{height:45.637031px;}
.h26{height:47.980898px;}
.h11{height:50.510039px;}
.h18{height:50.585625px;}
.h10{height:51.793945px;}
.h12{height:51.881484px;}
.h2f{height:53.460000px;}
.h2e{height:53.676000px;}
.h14{height:53.709961px;}
.h4{height:57.248437px;}
.h16{height:57.410156px;}
.h15{height:57.507187px;}
.h2{height:59.439023px;}
.hc{height:61.189805px;}
.h22{height:62.402344px;}
.h7{height:64.331719px;}
.ha{height:65.884219px;}
.he{height:67.824844px;}
.h19{height:68.084282px;}
.h27{height:71.100000px;}
.h1f{height:71.136000px;}
.h1a{height:71.613281px;}
.h8{height:73.129219px;}
.h2d{height:73.722656px;}
.h28{height:73.800000px;}
.h25{height:74.004654px;}
.h17{height:77.760000px;}
.h9{height:86.255508px;}
.h29{height:88.920000px;}
.h3{height:95.076000px;}
.h5{height:135.413086px;}
.h6{height:143.226562px;}
.hf{height:1251.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:90.036000px;}
.we{width:102.960000px;}
.w19{width:106.560000px;}
.w15{width:107.856000px;}
.wf{width:116.136000px;}
.w10{width:116.280000px;}
.wc{width:117.036000px;}
.w16{width:119.016000px;}
.w17{width:124.560000px;}
.w18{width:125.136000px;}
.wd{width:129.096000px;}
.w8{width:139.896000px;}
.w13{width:145.656000px;}
.wb{width:148.536000px;}
.w6{width:154.830000px;}
.w5{width:177.509985px;}
.w4{width:177.869973px;}
.w14{width:207.030000px;}
.wa{width:229.890000px;}
.w12{width:263.910000px;}
.w9{width:270.030000px;}
.w11{width:326.235000px;}
.w7{width:483.195000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:5.220000px;}
.x68{left:9.360000px;}
.x53{left:10.620000px;}
.x24{left:15.479973px;}
.x6f{left:19.260000px;}
.x3e{left:20.700000px;}
.x55{left:21.780000px;}
.x6a{left:23.400000px;}
.x45{left:24.660000px;}
.x57{left:27.180000px;}
.x3{left:29.160000px;}
.x6c{left:31.680000px;}
.x46{left:41.400000px;}
.x3c{left:47.514000px;}
.x42{left:50.265000px;}
.x36{left:52.554000px;}
.x60{left:55.080000px;}
.x48{left:56.190000px;}
.x72{left:57.600000px;}
.x61{left:59.430000px;}
.x71{left:60.480000px;}
.x47{left:62.100000px;}
.x2a{left:66.419973px;}
.x28{left:69.119973px;}
.x23{left:72.899973px;}
.x29{left:74.339973px;}
.x22{left:76.139973px;}
.x31{left:85.139987px;}
.x62{left:86.445000px;}
.x63{left:90.225000px;}
.x5d{left:99.900000px;}
.x1e{left:101.735973px;}
.x21{left:102.815973px;}
.x1b{left:105.695973px;}
.x1c{left:107.495973px;}
.x1d{left:110.015973px;}
.x26{left:114.875973px;}
.x59{left:117.570000px;}
.x27{left:121.535973px;}
.x20{left:125.855973px;}
.x1{left:127.655987px;}
.x2b{left:136.655973px;}
.x34{left:138.275987px;}
.x25{left:144.215973px;}
.x32{left:150.149985px;}
.x5c{left:164.910000px;}
.x1f{left:167.069973px;}
.x30{left:180.749987px;}
.x69{left:182.550000px;}
.x19{left:191.549987px;}
.x4d{left:196.949987px;}
.x8{left:203.429987px;}
.x38{left:205.950000px;}
.x49{left:207.749987px;}
.x54{left:209.190000px;}
.xa{left:210.269987px;}
.x2e{left:214.409987px;}
.x4{left:216.209987px;}
.x2c{left:218.729987px;}
.x64{left:221.429987px;}
.x33{left:233.849987px;}
.x2d{left:242.129987px;}
.x4f{left:249.869987px;}
.x1a{left:255.269987px;}
.x5{left:258.509987px;}
.x4a{left:261.029987px;}
.x52{left:262.289987px;}
.x50{left:263.549987px;}
.x41{left:275.790000px;}
.x3d{left:278.175000px;}
.x7{left:284.474987px;}
.x6{left:286.814987px;}
.xb{left:291.314987px;}
.x37{left:293.115000px;}
.x67{left:300.854987px;}
.x6b{left:302.115000px;}
.x56{left:325.335000px;}
.x40{left:337.934987px;}
.x3b{left:341.174987px;}
.x5b{left:345.314987px;}
.x4b{left:354.854987px;}
.x5a{left:365.474987px;}
.x3a{left:369.794987px;}
.x35{left:376.094987px;}
.x66{left:387.434987px;}
.x43{left:424.335000px;}
.x6d{left:427.035000px;}
.x5e{left:428.835000px;}
.x58{left:441.615000px;}
.x2f{left:467.204987px;}
.x3f{left:473.144987px;}
.x6e{left:535.245000px;}
.x44{left:541.365000px;}
.x13{left:548.204987px;}
.xe{left:561.704987px;}
.xc{left:570.344987px;}
.x12{left:572.504987px;}
.x5f{left:574.485000px;}
.x11{left:576.464987px;}
.x15{left:579.704987px;}
.xd{left:600.044987px;}
.x9{left:608.864987px;}
.x17{left:612.464987px;}
.x14{left:639.824987px;}
.x16{left:653.684987px;}
.x10{left:656.069987px;}
.x70{left:660.750000px;}
.x18{left:663.989987px;}
.x4e{left:685.769987px;}
.x4c{left:707.189987px;}
.x65{left:715.469987px;}
.x51{left:728.429987px;}
.xf{left:765.509987px;}
.x2{left:784.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls12{letter-spacing:-0.474133pt;}
.lse{letter-spacing:-0.309867pt;}
.ls10{letter-spacing:-0.274133pt;}
.ls20{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.224000pt;}
.ls13{letter-spacing:-0.204267pt;}
.ls11{letter-spacing:-0.199467pt;}
.ls6{letter-spacing:-0.156267pt;}
.ls17{letter-spacing:-0.122667pt;}
.lsa{letter-spacing:-0.102933pt;}
.lsf{letter-spacing:-0.082133pt;}
.ls4{letter-spacing:-0.074133pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.007680pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.054400pt;}
.ls15{letter-spacing:0.062720pt;}
.ls8{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.068480pt;}
.ls1e{letter-spacing:0.082560pt;}
.lsd{letter-spacing:0.102400pt;}
.ls19{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.133120pt;}
.ls1b{letter-spacing:0.174720pt;}
.ls18{letter-spacing:0.185600pt;}
.lsc{letter-spacing:0.197333pt;}
.ls0{letter-spacing:0.207360pt;}
.ls7{letter-spacing:0.220267pt;}
.ls1{letter-spacing:0.385280pt;}
.ls2{letter-spacing:0.588160pt;}
.ls1a{letter-spacing:139.648000pt;}
.ws0{word-spacing:-58.880000pt;}
.ws1{word-spacing:-58.805867pt;}
.ws13{word-spacing:-16.922880pt;}
.ws10{word-spacing:-16.718613pt;}
.ws11{word-spacing:-14.464000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws12{word-spacing:-13.184213pt;}
.wsa{word-spacing:-12.149973pt;}
.ws6{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.952640pt;}
.ws8{word-spacing:-11.902187pt;}
.wsd{word-spacing:-11.870507pt;}
.wsf{word-spacing:-11.753173pt;}
.wse{word-spacing:-11.678507pt;}
.wsb{word-spacing:-11.642773pt;}
.ws2{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.783360pt;}
.ws3{word-spacing:-10.624000pt;}
.ws9{word-spacing:0.000000pt;}
._28{margin-left:-8.010240pt;}
._22{margin-left:-6.368640pt;}
._6{margin-left:-5.441280pt;}
._3{margin-left:-4.305280pt;}
._4{margin-left:-3.294720pt;}
._1{margin-left:-2.360960pt;}
._0{margin-left:-1.388800pt;}
._5{width:0.896000pt;}
._2{width:1.944320pt;}
._16{width:2.880000pt;}
._7{width:3.824640pt;}
._8{width:5.539200pt;}
._10{width:6.465280pt;}
._f{width:7.869440pt;}
._13{width:9.303680pt;}
._20{width:10.453120pt;}
._1a{width:11.372800pt;}
._15{width:12.406400pt;}
._e{width:13.591040pt;}
._d{width:14.615680pt;}
._b{width:16.216320pt;}
._c{width:17.536427pt;}
._18{width:18.704640pt;}
._a{width:19.699840pt;}
._9{width:20.883840pt;}
._12{width:21.892480pt;}
._11{width:23.372800pt;}
._19{width:25.086080pt;}
._14{width:26.453760pt;}
._24{width:27.564800pt;}
._1b{width:29.036800pt;}
._1c{width:30.182400pt;}
._21{width:31.552000pt;}
._27{width:32.557440pt;}
._17{width:36.032000pt;}
._1d{width:37.657600pt;}
._23{width:39.040000pt;}
._1f{width:42.954667pt;}
._1e{width:44.012800pt;}
._25{width:48.768000pt;}
._26{width:50.400000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.880000pt;}
.y60{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.840000pt;}
.y194{bottom:4.160000pt;}
.yfe{bottom:4.320000pt;}
.y1d4{bottom:4.480000pt;}
.yf5{bottom:4.640000pt;}
.y111{bottom:4.800000pt;}
.y115{bottom:4.960000pt;}
.y2{bottom:5.120000pt;}
.yee{bottom:5.280000pt;}
.y192{bottom:5.440000pt;}
.y1c2{bottom:5.466667pt;}
.y1bf{bottom:5.600000pt;}
.y108{bottom:12.160000pt;}
.y188{bottom:12.320000pt;}
.yf6{bottom:13.440000pt;}
.y105{bottom:20.000000pt;}
.y107{bottom:20.160000pt;}
.y1d3{bottom:20.320000pt;}
.y191{bottom:21.280000pt;}
.yf4{bottom:22.240000pt;}
.y18a{bottom:28.000000pt;}
.y102{bottom:28.040000pt;}
.y1d1{bottom:28.186667pt;}
.y18e{bottom:29.120000pt;}
.y18c{bottom:35.840000pt;}
.y104{bottom:35.880000pt;}
.y1cc{bottom:36.000000pt;}
.y1d2{bottom:36.186667pt;}
.y190{bottom:37.120000pt;}
.y1{bottom:41.120000pt;}
.y5e{bottom:41.760000pt;}
.y3{bottom:43.520000pt;}
.y1cd{bottom:43.840000pt;}
.y18b{bottom:51.680000pt;}
.y103{bottom:51.720000pt;}
.y1ce{bottom:51.840000pt;}
.y18f{bottom:52.960000pt;}
.y5d{bottom:59.680000pt;}
.y196{bottom:67.520000pt;}
.y5c{bottom:77.632000pt;}
.y1b3{bottom:98.912000pt;}
.y1c8{bottom:99.552000pt;}
.yae{bottom:105.632000pt;}
.y10e{bottom:107.712000pt;}
.y153{bottom:108.352000pt;}
.y224{bottom:109.312000pt;}
.y33{bottom:111.872000pt;}
.y1c7{bottom:112.352000pt;}
.y1e0{bottom:113.952000pt;}
.y1a3{bottom:115.392000pt;}
.y131{bottom:116.512000pt;}
.y182{bottom:116.832000pt;}
.yd7{bottom:117.152000pt;}
.y1b2{bottom:118.432000pt;}
.y16c{bottom:122.912000pt;}
.yad{bottom:125.152000pt;}
.y10d{bottom:127.232000pt;}
.y152{bottom:128.032000pt;}
.y223{bottom:128.672000pt;}
.y32{bottom:129.792000pt;}
.y1df{bottom:133.466667pt;}
.y1a2{bottom:134.906667pt;}
.y130{bottom:136.186667pt;}
.y181{bottom:136.346667pt;}
.ye8{bottom:136.666667pt;}
.y1b1{bottom:137.946667pt;}
.yd6{bottom:144.666667pt;}
.y151{bottom:147.546667pt;}
.y31{bottom:147.706667pt;}
.y16b{bottom:150.426667pt;}
.yac{bottom:152.666667pt;}
.y1a1{bottom:154.426667pt;}
.y10c{bottom:154.906667pt;}
.y12f{bottom:155.706667pt;}
.y180{bottom:155.866667pt;}
.y222{bottom:158.586667pt;}
.y1de{bottom:160.986667pt;}
.yd5{bottom:164.186667pt;}
.y1b0{bottom:164.666667pt;}
.y150{bottom:167.066667pt;}
.yab{bottom:172.186667pt;}
.y1a0{bottom:173.946667pt;}
.y12e{bottom:175.226667pt;}
.y17f{bottom:175.386667pt;}
.y1af{bottom:177.466667pt;}
.y30{bottom:177.786667pt;}
.y16a{bottom:177.946667pt;}
.y1dd{bottom:180.506667pt;}
.y10b{bottom:181.466667pt;}
.yd4{bottom:183.706667pt;}
.y14f{bottom:186.586667pt;}
.yaa{bottom:191.706667pt;}
.y19f{bottom:193.466667pt;}
.y12d{bottom:194.746667pt;}
.y10a{bottom:194.906667pt;}
.y2f{bottom:195.226667pt;}
.y221{bottom:197.306667pt;}
.y1dc{bottom:200.026667pt;}
.y17e{bottom:202.906667pt;}
.yd3{bottom:203.386667pt;}
.y169{bottom:205.466667pt;}
.y2e{bottom:211.386667pt;}
.y19e{bottom:212.986667pt;}
.y12c{bottom:214.266667pt;}
.y14e{bottom:214.746667pt;}
.y220{bottom:215.226667pt;}
.y1db{bottom:219.546667pt;}
.y17d{bottom:222.426667pt;}
.yd2{bottom:222.906667pt;}
.y109{bottom:226.426667pt;}
.y2d{bottom:227.706667pt;}
.ya9{bottom:230.906667pt;}
.y168{bottom:232.986667pt;}
.y21f{bottom:233.146667pt;}
.y12b{bottom:233.786667pt;}
.y1da{bottom:239.066667pt;}
.y19d{bottom:240.506667pt;}
.y17c{bottom:242.106667pt;}
.y106{bottom:242.266667pt;}
.yd1{bottom:242.426667pt;}
.y2c{bottom:244.026667pt;}
.y14d{bottom:244.826667pt;}
.ya8{bottom:250.426667pt;}
.y21e{bottom:250.906667pt;}
.y12a{bottom:253.306667pt;}
.y57{bottom:254.586667pt;}
.y1d9{bottom:258.586667pt;}
.y19c{bottom:260.026667pt;}
.y2b{bottom:260.186667pt;}
.y167{bottom:260.506667pt;}
.yd0{bottom:261.946667pt;}
.y21d{bottom:268.826667pt;}
.ya7{bottom:269.946667pt;}
.y17b{bottom:270.266667pt;}
.y14c{bottom:272.346667pt;}
.y129{bottom:272.826667pt;}
.y101{bottom:273.946667pt;}
.y2a{bottom:276.506667pt;}
.y1d8{bottom:278.106667pt;}
.y19b{bottom:279.546667pt;}
.ycf{bottom:281.466667pt;}
.y21c{bottom:286.746667pt;}
.y166{bottom:288.026667pt;}
.ya6{bottom:289.466667pt;}
.y14b{bottom:291.866667pt;}
.y29{bottom:292.826667pt;}
.y56{bottom:295.906667pt;}
.y19a{bottom:299.106667pt;}
.y128{bottom:300.386667pt;}
.yce{bottom:301.026667pt;}
.y21b{bottom:304.706667pt;}
.y1d7{bottom:304.866667pt;}
.ye7{bottom:309.026667pt;}
.y28{bottom:309.186667pt;}
.y55{bottom:310.626667pt;}
.y14a{bottom:311.426667pt;}
.y165{bottom:315.586667pt;}
.ya5{bottom:317.026667pt;}
.y1d6{bottom:318.306667pt;}
.y127{bottom:319.906667pt;}
.ycd{bottom:320.546667pt;}
.y21a{bottom:322.626667pt;}
.y27{bottom:325.346667pt;}
.y17a{bottom:327.106667pt;}
.y199{bottom:327.426667pt;}
.ye6{bottom:328.546667pt;}
.y149{bottom:331.106667pt;}
.y164{bottom:335.106667pt;}
.ya4{bottom:336.546667pt;}
.y100{bottom:337.186667pt;}
.y126{bottom:339.426667pt;}
.y179{bottom:339.906667pt;}
.ycc{bottom:340.066667pt;}
.y54{bottom:340.226667pt;}
.y219{bottom:340.546667pt;}
.y26{bottom:341.666667pt;}
.y1f9{bottom:348.066667pt;}
.y148{bottom:350.626667pt;}
.yff{bottom:353.026667pt;}
.y163{bottom:354.786667pt;}
.ya3{bottom:356.066667pt;}
.y53{bottom:356.546667pt;}
.y1ae{bottom:357.026667pt;}
.y198{bottom:357.506667pt;}
.y25{bottom:357.986667pt;}
.y218{bottom:358.466667pt;}
.y125{bottom:358.946667pt;}
.ycb{bottom:367.586667pt;}
.yfd{bottom:369.506667pt;}
.y147{bottom:370.146667pt;}
.y52{bottom:372.866667pt;}
.y24{bottom:374.146667pt;}
.y162{bottom:374.306667pt;}
.ya2{bottom:375.586667pt;}
.y1f8{bottom:376.226667pt;}
.y217{bottom:376.386667pt;}
.y124{bottom:378.466667pt;}
.y1ad{bottom:381.986667pt;}
.y197{bottom:384.066667pt;}
.yca{bottom:387.106667pt;}
.y51{bottom:389.026667pt;}
.yfc{bottom:389.506667pt;}
.y146{bottom:389.666667pt;}
.y23{bottom:390.466667pt;}
.y161{bottom:393.826667pt;}
.y216{bottom:394.306667pt;}
.ya1{bottom:395.106667pt;}
.y195{bottom:397.666667pt;}
.y123{bottom:397.986667pt;}
.y1ac{bottom:401.506667pt;}
.y50{bottom:405.346667pt;}
.y1f7{bottom:406.466667pt;}
.yc9{bottom:406.626667pt;}
.y22{bottom:406.786667pt;}
.y215{bottom:412.226667pt;}
.y160{bottom:413.346667pt;}
.ya0{bottom:414.626667pt;}
.y145{bottom:417.186667pt;}
.y122{bottom:417.666667pt;}
.y1ab{bottom:421.026667pt;}
.y4f{bottom:421.666667pt;}
.y21{bottom:423.106667pt;}
.y83{bottom:425.026667pt;}
.yc8{bottom:426.146667pt;}
.y214{bottom:429.986667pt;}
.y1f6{bottom:433.986667pt;}
.y9f{bottom:434.146667pt;}
.y121{bottom:437.186667pt;}
.y4e{bottom:437.826667pt;}
.y20{bottom:439.746667pt;}
.y15f{bottom:440.866667pt;}
.yfb{bottom:442.146667pt;}
.y144{bottom:443.906667pt;}
.y1d5{bottom:446.146667pt;}
.y213{bottom:447.906667pt;}
.y1c6{bottom:448.706667pt;}
.y1aa{bottom:449.346667pt;}
.y1f5{bottom:453.506667pt;}
.y9e{bottom:453.666667pt;}
.y4d{bottom:454.146667pt;}
.y82{bottom:454.466667pt;}
.y1f{bottom:455.746667pt;}
.y143{bottom:456.706667pt;}
.y15e{bottom:460.386667pt;}
.ye5{bottom:461.666667pt;}
.y120{bottom:464.706667pt;}
.y212{bottom:465.826667pt;}
.y1e{bottom:466.946667pt;}
.y4c{bottom:470.466667pt;}
.y1f4{bottom:473.026667pt;}
.y9d{bottom:473.186667pt;}
.y1c5{bottom:473.826667pt;}
.y193{bottom:476.706667pt;}
.y1a9{bottom:479.426667pt;}
.y15d{bottom:479.906667pt;}
.ye4{bottom:481.186667pt;}
.y81{bottom:483.106667pt;}
.y1d{bottom:483.266667pt;}
.y211{bottom:483.746667pt;}
.y11f{bottom:484.226667pt;}
.y4b{bottom:486.786667pt;}
.y178{bottom:489.346667pt;}
.y1f3{bottom:492.546667pt;}
.yc7{bottom:492.866667pt;}
.y1c{bottom:498.146667pt;}
.y15c{bottom:499.426667pt;}
.y1c4{bottom:500.386667pt;}
.y80{bottom:500.546667pt;}
.y9c{bottom:500.866667pt;}
.y210{bottom:501.666667pt;}
.y4a{bottom:502.946667pt;}
.y11e{bottom:503.746667pt;}
.y1a8{bottom:506.146667pt;}
.yfa{bottom:508.706667pt;}
.y1b{bottom:509.826667pt;}
.y1d0{bottom:509.986667pt;}
.yc6{bottom:512.386667pt;}
.y1c3{bottom:513.826667pt;}
.y177{bottom:514.466667pt;}
.y7f{bottom:516.866667pt;}
.y15b{bottom:518.946667pt;}
.y49{bottom:519.266667pt;}
.y20f{bottom:519.586667pt;}
.y1f2{bottom:520.066667pt;}
.y9b{bottom:520.386667pt;}
.y11d{bottom:523.266667pt;}
.y1a{bottom:528.706667pt;}
.yc5{bottom:531.906667pt;}
.y1c1{bottom:532.866667pt;}
.y7e{bottom:533.186667pt;}
.y176{bottom:533.986667pt;}
.yf9{bottom:535.426667pt;}
.y48{bottom:535.613333pt;}
.y20e{bottom:537.533333pt;}
.y15a{bottom:538.493333pt;}
.y1f1{bottom:539.613333pt;}
.y9a{bottom:539.933333pt;}
.y11c{bottom:542.813333pt;}
.y19{bottom:548.573333pt;}
.yf8{bottom:548.893333pt;}
.y7d{bottom:549.373333pt;}
.yc4{bottom:551.453333pt;}
.y47{bottom:551.773333pt;}
.y1c0{bottom:551.933333pt;}
.y20d{bottom:555.453333pt;}
.y159{bottom:558.013333pt;}
.y1cf{bottom:558.493333pt;}
.y1f0{bottom:559.133333pt;}
.y99{bottom:559.453333pt;}
.y18{bottom:560.253333pt;}
.y175{bottom:561.533333pt;}
.y11b{bottom:562.333333pt;}
.y7c{bottom:565.693333pt;}
.yf7{bottom:567.293333pt;}
.y46{bottom:568.093333pt;}
.yc3{bottom:570.973333pt;}
.y20c{bottom:573.373333pt;}
.y158{bottom:577.533333pt;}
.y1ef{bottom:578.653333pt;}
.ye3{bottom:578.973333pt;}
.y17{bottom:579.133333pt;}
.y142{bottom:580.253333pt;}
.y174{bottom:581.053333pt;}
.y11a{bottom:581.853333pt;}
.y7b{bottom:582.013333pt;}
.y45{bottom:584.413333pt;}
.yf3{bottom:585.853333pt;}
.y98{bottom:586.973333pt;}
.y1be{bottom:589.853333pt;}
.yc2{bottom:590.493333pt;}
.y1cb{bottom:590.813333pt;}
.y20b{bottom:591.293333pt;}
.y1ee{bottom:598.173333pt;}
.y7a{bottom:598.333333pt;}
.ye2{bottom:598.493333pt;}
.y16{bottom:599.133333pt;}
.y173{bottom:600.573333pt;}
.y44{bottom:600.893333pt;}
.y18d{bottom:603.133333pt;}
.y157{bottom:604.253333pt;}
.y141{bottom:605.213333pt;}
.y97{bottom:606.493333pt;}
.y1bd{bottom:608.893333pt;}
.y20a{bottom:609.053333pt;}
.y119{bottom:610.013333pt;}
.y15{bottom:610.813333pt;}
.y79{bottom:614.493333pt;}
.y43{bottom:617.053333pt;}
.y1ed{bottom:617.693333pt;}
.yc1{bottom:618.013333pt;}
.yf2{bottom:620.893333pt;}
.y96{bottom:626.013333pt;}
.y209{bottom:626.973333pt;}
.y1bc{bottom:627.933333pt;}
.y14{bottom:628.573333pt;}
.y172{bottom:628.893333pt;}
.y78{bottom:630.813333pt;}
.y118{bottom:632.253333pt;}
.y140{bottom:632.733333pt;}
.y42{bottom:633.373333pt;}
.yc0{bottom:637.533333pt;}
.yf1{bottom:639.453333pt;}
.y156{bottom:642.173333pt;}
.y208{bottom:644.893333pt;}
.y1ec{bottom:645.213333pt;}
.y95{bottom:645.533333pt;}
.y77{bottom:647.133333pt;}
.y13{bottom:647.613333pt;}
.y41{bottom:649.693333pt;}
.y13f{bottom:652.253333pt;}
.ybf{bottom:657.053333pt;}
.yf0{bottom:657.853333pt;}
.y117{bottom:658.813333pt;}
.y171{bottom:659.613333pt;}
.y207{bottom:662.813333pt;}
.y76{bottom:663.453333pt;}
.y1eb{bottom:664.733333pt;}
.y94{bottom:665.053333pt;}
.y40{bottom:666.013333pt;}
.y12{bottom:667.453333pt;}
.y189{bottom:668.733333pt;}
.y1ca{bottom:670.653333pt;}
.y1bb{bottom:670.813333pt;}
.y13e{bottom:671.933333pt;}
.y116{bottom:672.253333pt;}
.yef{bottom:676.253333pt;}
.ybe{bottom:676.573333pt;}
.y11{bottom:679.133333pt;}
.y75{bottom:679.613333pt;}
.y206{bottom:680.733333pt;}
.y3f{bottom:682.173333pt;}
.y1ea{bottom:684.253333pt;}
.y93{bottom:684.573333pt;}
.y114{bottom:689.853333pt;}
.y170{bottom:690.493333pt;}
.yed{bottom:695.453333pt;}
.y74{bottom:695.933333pt;}
.ybd{bottom:696.093333pt;}
.y10{bottom:698.013333pt;}
.y3e{bottom:698.493333pt;}
.y205{bottom:698.653333pt;}
.y13d{bottom:699.453333pt;}
.y1e9{bottom:703.933333pt;}
.ye1{bottom:704.093333pt;}
.y1c9{bottom:706.653333pt;}
.y113{bottom:707.613333pt;}
.y92{bottom:712.093333pt;}
.y73{bottom:712.253333pt;}
.y3d{bottom:714.813333pt;}
.y1ba{bottom:715.453333pt;}
.ybc{bottom:715.613333pt;}
.y204{bottom:716.573333pt;}
.yf{bottom:717.853333pt;}
.yec{bottom:718.173333pt;}
.y13c{bottom:718.973333pt;}
.y16f{bottom:719.613333pt;}
.y1e8{bottom:723.453333pt;}
.ye0{bottom:723.613333pt;}
.y112{bottom:725.213333pt;}
.y72{bottom:728.413333pt;}
.ye{bottom:729.533333pt;}
.y3c{bottom:730.973333pt;}
.y91{bottom:731.613333pt;}
.y187{bottom:732.573333pt;}
.y16e{bottom:733.693333pt;}
.y203{bottom:734.493333pt;}
.y1b9{bottom:734.973333pt;}
.ybb{bottom:735.133333pt;}
.y13b{bottom:738.493333pt;}
.y1a7{bottom:742.493333pt;}
.y1e7{bottom:742.973333pt;}
.ydf{bottom:743.133333pt;}
.y110{bottom:743.453333pt;}
.y71{bottom:745.213333pt;}
.y3b{bottom:747.293333pt;}
.yd{bottom:747.453333pt;}
.y90{bottom:751.133333pt;}
.y202{bottom:752.413333pt;}
.y1b8{bottom:754.493333pt;}
.yba{bottom:754.653333pt;}
.y13a{bottom:758.013333pt;}
.y1e6{bottom:762.493333pt;}
.y3a{bottom:763.613333pt;}
.y10f{bottom:765.213333pt;}
.yc{bottom:766.333333pt;}
.y1a6{bottom:766.653333pt;}
.y186{bottom:768.413333pt;}
.y201{bottom:770.333333pt;}
.y8f{bottom:770.653333pt;}
.y1b7{bottom:774.053333pt;}
.y70{bottom:775.173333pt;}
.y39{bottom:779.973333pt;}
.yb9{bottom:782.373333pt;}
.y139{bottom:785.573333pt;}
.y200{bottom:788.133333pt;}
.y1e5{bottom:790.053333pt;}
.y8e{bottom:790.373333pt;}
.y1a5{bottom:791.013333pt;}
.yb{bottom:791.493333pt;}
.y6f{bottom:792.613333pt;}
.y185{bottom:793.573333pt;}
.y38{bottom:796.133333pt;}
.y1b6{bottom:801.573333pt;}
.yb8{bottom:801.893333pt;}
.y1a4{bottom:803.813333pt;}
.y138{bottom:805.093333pt;}
.y1ff{bottom:806.053333pt;}
.y6e{bottom:808.933333pt;}
.y1e4{bottom:809.573333pt;}
.yde{bottom:809.893333pt;}
.y37{bottom:812.453333pt;}
.ya{bottom:814.373333pt;}
.y8d{bottom:817.893333pt;}
.y184{bottom:821.093333pt;}
.y1fe{bottom:823.973333pt;}
.y137{bottom:824.613333pt;}
.y6d{bottom:825.253333pt;}
.y36{bottom:828.773333pt;}
.y1e3{bottom:829.093333pt;}
.ydd{bottom:829.413333pt;}
.yb7{bottom:830.053333pt;}
.y22d{bottom:836.773333pt;}
.y9{bottom:837.093333pt;}
.y8c{bottom:837.413333pt;}
.y183{bottom:840.613333pt;}
.y6c{bottom:841.573333pt;}
.y1fd{bottom:841.893333pt;}
.y136{bottom:844.133333pt;}
.y35{bottom:845.093333pt;}
.y1e2{bottom:848.613333pt;}
.ydc{bottom:848.933333pt;}
.y22c{bottom:854.533333pt;}
.y8b{bottom:856.933333pt;}
.y6b{bottom:857.733333pt;}
.y1fc{bottom:859.813333pt;}
.y8{bottom:859.973333pt;}
.yb6{bottom:860.133333pt;}
.y1e1{bottom:868.133333pt;}
.ydb{bottom:868.453333pt;}
.y135{bottom:871.653333pt;}
.y22b{bottom:872.453333pt;}
.y6a{bottom:874.053333pt;}
.y8a{bottom:876.453333pt;}
.yeb{bottom:877.093333pt;}
.y1fb{bottom:877.733333pt;}
.y1b5{bottom:879.653333pt;}
.y7{bottom:887.493333pt;}
.yb5{bottom:887.653333pt;}
.yda{bottom:887.973333pt;}
.y155{bottom:890.053333pt;}
.y69{bottom:890.373333pt;}
.y134{bottom:891.173333pt;}
.y89{bottom:895.973333pt;}
.y1fa{bottom:896.613333pt;}
.y1b4{bottom:899.173333pt;}
.y68{bottom:906.693333pt;}
.yb4{bottom:907.173333pt;}
.y22a{bottom:908.293333pt;}
.y154{bottom:915.173333pt;}
.yd9{bottom:916.133333pt;}
.y133{bottom:918.693333pt;}
.y67{bottom:922.853333pt;}
.y88{bottom:923.493333pt;}
.y229{bottom:926.213333pt;}
.yb3{bottom:926.693333pt;}
.y6{bottom:929.893333pt;}
.yea{bottom:934.693333pt;}
.y132{bottom:938.213333pt;}
.y66{bottom:939.173333pt;}
.y87{bottom:943.013333pt;}
.yb2{bottom:946.213333pt;}
.ye9{bottom:954.213333pt;}
.y65{bottom:955.493333pt;}
.y228{bottom:956.133333pt;}
.y86{bottom:962.533333pt;}
.yb1{bottom:965.733333pt;}
.y64{bottom:971.653333pt;}
.y5{bottom:972.133333pt;}
.yd8{bottom:973.733333pt;}
.y227{bottom:975.493333pt;}
.y85{bottom:982.053333pt;}
.y63{bottom:987.973333pt;}
.yb0{bottom:993.413333pt;}
.y226{bottom:994.853333pt;}
.y62{bottom:1004.773333pt;}
.y84{bottom:1010.373333pt;}
.yaf{bottom:1012.960000pt;}
.y225{bottom:1014.240000pt;}
.y4{bottom:1014.560000pt;}
.y16d{bottom:1015.360000pt;}
.y61{bottom:1022.720000pt;}
.y5b{bottom:1040.320000pt;}
.y5f{bottom:1047.040000pt;}
.y5a{bottom:1058.720000pt;}
.y59{bottom:1074.880000pt;}
.y58{bottom:1091.040000pt;}
.h1e{height:15.840000pt;}
.h23{height:17.600000pt;}
.h24{height:17.760000pt;}
.h1b{height:18.400000pt;}
.h1c{height:18.560000pt;}
.h2b{height:18.880000pt;}
.h2a{height:19.040000pt;}
.h2c{height:19.072000pt;}
.h21{height:31.520000pt;}
.h20{height:31.680000pt;}
.hb{height:31.828125pt;}
.hd{height:32.765625pt;}
.h1d{height:35.040000pt;}
.h13{height:40.566250pt;}
.h26{height:42.649687pt;}
.h11{height:44.897813pt;}
.h18{height:44.965000pt;}
.h10{height:46.039063pt;}
.h12{height:46.116875pt;}
.h2f{height:47.520000pt;}
.h2e{height:47.712000pt;}
.h14{height:47.742188pt;}
.h4{height:50.887500pt;}
.h16{height:51.031250pt;}
.h15{height:51.117500pt;}
.h2{height:52.834688pt;}
.hc{height:54.390938pt;}
.h22{height:55.468750pt;}
.h7{height:57.183750pt;}
.ha{height:58.563750pt;}
.he{height:60.288750pt;}
.h19{height:60.519362pt;}
.h27{height:63.200000pt;}
.h1f{height:63.232000pt;}
.h1a{height:63.656250pt;}
.h8{height:65.003750pt;}
.h2d{height:65.531250pt;}
.h28{height:65.600000pt;}
.h25{height:65.781915pt;}
.h17{height:69.120000pt;}
.h9{height:76.671562pt;}
.h29{height:79.040000pt;}
.h3{height:84.512000pt;}
.h5{height:120.367188pt;}
.h6{height:127.312500pt;}
.hf{height:1112.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:80.032000pt;}
.we{width:91.520000pt;}
.w19{width:94.720000pt;}
.w15{width:95.872000pt;}
.wf{width:103.232000pt;}
.w10{width:103.360000pt;}
.wc{width:104.032000pt;}
.w16{width:105.792000pt;}
.w17{width:110.720000pt;}
.w18{width:111.232000pt;}
.wd{width:114.752000pt;}
.w8{width:124.352000pt;}
.w13{width:129.472000pt;}
.wb{width:132.032000pt;}
.w6{width:137.626667pt;}
.w5{width:157.786653pt;}
.w4{width:158.106643pt;}
.w14{width:184.026667pt;}
.wa{width:204.346667pt;}
.w12{width:234.586667pt;}
.w9{width:240.026667pt;}
.w11{width:289.986667pt;}
.w7{width:429.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:4.640000pt;}
.x68{left:8.320000pt;}
.x53{left:9.440000pt;}
.x24{left:13.759976pt;}
.x6f{left:17.120000pt;}
.x3e{left:18.400000pt;}
.x55{left:19.360000pt;}
.x6a{left:20.800000pt;}
.x45{left:21.920000pt;}
.x57{left:24.160000pt;}
.x3{left:25.920000pt;}
.x6c{left:28.160000pt;}
.x46{left:36.800000pt;}
.x3c{left:42.234667pt;}
.x42{left:44.680000pt;}
.x36{left:46.714667pt;}
.x60{left:48.960000pt;}
.x48{left:49.946667pt;}
.x72{left:51.200000pt;}
.x61{left:52.826667pt;}
.x71{left:53.760000pt;}
.x47{left:55.200000pt;}
.x2a{left:59.039976pt;}
.x28{left:61.439976pt;}
.x23{left:64.799976pt;}
.x29{left:66.079976pt;}
.x22{left:67.679976pt;}
.x31{left:75.679988pt;}
.x62{left:76.840000pt;}
.x63{left:80.200000pt;}
.x5d{left:88.800000pt;}
.x1e{left:90.431976pt;}
.x21{left:91.391976pt;}
.x1b{left:93.951976pt;}
.x1c{left:95.551976pt;}
.x1d{left:97.791976pt;}
.x26{left:102.111976pt;}
.x59{left:104.506667pt;}
.x27{left:108.031976pt;}
.x20{left:111.871976pt;}
.x1{left:113.471988pt;}
.x2b{left:121.471976pt;}
.x34{left:122.911988pt;}
.x25{left:128.191976pt;}
.x32{left:133.466653pt;}
.x5c{left:146.586667pt;}
.x1f{left:148.506643pt;}
.x30{left:160.666655pt;}
.x69{left:162.266667pt;}
.x19{left:170.266655pt;}
.x4d{left:175.066655pt;}
.x8{left:180.826655pt;}
.x38{left:183.066667pt;}
.x49{left:184.666655pt;}
.x54{left:185.946667pt;}
.xa{left:186.906655pt;}
.x2e{left:190.586655pt;}
.x4{left:192.186655pt;}
.x2c{left:194.426655pt;}
.x64{left:196.826655pt;}
.x33{left:207.866655pt;}
.x2d{left:215.226655pt;}
.x4f{left:222.106655pt;}
.x1a{left:226.906655pt;}
.x5{left:229.786655pt;}
.x4a{left:232.026655pt;}
.x52{left:233.146655pt;}
.x50{left:234.266655pt;}
.x41{left:245.146667pt;}
.x3d{left:247.266667pt;}
.x7{left:252.866655pt;}
.x6{left:254.946655pt;}
.xb{left:258.946655pt;}
.x37{left:260.546667pt;}
.x67{left:267.426655pt;}
.x6b{left:268.546667pt;}
.x56{left:289.186667pt;}
.x40{left:300.386655pt;}
.x3b{left:303.266655pt;}
.x5b{left:306.946655pt;}
.x4b{left:315.426655pt;}
.x5a{left:324.866655pt;}
.x3a{left:328.706655pt;}
.x35{left:334.306655pt;}
.x66{left:344.386655pt;}
.x43{left:377.186667pt;}
.x6d{left:379.586667pt;}
.x5e{left:381.186667pt;}
.x58{left:392.546667pt;}
.x2f{left:415.293322pt;}
.x3f{left:420.573322pt;}
.x6e{left:475.773333pt;}
.x44{left:481.213333pt;}
.x13{left:487.293322pt;}
.xe{left:499.293322pt;}
.xc{left:506.973322pt;}
.x12{left:508.893322pt;}
.x5f{left:510.653333pt;}
.x11{left:512.413322pt;}
.x15{left:515.293322pt;}
.xd{left:533.373322pt;}
.x9{left:541.213322pt;}
.x17{left:544.413322pt;}
.x14{left:568.733322pt;}
.x16{left:581.053322pt;}
.x10{left:583.173322pt;}
.x70{left:587.333333pt;}
.x18{left:590.213322pt;}
.x4e{left:609.573322pt;}
.x4c{left:628.613322pt;}
.x65{left:635.973322pt;}
.x51{left:647.493322pt;}
.xf{left:680.453322pt;}
.x2{left:697.093333pt;}
}




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