
    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_13c914d2759ed2678d679cee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.853027;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_7213c39ce651b4ac633e7fdb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.894043;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_7db65aa5b19289c933ec7666.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_68748510d4d2b8a7f9d3aed3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.766602;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_798160afa60bde5952d4888c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_8649e8fb38b9683be90161dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.749512;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_f89a31aca323914e12892cef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_b481445b446c7fe9ecece21d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_88bb454280d8556ebf0e68be.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_0452fc89910858c005921e54.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_96c0bf6742df86d6fdba8db6.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_22c48e7ee1f88df57b9aa802.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_4a8b2c543ead3d664b4669a6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fdcb8f9e865a702a04573e5c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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_c3936fd6b647866b1e1bbde6.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-116.820000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.089280px;}
.ls10{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144000px;}
.lse{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.ls1d{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.256200px;}
.ls27{letter-spacing:0.259800px;}
.ls23{letter-spacing:0.259920px;}
.ls2b{letter-spacing:0.262080px;}
.ls2{letter-spacing:0.287280px;}
.lsa{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.379920px;}
.ls8{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.648000px;}
.ls29{letter-spacing:0.666720px;}
.ls1e{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.840000px;}
.lsd{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.512000px;}
.ls2d{letter-spacing:1.794240px;}
.ls2e{letter-spacing:2.514240px;}
.ls25{letter-spacing:17.280000px;}
.ls3{letter-spacing:33.984000px;}
.ls1f{letter-spacing:51.984000px;}
.lsb{letter-spacing:54.864000px;}
.ls31{letter-spacing:65.664000px;}
.ls2c{letter-spacing:67.265280px;}
.ls1b{letter-spacing:111.744000px;}
.ls1c{letter-spacing:116.064000px;}
.ls1a{letter-spacing:131.880000px;}
.ls2a{letter-spacing:141.960000px;}
.ls19{letter-spacing:152.040000px;}
.ls0{letter-spacing:2533.536000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws19{word-spacing:-66.240000px;}
.ws15{word-spacing:-18.720000px;}
.wse{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws1b{word-spacing:-17.280000px;}
.wsc{word-spacing:-17.208000px;}
.ws1a{word-spacing:-17.172000px;}
.ws16{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.254600px;}
.ws10{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.226440px;}
.ws13{word-spacing:-15.146400px;}
.wsb{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.ws14{word-spacing:-14.580000px;}
.ws12{word-spacing:-12.420000px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-10.369200px;}
._17{margin-left:-5.287920px;}
._7{margin-left:-4.140000px;}
._2c{margin-left:-2.395440px;}
._0{margin-left:-1.122720px;}
._1{width:1.015920px;}
._2{width:2.371440px;}
._21{width:3.538800px;}
._1f{width:4.681440px;}
._1d{width:5.688000px;}
._1e{width:6.816000px;}
._23{width:8.106720px;}
._24{width:9.648000px;}
._25{width:10.872000px;}
._1b{width:11.922720px;}
._20{width:13.104000px;}
._1c{width:14.514240px;}
._2b{width:15.549360px;}
._2a{width:16.560000px;}
._41{width:17.623200px;}
._29{width:19.026720px;}
._14{width:20.028000px;}
._22{width:21.156000px;}
._26{width:22.176000px;}
._27{width:23.208000px;}
._d{width:24.372000px;}
._28{width:25.710720px;}
._2e{width:27.108000px;}
._36{width:28.116000px;}
._33{width:29.178720px;}
._31{width:30.216000px;}
._32{width:31.396080px;}
._2d{width:32.976000px;}
._30{width:34.219440px;}
._6{width:35.460000px;}
._40{width:36.540000px;}
._2f{width:37.646160px;}
._3c{width:39.240000px;}
._3d{width:40.528080px;}
._3e{width:41.618400px;}
._3b{width:42.898800px;}
._3a{width:43.968000px;}
._34{width:48.024000px;}
._35{width:49.036080px;}
._3f{width:50.574720px;}
._13{width:52.428000px;}
._1a{width:55.404000px;}
._c{width:60.228000px;}
._16{width:63.948000px;}
._18{width:75.348000px;}
._9{width:92.268000px;}
._b{width:112.356000px;}
._8{width:115.380000px;}
._a{width:128.196000px;}
._3{width:135.396000px;}
._15{width:138.468000px;}
._f{width:142.102800px;}
._19{width:155.412000px;}
._11{width:177.354720px;}
._10{width:179.398800px;}
._12{width:181.954800px;}
._e{width:190.800000px;}
._4{width:194.400000px;}
._39{width:683.398800px;}
._37{width:827.395680px;}
._38{width:858.539280px;}
.fc2{color:transparent;}
.fc1{color:rgb(192,0,0);}
.fc5{color:rgb(48,48,48);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:62.991941px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:144.000000px;}
.fs0{font-size:216.000000px;}
.y153{bottom:-19.980000px;}
.y192{bottom:-17.647500px;}
.y115{bottom:-13.860000px;}
.y0{bottom:0.000000px;}
.y1a5{bottom:3.780000px;}
.y17{bottom:5.925000px;}
.ycf{bottom:16.905000px;}
.yc9{bottom:16.920000px;}
.ycc{bottom:17.085000px;}
.y113{bottom:17.100000px;}
.y1a3{bottom:17.130000px;}
.y17c{bottom:21.060000px;}
.y1f4{bottom:22.312500px;}
.y152{bottom:23.580000px;}
.y191{bottom:25.186500px;}
.y16{bottom:26.625000px;}
.y15{bottom:48.450000px;}
.y151{bottom:49.680000px;}
.y19{bottom:57.600000px;}
.y1f3{bottom:65.146500px;}
.y190{bottom:66.046500px;}
.y14{bottom:70.230000px;}
.y150{bottom:75.420000px;}
.y18{bottom:77.796000px;}
.y1f2{bottom:91.246500px;}
.y13{bottom:92.010000px;}
.y18f{bottom:92.146500px;}
.y1ee{bottom:94.903500px;}
.y14f{bottom:102.780000px;}
.yc7{bottom:111.096000px;}
.y18a{bottom:111.816000px;}
.yb6{bottom:113.436000px;}
.y50{bottom:115.596000px;}
.y7f{bottom:115.956000px;}
.y1f1{bottom:117.166500px;}
.ydb{bottom:117.576000px;}
.y18e{bottom:118.066500px;}
.y30{bottom:119.376000px;}
.y1da{bottom:131.076000px;}
.y14e{bottom:131.250000px;}
.y11{bottom:132.696000px;}
.y17b{bottom:134.136000px;}
.y18b{bottom:134.503500px;}
.y233{bottom:134.676000px;}
.y205{bottom:136.836000px;}
.y68{bottom:139.896000px;}
.y100{bottom:140.076000px;}
.y16a{bottom:140.256000px;}
.y146{bottom:141.696000px;}
.y265{bottom:141.876000px;}
.yc6{bottom:142.056000px;}
.y189{bottom:142.776000px;}
.y18d{bottom:143.806500px;}
.yb5{bottom:144.576000px;}
.y4f{bottom:146.556000px;}
.y7e{bottom:146.916000px;}
.y1b3{bottom:147.276000px;}
.y87{bottom:147.636000px;}
.yda{bottom:148.716000px;}
.y212{bottom:148.896000px;}
.y120{bottom:150.690000px;}
.y1c3{bottom:152.130000px;}
.y2f{bottom:155.550000px;}
.y10{bottom:156.810000px;}
.y14d{bottom:157.170000px;}
.y1f0{bottom:157.846500px;}
.y1a1{bottom:158.610000px;}
.y1d9{bottom:162.210000px;}
.y232{bottom:163.110000px;}
.y71{bottom:163.650000px;}
.y17a{bottom:165.270000px;}
.yff{bottom:166.170000px;}
.y204{bottom:167.790000px;}
.y67{bottom:170.850000px;}
.y169{bottom:171.390000px;}
.y1c6{bottom:172.305000px;}
.y145{bottom:172.650000px;}
.y264{bottom:173.010000px;}
.yc5{bottom:173.190000px;}
.y24f{bottom:173.550000px;}
.yb4{bottom:175.530000px;}
.y4e{bottom:177.690000px;}
.y7d{bottom:178.050000px;}
.y1b2{bottom:178.410000px;}
.y84{bottom:178.590000px;}
.y111{bottom:178.770000px;}
.yd9{bottom:179.670000px;}
.yf{bottom:180.930000px;}
.y14c{bottom:183.090000px;}
.y1ef{bottom:183.946500px;}
.y18c{bottom:184.486500px;}
.y188{bottom:188.850000px;}
.y1a0{bottom:189.570000px;}
.y1c2{bottom:191.190000px;}
.y231{bottom:192.090000px;}
.y1d8{bottom:193.170000px;}
.y211{bottom:194.970000px;}
.y179{bottom:196.230000px;}
.y9f{bottom:196.770000px;}
.y2e{bottom:196.950000px;}
.y203{bottom:198.930000px;}
.y66{bottom:201.990000px;}
.y144{bottom:203.790000px;}
.y263{bottom:203.970000px;}
.y24e{bottom:204.690000px;}
.yfe{bottom:206.850000px;}
.y14b{bottom:208.830000px;}
.y7c{bottom:209.010000px;}
.y1b1{bottom:209.370000px;}
.y70{bottom:209.730000px;}
.yd8{bottom:210.810000px;}
.y4d{bottom:213.870000px;}
.y168{bottom:217.470000px;}
.yc4{bottom:218.730000px;}
.y19f{bottom:220.710000px;}
.yb3{bottom:221.610000px;}
.y230{bottom:221.970000px;}
.y1d7{bottom:224.310000px;}
.y110{bottom:224.670000px;}
.yf3{bottom:224.850000px;}
.y9e{bottom:227.910000px;}
.ye{bottom:228.450000px;}
.y202{bottom:229.890000px;}
.y65{bottom:232.950000px;}
.y143{bottom:234.750000px;}
.y187{bottom:234.930000px;}
.y262{bottom:235.290000px;}
.y24d{bottom:235.650000px;}
.y2d{bottom:238.350000px;}
.y178{bottom:239.790000px;}
.y17f{bottom:239.985000px;}
.y7b{bottom:240.150000px;}
.y1b0{bottom:240.510000px;}
.y6f{bottom:240.690000px;}
.y210{bottom:240.870000px;}
.ye3{bottom:241.770000px;}
.y11f{bottom:242.850000px;}
.y167{bottom:248.430000px;}
.y22f{bottom:250.410000px;}
.y19e{bottom:251.670000px;}
.yb2{bottom:252.750000px;}
.y4c{bottom:255.090000px;}
.y1d6{bottom:255.270000px;}
.yf2{bottom:255.810000px;}
.yd7{bottom:256.710000px;}
.y9d{bottom:258.870000px;}
.y14a{bottom:260.670000px;}
.y201{bottom:261.030000px;}
.yc3{bottom:262.830000px;}
.y12c{bottom:264.090000px;}
.y142{bottom:265.890000px;}
.y261{bottom:266.430000px;}
.y24c{bottom:267.150000px;}
.y10f{bottom:270.750000px;}
.y7a{bottom:271.110000px;}
.y1af{bottom:271.470000px;}
.y64{bottom:271.830000px;}
.ye2{bottom:272.910000px;}
.y11e{bottom:273.810000px;}
.y2c{bottom:274.530000px;}
.y177{bottom:278.670000px;}
.y22e{bottom:278.850000px;}
.y166{bottom:279.570000px;}
.y186{bottom:281.010000px;}
.yd{bottom:281.370000px;}
.y19d{bottom:282.990000px;}
.yb1{bottom:283.710000px;}
.ycd{bottom:285.165000px;}
.yce{bottom:285.345000px;}
.ycb{bottom:285.885000px;}
.y149{bottom:286.590000px;}
.yf1{bottom:286.950000px;}
.yd6{bottom:287.850000px;}
.y12{bottom:291.465000px;}
.y200{bottom:291.990000px;}
.y12b{bottom:295.050000px;}
.y4b{bottom:296.490000px;}
.y141{bottom:296.850000px;}
.y260{bottom:297.750000px;}
.y24b{bottom:298.110000px;}
.y1d5{bottom:301.350000px;}
.yc2{bottom:301.530000px;}
.y10e{bottom:301.890000px;}
.y1ae{bottom:302.610000px;}
.y63{bottom:302.790000px;}
.ye1{bottom:303.870000px;}
.y9c{bottom:304.950000px;}
.y2b{bottom:305.670000px;}
.y1c1{bottom:306.390000px;}
.y22d{bottom:307.290000px;}
.y148{bottom:312.330000px;}
.y19c{bottom:314.310000px;}
.yb0{bottom:314.850000px;}
.y79{bottom:317.190000px;}
.yf0{bottom:317.910000px;}
.yd5{bottom:318.810000px;}
.y165{bottom:323.130000px;}
.y12a{bottom:326.190000px;}
.y185{bottom:327.090000px;}
.y140{bottom:328.035000px;}
.y25f{bottom:328.935000px;}
.y24a{bottom:329.475000px;}
.y16c{bottom:331.995000px;}
.y1d4{bottom:332.535000px;}
.y4a{bottom:332.895000px;}
.y20f{bottom:333.075000px;}
.y1ad{bottom:333.615000px;}
.y62{bottom:333.975000px;}
.ye0{bottom:335.055000px;}
.y22c{bottom:335.775000px;}
.y9b{bottom:335.955000px;}
.y2a{bottom:336.675000px;}
.y1c0{bottom:337.395000px;}
.yaf{bottom:345.855000px;}
.y78{bottom:348.375000px;}
.yef{bottom:348.915000px;}
.yd4{bottom:349.995000px;}
.y1ff{bottom:354.135000px;}
.y129{bottom:357.195000px;}
.y13f{bottom:358.995000px;}
.y25e{bottom:360.255000px;}
.y19b{bottom:360.435000px;}
.y249{bottom:360.615000px;}
.y164{bottom:362.055000px;}
.yc{bottom:363.495000px;}
.y49{bottom:363.855000px;}
.y10d{bottom:364.035000px;}
.y22b{bottom:364.215000px;}
.y1ac{bottom:364.755000px;}
.y61{bottom:364.935000px;}
.ydf{bottom:366.015000px;}
.y9a{bottom:367.095000px;}
.y29{bottom:367.815000px;}
.y1bf{bottom:368.355000px;}
.y184{bottom:373.035000px;}
.y20e{bottom:379.155000px;}
.yee{bottom:380.055000px;}
.yd3{bottom:380.955000px;}
.y1fe{bottom:385.275000px;}
.y13e{bottom:390.135000px;}
.y19a{bottom:391.395000px;}
.yae{bottom:391.575000px;}
.y77{bottom:391.935000px;}
.y22a{bottom:392.655000px;}
.y1d3{bottom:394.635000px;}
.y48{bottom:394.995000px;}
.y60{bottom:396.075000px;}
.yde{bottom:397.155000px;}
.y131{bottom:398.055000px;}
.y1be{bottom:399.495000px;}
.y176{bottom:402.915000px;}
.y128{bottom:403.275000px;}
.y28{bottom:403.995000px;}
.yb{bottom:405.435000px;}
.y17e{bottom:405.615000px;}
.y1ab{bottom:408.315000px;}
.yd2{bottom:412.095000px;}
.y99{bottom:413.175000px;}
.y1fd{bottom:416.235000px;}
.y183{bottom:419.115000px;}
.y13d{bottom:421.095000px;}
.y25d{bottom:422.355000px;}
.y199{bottom:422.535000px;}
.yad{bottom:422.895000px;}
.y248{bottom:423.075000px;}
.y20d{bottom:425.235000px;}
.y1d2{bottom:425.595000px;}
.y47{bottom:425.955000px;}
.yed{bottom:426.135000px;}
.y5f{bottom:427.035000px;}
.ydd{bottom:428.115000px;}
.y76{bottom:432.795000px;}
.y127{bottom:434.415000px;}
.y175{bottom:441.795000px;}
.yd1{bottom:443.055000px;}
.y98{bottom:444.135000px;}
.y27{bottom:444.855000px;}
.y1fc{bottom:447.375000px;}
.y229{bottom:449.535000px;}
.y1ed{bottom:449.895000px;}
.ya{bottom:450.795000px;}
.y13c{bottom:452.235000px;}
.y25c{bottom:453.315000px;}
.y198{bottom:453.495000px;}
.yac{bottom:454.035000px;}
.y1d1{bottom:456.555000px;}
.y46{bottom:457.095000px;}
.y5e{bottom:458.175000px;}
.y182{bottom:465.015000px;}
.y126{bottom:465.375000px;}
.yc1{bottom:466.275000px;}
.y1c5{bottom:467.895000px;}
.y20c{bottom:471.135000px;}
.y9{bottom:471.315000px;}
.y75{bottom:471.675000px;}
.y86{bottom:473.115000px;}
.ydc{bottom:473.835000px;}
.y104{bottom:474.195000px;}
.y1aa{bottom:475.095000px;}
.y97{bottom:475.275000px;}
.y1fb{bottom:475.995000px;}
.y228{bottom:478.155000px;}
.y163{bottom:480.675000px;}
.y1ec{bottom:481.035000px;}
.y1bd{bottom:481.935000px;}
.y25b{bottom:484.815000px;}
.y147{bottom:485.175000px;}
.y247{bottom:485.535000px;}
.yab{bottom:486.435000px;}
.y26{bottom:486.795000px;}
.y130{bottom:487.695000px;}
.y45{bottom:488.055000px;}
.yec{bottom:488.235000px;}
.y5d{bottom:489.135000px;}
.y125{bottom:496.515000px;}
.yc0{bottom:497.415000px;}
.y13b{bottom:498.135000px;}
.y197{bottom:499.575000px;}
.y10c{bottom:500.655000px;}
.y1fa{bottom:501.915000px;}
.y132{bottom:503.715000px;}
.y133{bottom:504.075000px;}
.y85{bottom:504.255000px;}
.y103{bottom:505.155000px;}
.y96{bottom:506.235000px;}
.y227{bottom:506.595000px;}
.y181{bottom:508.035000px;}
.y1eb{bottom:511.995000px;}
.y114{bottom:512.535000px;}
.y112{bottom:513.075000px;}
.y8{bottom:513.975000px;}
.y25a{bottom:515.775000px;}
.y246{bottom:516.495000px;}
.y20b{bottom:517.215000px;}
.yaa{bottom:518.655000px;}
.y44{bottom:519.195000px;}
.y5c{bottom:520.275000px;}
.y193{bottom:523.155000px;}
.y12f{bottom:526.395000px;}
.y162{bottom:526.755000px;}
.y124{bottom:527.475000px;}
.y25{bottom:527.655000px;}
.y1f9{bottom:527.835000px;}
.ybf{bottom:528.375000px;}
.y196{bottom:530.715000px;}
.y226{bottom:535.035000px;}
.y6e{bottom:535.215000px;}
.y102{bottom:536.295000px;}
.y95{bottom:537.375000px;}
.y10b{bottom:539.535000px;}
.y1ea{bottom:543.135000px;}
.y13a{bottom:544.215000px;}
.y180{bottom:546.735000px;}
.y174{bottom:546.915000px;}
.y259{bottom:547.275000px;}
.y245{bottom:547.455000px;}
.y1d0{bottom:549.795000px;}
.y43{bottom:550.155000px;}
.yeb{bottom:550.335000px;}
.ya9{bottom:551.055000px;}
.y5b{bottom:551.235000px;}
.y1f8{bottom:553.755000px;}
.y161{bottom:557.715000px;}
.y123{bottom:558.615000px;}
.ybe{bottom:559.515000px;}
.y20a{bottom:563.295000px;}
.y225{bottom:563.475000px;}
.y6d{bottom:566.355000px;}
.y101{bottom:567.255000px;}
.y94{bottom:568.335000px;}
.y24{bottom:569.595000px;}
.y1e9{bottom:574.095000px;}
.y195{bottom:574.275000px;}
.y173{bottom:578.055000px;}
.y258{bottom:578.235000px;}
.y244{bottom:578.955000px;}
.y42{bottom:581.295000px;}
.y5a{bottom:582.375000px;}
.y11d{bottom:583.275000px;}
.y160{bottom:588.855000px;}
.y139{bottom:590.295000px;}
.ybd{bottom:590.475000px;}
.yfd{bottom:590.655000px;}
.y224{bottom:591.915000px;}
.y1f7{bottom:592.455000px;}
.y1a2{bottom:594.435000px;}
.y1a4{bottom:595.005000px;}
.y1cf{bottom:595.905000px;}
.y7{bottom:596.445000px;}
.y6c{bottom:597.345000px;}
.ya8{bottom:598.425000px;}
.y122{bottom:602.205000px;}
.y1e8{bottom:605.265000px;}
.y209{bottom:606.885000px;}
.y172{bottom:609.045000px;}
.y257{bottom:609.585000px;}
.y243{bottom:609.945000px;}
.y23{bottom:610.845000px;}
.y41{bottom:612.285000px;}
.yea{bottom:612.465000px;}
.y194{bottom:613.185000px;}
.y59{bottom:613.365000px;}
.y93{bottom:614.445000px;}
.y15f{bottom:619.845000px;}
.y223{bottom:620.385000px;}
.ybc{bottom:621.645000px;}
.yfc{bottom:621.825000px;}
.y1ce{bottom:626.865000px;}
.y6b{bottom:628.305000px;}
.ya7{bottom:629.385000px;}
.y208{bottom:632.985000px;}
.y1e7{bottom:636.225000px;}
.y138{bottom:636.405000px;}
.y12e{bottom:636.765000px;}
.y171{bottom:640.185000px;}
.y26f{bottom:640.725000px;}
.y121{bottom:640.905000px;}
.y242{bottom:641.085000px;}
.y40{bottom:643.425000px;}
.y58{bottom:644.505000px;}
.y92{bottom:645.405000px;}
.y222{bottom:648.825000px;}
.y15e{bottom:650.985000px;}
.y22{bottom:651.705000px;}
.ybb{bottom:652.605000px;}
.yfb{bottom:652.785000px;}
.y1cd{bottom:658.005000px;}
.ye9{bottom:658.545000px;}
.y207{bottom:658.905000px;}
.y6a{bottom:659.445000px;}
.ya6{bottom:660.525000px;}
.y170{bottom:671.145000px;}
.y26e{bottom:671.685000px;}
.y256{bottom:672.045000px;}
.y241{bottom:672.405000px;}
.y3f{bottom:674.385000px;}
.y57{bottom:675.465000px;}
.y11c{bottom:676.545000px;}
.y221{bottom:677.265000px;}
.y6{bottom:678.885000px;}
.y15d{bottom:681.945000px;}
.y1e6{bottom:682.305000px;}
.y137{bottom:682.485000px;}
.y206{bottom:682.845000px;}
.yba{bottom:683.745000px;}
.yfa{bottom:683.925000px;}
.y10a{bottom:689.505000px;}
.y69{bottom:690.405000px;}
.y91{bottom:691.485000px;}
.y21{bottom:693.645000px;}
.y16f{bottom:702.285000px;}
.y255{bottom:703.185000px;}
.y240{bottom:703.545000px;}
.y1cc{bottom:704.085000px;}
.ye8{bottom:704.445000px;}
.y3e{bottom:705.525000px;}
.y12d{bottom:705.705000px;}
.y1bc{bottom:706.425000px;}
.y1f6{bottom:706.605000px;}
.y11b{bottom:707.505000px;}
.y15c{bottom:713.085000px;}
.y1e5{bottom:713.445000px;}
.yb9{bottom:714.705000px;}
.yf9{bottom:714.885000px;}
.y109{bottom:720.465000px;}
.yd0{bottom:721.185000px;}
.y56{bottom:721.545000px;}
.y90{bottom:722.625000px;}
.y136{bottom:728.565000px;}
.y26d{bottom:734.145000px;}
.y20{bottom:734.505000px;}
.y220{bottom:734.865000px;}
.y1cb{bottom:735.045000px;}
.ye7{bottom:736.305000px;}
.y3d{bottom:736.485000px;}
.y1bb{bottom:737.565000px;}
.y11a{bottom:738.645000px;}
.y15b{bottom:744.045000px;}
.y1e4{bottom:744.405000px;}
.yf8{bottom:746.025000px;}
.y16e{bottom:748.185000px;}
.y108{bottom:752.325000px;}
.y55{bottom:752.505000px;}
.y8f{bottom:753.585000px;}
.yb8{bottom:758.265000px;}
.y5{bottom:761.325000px;}
.y21f{bottom:765.105000px;}
.yc8{bottom:765.465000px;}
.y26c{bottom:765.645000px;}
.y23f{bottom:765.825000px;}
.y1ca{bottom:766.185000px;}
.y3c{bottom:767.625000px;}
.y1ba{bottom:768.525000px;}
.ye6{bottom:768.705000px;}
.y119{bottom:769.605000px;}
.yca{bottom:773.025000px;}
.y135{bottom:774.465000px;}
.y15a{bottom:775.185000px;}
.y1e3{bottom:775.545000px;}
.y1f{bottom:776.445000px;}
.yf7{bottom:776.985000px;}
.y17d{bottom:782.745000px;}
.y54{bottom:783.645000px;}
.y8e{bottom:784.725000px;}
.y16d{bottom:789.945000px;}
.y21e{bottom:794.805000px;}
.y1a9{bottom:796.065000px;}
.y26b{bottom:796.605000px;}
.y23e{bottom:796.965000px;}
.yb7{bottom:797.145000px;}
.y3b{bottom:798.585000px;}
.ya5{bottom:799.665000px;}
.y1e2{bottom:806.505000px;}
.yf6{bottom:808.125000px;}
.ye5{bottom:814.245000px;}
.y53{bottom:814.605000px;}
.y8d{bottom:815.685000px;}
.y134{bottom:816.225000px;}
.y1e{bottom:817.845000px;}
.y159{bottom:821.085000px;}
.y21d{bottom:823.425000px;}
.y1a8{bottom:827.025000px;}
.y26a{bottom:827.565000px;}
.y254{bottom:827.925000px;}
.y1c9{bottom:828.105000px;}
.y23d{bottom:828.285000px;}
.y3a{bottom:829.725000px;}
.y1b9{bottom:830.625000px;}
.ya4{bottom:830.805000px;}
.y1e1{bottom:837.645000px;}
.ye4{bottom:845.385000px;}
.yf5{bottom:845.565000px;}
.y83{bottom:845.745000px;}
.y8c{bottom:846.825000px;}
.y21c{bottom:851.865000px;}
.y158{bottom:852.225000px;}
.y1d{bottom:858.705000px;}
.y269{bottom:859.065000px;}
.y23c{bottom:859.425000px;}
.y39{bottom:860.685000px;}
.ya3{bottom:861.765000px;}
.y1a7{bottom:870.630000px;}
.y1c8{bottom:874.230000px;}
.y82{bottom:876.750000px;}
.y8b{bottom:877.830000px;}
.y21b{bottom:880.350000px;}
.yf4{bottom:880.710000px;}
.y157{bottom:883.230000px;}
.y1e0{bottom:883.590000px;}
.y1b4{bottom:885.570000px;}
.y268{bottom:890.070000px;}
.y253{bottom:890.430000px;}
.y23b{bottom:890.790000px;}
.y38{bottom:891.870000px;}
.y1b8{bottom:892.770000px;}
.ya2{bottom:892.950000px;}
.y1b5{bottom:893.670000px;}
.y1c{bottom:900.150000px;}
.y81{bottom:907.890000px;}
.y21a{bottom:908.790000px;}
.y8a{bottom:908.970000px;}
.y1a6{bottom:909.510000px;}
.y1c7{bottom:911.850000px;}
.y156{bottom:914.370000px;}
.y1df{bottom:914.730000px;}
.y4{bottom:915.450000px;}
.y252{bottom:921.570000px;}
.y23a{bottom:921.930000px;}
.y37{bottom:922.830000px;}
.ya1{bottom:923.910000px;}
.y1b7{bottom:936.330000px;}
.y219{bottom:937.230000px;}
.y1db{bottom:938.670000px;}
.y80{bottom:938.850000px;}
.y118{bottom:939.930000px;}
.y1b{bottom:941.550000px;}
.y1de{bottom:945.690000px;}
.y1c4{bottom:949.470000px;}
.y267{bottom:952.530000px;}
.y239{bottom:952.890000px;}
.y36{bottom:953.970000px;}
.y89{bottom:954.870000px;}
.y155{bottom:957.930000px;}
.y218{bottom:965.670000px;}
.y74{bottom:969.990000px;}
.y117{bottom:971.070000px;}
.y1b6{bottom:975.390000px;}
.y3{bottom:978.810000px;}
.y251{bottom:983.850000px;}
.y238{bottom:984.210000px;}
.y35{bottom:984.930000px;}
.ya0{bottom:986.010000px;}
.y1a{bottom:988.530000px;}
.y16b{bottom:989.250000px;}
.y1dd{bottom:989.430000px;}
.y217{bottom:994.110000px;}
.y154{bottom:996.990000px;}
.y1f5{bottom:999.870000px;}
.y73{bottom:1000.950000px;}
.y237{bottom:1015.350000px;}
.y34{bottom:1016.070000px;}
.y107{bottom:1016.970000px;}
.y216{bottom:1022.550000px;}
.y1dc{bottom:1028.310000px;}
.y72{bottom:1032.090000px;}
.y2{bottom:1042.170000px;}
.y250{bottom:1046.310000px;}
.y236{bottom:1046.670000px;}
.y33{bottom:1047.030000px;}
.y106{bottom:1048.110000px;}
.y215{bottom:1052.250000px;}
.y88{bottom:1063.050000px;}
.y266{bottom:1077.450000px;}
.y235{bottom:1077.810000px;}
.y32{bottom:1078.170000px;}
.y214{bottom:1082.130000px;}
.y105{bottom:1094.190000px;}
.y1{bottom:1105.530000px;}
.y234{bottom:1108.770000px;}
.y52{bottom:1109.130000px;}
.y213{bottom:1110.570000px;}
.y31{bottom:1123.530000px;}
.y116{bottom:1139.940000px;}
.y51{bottom:1140.300000px;}
.h24{height:14.940000px;}
.h1b{height:28.065000px;}
.h18{height:28.080000px;}
.h1a{height:28.245000px;}
.h21{height:28.260000px;}
.h23{height:28.290000px;}
.h20{height:34.740000px;}
.h1d{height:43.737568px;}
.h1f{height:46.628800px;}
.h19{height:48.616875px;}
.h26{height:49.255313px;}
.h5{height:53.302500px;}
.h14{height:58.621992px;}
.hc{height:58.651172px;}
.h17{height:60.226875px;}
.h15{height:64.546875px;}
.hb{height:64.978594px;}
.h28{height:65.010937px;}
.h27{height:68.084282px;}
.hd{height:70.370508px;}
.h7{height:70.628906px;}
.h11{height:70.664062px;}
.h4{height:70.995234px;}
.h6{height:72.334336px;}
.h16{height:72.562500px;}
.h13{height:74.004654px;}
.h1c{height:74.953125px;}
.h9{height:82.676953px;}
.he{height:93.936445px;}
.h10{height:93.983203px;}
.hf{height:96.508125px;}
.h8{height:96.825586px;}
.ha{height:106.941000px;}
.h12{height:141.328125px;}
.h2{height:182.039062px;}
.h3{height:193.113281px;}
.h25{height:197.452500px;}
.h22{height:198.202500px;}
.h1e{height:325.830000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:56.505000px;}
.wa{width:56.520000px;}
.w3{width:56.541000px;}
.w5{width:56.685000px;}
.w7{width:56.700000px;}
.w4{width:56.721000px;}
.w6{width:56.730000px;}
.wd{width:254.010000px;}
.wc{width:330.720000px;}
.w2{width:335.944500px;}
.wb{width:494.010000px;}
.w9{width:656.055000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:10.789500px;}
.x38{left:118.486500px;}
.x6{left:123.526500px;}
.x1{left:127.656000px;}
.x22{left:132.156000px;}
.x4{left:142.956000px;}
.xc{left:149.616000px;}
.x50{left:152.865000px;}
.x16{left:154.650000px;}
.x29{left:159.345000px;}
.x17{left:181.650000px;}
.x23{left:186.150000px;}
.x2{left:194.250000px;}
.x2c{left:195.705000px;}
.x1e{left:197.865000px;}
.x40{left:201.645000px;}
.x4d{left:206.865000px;}
.x27{left:208.650000px;}
.x3{left:210.990000px;}
.x34{left:214.245000px;}
.x49{left:217.485000px;}
.x1c{left:226.845000px;}
.x4e{left:230.070000px;}
.x3e{left:244.515000px;}
.x5{left:259.095000px;}
.x4b{left:261.975000px;}
.x33{left:271.515000px;}
.x4c{left:274.935000px;}
.x25{left:277.455000px;}
.x39{left:285.915000px;}
.x18{left:286.995000px;}
.x3a{left:296.715000px;}
.x14{left:317.595000px;}
.x1b{left:319.035000px;}
.xf{left:326.235000px;}
.x15{left:331.815000px;}
.xb{left:339.375000px;}
.x10{left:341.175000px;}
.x12{left:343.335000px;}
.xa{left:348.555000px;}
.x32{left:352.695000px;}
.x13{left:357.195000px;}
.x11{left:358.455000px;}
.x3b{left:361.695000px;}
.x47{left:366.195000px;}
.xd{left:395.895000px;}
.xe{left:404.565000px;}
.x2d{left:411.420000px;}
.x41{left:419.340000px;}
.x1a{left:438.225000px;}
.x8{left:442.365000px;}
.x45{left:445.080000px;}
.x9{left:446.505000px;}
.x35{left:451.905000px;}
.x48{left:455.145000px;}
.x20{left:462.705000px;}
.x21{left:471.165000px;}
.x37{left:483.225000px;}
.x31{left:484.305000px;}
.x2b{left:486.465000px;}
.x1d{left:509.700000px;}
.x3c{left:526.065000px;}
.x36{left:530.565000px;}
.x3d{left:533.820000px;}
.x4a{left:537.240000px;}
.x2f{left:554.683500px;}
.x30{left:560.983500px;}
.x2a{left:562.650000px;}
.x44{left:568.770000px;}
.x43{left:582.090000px;}
.x4f{left:594.150000px;}
.x26{left:610.350000px;}
.x46{left:637.170000px;}
.x1f{left:667.950000px;}
.x2e{left:676.770000px;}
.x42{left:686.310000px;}
.x28{left:724.320000px;}
.x24{left:726.120000px;}
.x51{left:735.300000px;}
.x3f{left:764.280000px;}
.x19{left:765.540000px;}
.x52{left:832.140000px;}
@media print{
.v1{vertical-align:-103.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.079360pt;}
.ls10{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.ls1d{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls27{letter-spacing:0.230933pt;}
.ls23{letter-spacing:0.231040pt;}
.ls2b{letter-spacing:0.232960pt;}
.ls2{letter-spacing:0.255360pt;}
.lsa{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.337707pt;}
.ls8{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls29{letter-spacing:0.592640pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.746667pt;}
.lsd{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.344000pt;}
.ls2d{letter-spacing:1.594880pt;}
.ls2e{letter-spacing:2.234880pt;}
.ls25{letter-spacing:15.360000pt;}
.ls3{letter-spacing:30.208000pt;}
.ls1f{letter-spacing:46.208000pt;}
.lsb{letter-spacing:48.768000pt;}
.ls31{letter-spacing:58.368000pt;}
.ls2c{letter-spacing:59.791360pt;}
.ls1b{letter-spacing:99.328000pt;}
.ls1c{letter-spacing:103.168000pt;}
.ls1a{letter-spacing:117.226667pt;}
.ls2a{letter-spacing:126.186667pt;}
.ls19{letter-spacing:135.146667pt;}
.ls0{letter-spacing:2252.032000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws19{word-spacing:-58.880000pt;}
.ws15{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-15.360000pt;}
.wsc{word-spacing:-15.296000pt;}
.ws1a{word-spacing:-15.264000pt;}
.ws16{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.448533pt;}
.ws10{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.534613pt;}
.ws13{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.ws14{word-spacing:-12.960000pt;}
.ws12{word-spacing:-11.040000pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-9.217067pt;}
._17{margin-left:-4.700373pt;}
._7{margin-left:-3.680000pt;}
._2c{margin-left:-2.129280pt;}
._0{margin-left:-0.997973pt;}
._1{width:0.903040pt;}
._2{width:2.107947pt;}
._21{width:3.145600pt;}
._1f{width:4.161280pt;}
._1d{width:5.056000pt;}
._1e{width:6.058667pt;}
._23{width:7.205973pt;}
._24{width:8.576000pt;}
._25{width:9.664000pt;}
._1b{width:10.597973pt;}
._20{width:11.648000pt;}
._1c{width:12.901547pt;}
._2b{width:13.821653pt;}
._2a{width:14.720000pt;}
._41{width:15.665067pt;}
._29{width:16.912640pt;}
._14{width:17.802667pt;}
._22{width:18.805333pt;}
._26{width:19.712000pt;}
._27{width:20.629333pt;}
._d{width:21.664000pt;}
._28{width:22.853973pt;}
._2e{width:24.096000pt;}
._36{width:24.992000pt;}
._33{width:25.936640pt;}
._31{width:26.858667pt;}
._32{width:27.907627pt;}
._2d{width:29.312000pt;}
._30{width:30.417280pt;}
._6{width:31.520000pt;}
._40{width:32.480000pt;}
._2f{width:33.463253pt;}
._3c{width:34.880000pt;}
._3d{width:36.024960pt;}
._3e{width:36.994133pt;}
._3b{width:38.132267pt;}
._3a{width:39.082667pt;}
._34{width:42.688000pt;}
._35{width:43.587627pt;}
._3f{width:44.955307pt;}
._13{width:46.602667pt;}
._1a{width:49.248000pt;}
._c{width:53.536000pt;}
._16{width:56.842667pt;}
._18{width:66.976000pt;}
._9{width:82.016000pt;}
._b{width:99.872000pt;}
._8{width:102.560000pt;}
._a{width:113.952000pt;}
._3{width:120.352000pt;}
._15{width:123.082667pt;}
._f{width:126.313600pt;}
._19{width:138.144000pt;}
._11{width:157.648640pt;}
._10{width:159.465600pt;}
._12{width:161.737600pt;}
._e{width:169.600000pt;}
._4{width:172.800000pt;}
._39{width:607.465600pt;}
._37{width:735.462827pt;}
._38{width:763.146027pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:55.992837pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:128.000000pt;}
.fs0{font-size:192.000000pt;}
.y153{bottom:-17.760000pt;}
.y192{bottom:-15.686667pt;}
.y115{bottom:-12.320000pt;}
.y0{bottom:0.000000pt;}
.y1a5{bottom:3.360000pt;}
.y17{bottom:5.266667pt;}
.ycf{bottom:15.026667pt;}
.yc9{bottom:15.040000pt;}
.ycc{bottom:15.186667pt;}
.y113{bottom:15.200000pt;}
.y1a3{bottom:15.226667pt;}
.y17c{bottom:18.720000pt;}
.y1f4{bottom:19.833333pt;}
.y152{bottom:20.960000pt;}
.y191{bottom:22.388000pt;}
.y16{bottom:23.666667pt;}
.y15{bottom:43.066667pt;}
.y151{bottom:44.160000pt;}
.y19{bottom:51.200000pt;}
.y1f3{bottom:57.908000pt;}
.y190{bottom:58.708000pt;}
.y14{bottom:62.426667pt;}
.y150{bottom:67.040000pt;}
.y18{bottom:69.152000pt;}
.y1f2{bottom:81.108000pt;}
.y13{bottom:81.786667pt;}
.y18f{bottom:81.908000pt;}
.y1ee{bottom:84.358667pt;}
.y14f{bottom:91.360000pt;}
.yc7{bottom:98.752000pt;}
.y18a{bottom:99.392000pt;}
.yb6{bottom:100.832000pt;}
.y50{bottom:102.752000pt;}
.y7f{bottom:103.072000pt;}
.y1f1{bottom:104.148000pt;}
.ydb{bottom:104.512000pt;}
.y18e{bottom:104.948000pt;}
.y30{bottom:106.112000pt;}
.y1da{bottom:116.512000pt;}
.y14e{bottom:116.666667pt;}
.y11{bottom:117.952000pt;}
.y17b{bottom:119.232000pt;}
.y18b{bottom:119.558667pt;}
.y233{bottom:119.712000pt;}
.y205{bottom:121.632000pt;}
.y68{bottom:124.352000pt;}
.y100{bottom:124.512000pt;}
.y16a{bottom:124.672000pt;}
.y146{bottom:125.952000pt;}
.y265{bottom:126.112000pt;}
.yc6{bottom:126.272000pt;}
.y189{bottom:126.912000pt;}
.y18d{bottom:127.828000pt;}
.yb5{bottom:128.512000pt;}
.y4f{bottom:130.272000pt;}
.y7e{bottom:130.592000pt;}
.y1b3{bottom:130.912000pt;}
.y87{bottom:131.232000pt;}
.yda{bottom:132.192000pt;}
.y212{bottom:132.352000pt;}
.y120{bottom:133.946667pt;}
.y1c3{bottom:135.226667pt;}
.y2f{bottom:138.266667pt;}
.y10{bottom:139.386667pt;}
.y14d{bottom:139.706667pt;}
.y1f0{bottom:140.308000pt;}
.y1a1{bottom:140.986667pt;}
.y1d9{bottom:144.186667pt;}
.y232{bottom:144.986667pt;}
.y71{bottom:145.466667pt;}
.y17a{bottom:146.906667pt;}
.yff{bottom:147.706667pt;}
.y204{bottom:149.146667pt;}
.y67{bottom:151.866667pt;}
.y169{bottom:152.346667pt;}
.y1c6{bottom:153.160000pt;}
.y145{bottom:153.466667pt;}
.y264{bottom:153.786667pt;}
.yc5{bottom:153.946667pt;}
.y24f{bottom:154.266667pt;}
.yb4{bottom:156.026667pt;}
.y4e{bottom:157.946667pt;}
.y7d{bottom:158.266667pt;}
.y1b2{bottom:158.586667pt;}
.y84{bottom:158.746667pt;}
.y111{bottom:158.906667pt;}
.yd9{bottom:159.706667pt;}
.yf{bottom:160.826667pt;}
.y14c{bottom:162.746667pt;}
.y1ef{bottom:163.508000pt;}
.y18c{bottom:163.988000pt;}
.y188{bottom:167.866667pt;}
.y1a0{bottom:168.506667pt;}
.y1c2{bottom:169.946667pt;}
.y231{bottom:170.746667pt;}
.y1d8{bottom:171.706667pt;}
.y211{bottom:173.306667pt;}
.y179{bottom:174.426667pt;}
.y9f{bottom:174.906667pt;}
.y2e{bottom:175.066667pt;}
.y203{bottom:176.826667pt;}
.y66{bottom:179.546667pt;}
.y144{bottom:181.146667pt;}
.y263{bottom:181.306667pt;}
.y24e{bottom:181.946667pt;}
.yfe{bottom:183.866667pt;}
.y14b{bottom:185.626667pt;}
.y7c{bottom:185.786667pt;}
.y1b1{bottom:186.106667pt;}
.y70{bottom:186.426667pt;}
.yd8{bottom:187.386667pt;}
.y4d{bottom:190.106667pt;}
.y168{bottom:193.306667pt;}
.yc4{bottom:194.426667pt;}
.y19f{bottom:196.186667pt;}
.yb3{bottom:196.986667pt;}
.y230{bottom:197.306667pt;}
.y1d7{bottom:199.386667pt;}
.y110{bottom:199.706667pt;}
.yf3{bottom:199.866667pt;}
.y9e{bottom:202.586667pt;}
.ye{bottom:203.066667pt;}
.y202{bottom:204.346667pt;}
.y65{bottom:207.066667pt;}
.y143{bottom:208.666667pt;}
.y187{bottom:208.826667pt;}
.y262{bottom:209.146667pt;}
.y24d{bottom:209.466667pt;}
.y2d{bottom:211.866667pt;}
.y178{bottom:213.146667pt;}
.y17f{bottom:213.320000pt;}
.y7b{bottom:213.466667pt;}
.y1b0{bottom:213.786667pt;}
.y6f{bottom:213.946667pt;}
.y210{bottom:214.106667pt;}
.ye3{bottom:214.906667pt;}
.y11f{bottom:215.866667pt;}
.y167{bottom:220.826667pt;}
.y22f{bottom:222.586667pt;}
.y19e{bottom:223.706667pt;}
.yb2{bottom:224.666667pt;}
.y4c{bottom:226.746667pt;}
.y1d6{bottom:226.906667pt;}
.yf2{bottom:227.386667pt;}
.yd7{bottom:228.186667pt;}
.y9d{bottom:230.106667pt;}
.y14a{bottom:231.706667pt;}
.y201{bottom:232.026667pt;}
.yc3{bottom:233.626667pt;}
.y12c{bottom:234.746667pt;}
.y142{bottom:236.346667pt;}
.y261{bottom:236.826667pt;}
.y24c{bottom:237.466667pt;}
.y10f{bottom:240.666667pt;}
.y7a{bottom:240.986667pt;}
.y1af{bottom:241.306667pt;}
.y64{bottom:241.626667pt;}
.ye2{bottom:242.586667pt;}
.y11e{bottom:243.386667pt;}
.y2c{bottom:244.026667pt;}
.y177{bottom:247.706667pt;}
.y22e{bottom:247.866667pt;}
.y166{bottom:248.506667pt;}
.y186{bottom:249.786667pt;}
.yd{bottom:250.106667pt;}
.y19d{bottom:251.546667pt;}
.yb1{bottom:252.186667pt;}
.ycd{bottom:253.480000pt;}
.yce{bottom:253.640000pt;}
.ycb{bottom:254.120000pt;}
.y149{bottom:254.746667pt;}
.yf1{bottom:255.066667pt;}
.yd6{bottom:255.866667pt;}
.y12{bottom:259.080000pt;}
.y200{bottom:259.546667pt;}
.y12b{bottom:262.266667pt;}
.y4b{bottom:263.546667pt;}
.y141{bottom:263.866667pt;}
.y260{bottom:264.666667pt;}
.y24b{bottom:264.986667pt;}
.y1d5{bottom:267.866667pt;}
.yc2{bottom:268.026667pt;}
.y10e{bottom:268.346667pt;}
.y1ae{bottom:268.986667pt;}
.y63{bottom:269.146667pt;}
.ye1{bottom:270.106667pt;}
.y9c{bottom:271.066667pt;}
.y2b{bottom:271.706667pt;}
.y1c1{bottom:272.346667pt;}
.y22d{bottom:273.146667pt;}
.y148{bottom:277.626667pt;}
.y19c{bottom:279.386667pt;}
.yb0{bottom:279.866667pt;}
.y79{bottom:281.946667pt;}
.yf0{bottom:282.586667pt;}
.yd5{bottom:283.386667pt;}
.y165{bottom:287.226667pt;}
.y12a{bottom:289.946667pt;}
.y185{bottom:290.746667pt;}
.y140{bottom:291.586667pt;}
.y25f{bottom:292.386667pt;}
.y24a{bottom:292.866667pt;}
.y16c{bottom:295.106667pt;}
.y1d4{bottom:295.586667pt;}
.y4a{bottom:295.906667pt;}
.y20f{bottom:296.066667pt;}
.y1ad{bottom:296.546667pt;}
.y62{bottom:296.866667pt;}
.ye0{bottom:297.826667pt;}
.y22c{bottom:298.466667pt;}
.y9b{bottom:298.626667pt;}
.y2a{bottom:299.266667pt;}
.y1c0{bottom:299.906667pt;}
.yaf{bottom:307.426667pt;}
.y78{bottom:309.666667pt;}
.yef{bottom:310.146667pt;}
.yd4{bottom:311.106667pt;}
.y1ff{bottom:314.786667pt;}
.y129{bottom:317.506667pt;}
.y13f{bottom:319.106667pt;}
.y25e{bottom:320.226667pt;}
.y19b{bottom:320.386667pt;}
.y249{bottom:320.546667pt;}
.y164{bottom:321.826667pt;}
.yc{bottom:323.106667pt;}
.y49{bottom:323.426667pt;}
.y10d{bottom:323.586667pt;}
.y22b{bottom:323.746667pt;}
.y1ac{bottom:324.226667pt;}
.y61{bottom:324.386667pt;}
.ydf{bottom:325.346667pt;}
.y9a{bottom:326.306667pt;}
.y29{bottom:326.946667pt;}
.y1bf{bottom:327.426667pt;}
.y184{bottom:331.586667pt;}
.y20e{bottom:337.026667pt;}
.yee{bottom:337.826667pt;}
.yd3{bottom:338.626667pt;}
.y1fe{bottom:342.466667pt;}
.y13e{bottom:346.786667pt;}
.y19a{bottom:347.906667pt;}
.yae{bottom:348.066667pt;}
.y77{bottom:348.386667pt;}
.y22a{bottom:349.026667pt;}
.y1d3{bottom:350.786667pt;}
.y48{bottom:351.106667pt;}
.y60{bottom:352.066667pt;}
.yde{bottom:353.026667pt;}
.y131{bottom:353.826667pt;}
.y1be{bottom:355.106667pt;}
.y176{bottom:358.146667pt;}
.y128{bottom:358.466667pt;}
.y28{bottom:359.106667pt;}
.yb{bottom:360.386667pt;}
.y17e{bottom:360.546667pt;}
.y1ab{bottom:362.946667pt;}
.yd2{bottom:366.306667pt;}
.y99{bottom:367.266667pt;}
.y1fd{bottom:369.986667pt;}
.y183{bottom:372.546667pt;}
.y13d{bottom:374.306667pt;}
.y25d{bottom:375.426667pt;}
.y199{bottom:375.586667pt;}
.yad{bottom:375.906667pt;}
.y248{bottom:376.066667pt;}
.y20d{bottom:377.986667pt;}
.y1d2{bottom:378.306667pt;}
.y47{bottom:378.626667pt;}
.yed{bottom:378.786667pt;}
.y5f{bottom:379.586667pt;}
.ydd{bottom:380.546667pt;}
.y76{bottom:384.706667pt;}
.y127{bottom:386.146667pt;}
.y175{bottom:392.706667pt;}
.yd1{bottom:393.826667pt;}
.y98{bottom:394.786667pt;}
.y27{bottom:395.426667pt;}
.y1fc{bottom:397.666667pt;}
.y229{bottom:399.586667pt;}
.y1ed{bottom:399.906667pt;}
.ya{bottom:400.706667pt;}
.y13c{bottom:401.986667pt;}
.y25c{bottom:402.946667pt;}
.y198{bottom:403.106667pt;}
.yac{bottom:403.586667pt;}
.y1d1{bottom:405.826667pt;}
.y46{bottom:406.306667pt;}
.y5e{bottom:407.266667pt;}
.y182{bottom:413.346667pt;}
.y126{bottom:413.666667pt;}
.yc1{bottom:414.466667pt;}
.y1c5{bottom:415.906667pt;}
.y20c{bottom:418.786667pt;}
.y9{bottom:418.946667pt;}
.y75{bottom:419.266667pt;}
.y86{bottom:420.546667pt;}
.ydc{bottom:421.186667pt;}
.y104{bottom:421.506667pt;}
.y1aa{bottom:422.306667pt;}
.y97{bottom:422.466667pt;}
.y1fb{bottom:423.106667pt;}
.y228{bottom:425.026667pt;}
.y163{bottom:427.266667pt;}
.y1ec{bottom:427.586667pt;}
.y1bd{bottom:428.386667pt;}
.y25b{bottom:430.946667pt;}
.y147{bottom:431.266667pt;}
.y247{bottom:431.586667pt;}
.yab{bottom:432.386667pt;}
.y26{bottom:432.706667pt;}
.y130{bottom:433.506667pt;}
.y45{bottom:433.826667pt;}
.yec{bottom:433.986667pt;}
.y5d{bottom:434.786667pt;}
.y125{bottom:441.346667pt;}
.yc0{bottom:442.146667pt;}
.y13b{bottom:442.786667pt;}
.y197{bottom:444.066667pt;}
.y10c{bottom:445.026667pt;}
.y1fa{bottom:446.146667pt;}
.y132{bottom:447.746667pt;}
.y133{bottom:448.066667pt;}
.y85{bottom:448.226667pt;}
.y103{bottom:449.026667pt;}
.y96{bottom:449.986667pt;}
.y227{bottom:450.306667pt;}
.y181{bottom:451.586667pt;}
.y1eb{bottom:455.106667pt;}
.y114{bottom:455.586667pt;}
.y112{bottom:456.066667pt;}
.y8{bottom:456.866667pt;}
.y25a{bottom:458.466667pt;}
.y246{bottom:459.106667pt;}
.y20b{bottom:459.746667pt;}
.yaa{bottom:461.026667pt;}
.y44{bottom:461.506667pt;}
.y5c{bottom:462.466667pt;}
.y193{bottom:465.026667pt;}
.y12f{bottom:467.906667pt;}
.y162{bottom:468.226667pt;}
.y124{bottom:468.866667pt;}
.y25{bottom:469.026667pt;}
.y1f9{bottom:469.186667pt;}
.ybf{bottom:469.666667pt;}
.y196{bottom:471.746667pt;}
.y226{bottom:475.586667pt;}
.y6e{bottom:475.746667pt;}
.y102{bottom:476.706667pt;}
.y95{bottom:477.666667pt;}
.y10b{bottom:479.586667pt;}
.y1ea{bottom:482.786667pt;}
.y13a{bottom:483.746667pt;}
.y180{bottom:485.986667pt;}
.y174{bottom:486.146667pt;}
.y259{bottom:486.466667pt;}
.y245{bottom:486.626667pt;}
.y1d0{bottom:488.706667pt;}
.y43{bottom:489.026667pt;}
.yeb{bottom:489.186667pt;}
.ya9{bottom:489.826667pt;}
.y5b{bottom:489.986667pt;}
.y1f8{bottom:492.226667pt;}
.y161{bottom:495.746667pt;}
.y123{bottom:496.546667pt;}
.ybe{bottom:497.346667pt;}
.y20a{bottom:500.706667pt;}
.y225{bottom:500.866667pt;}
.y6d{bottom:503.426667pt;}
.y101{bottom:504.226667pt;}
.y94{bottom:505.186667pt;}
.y24{bottom:506.306667pt;}
.y1e9{bottom:510.306667pt;}
.y195{bottom:510.466667pt;}
.y173{bottom:513.826667pt;}
.y258{bottom:513.986667pt;}
.y244{bottom:514.626667pt;}
.y42{bottom:516.706667pt;}
.y5a{bottom:517.666667pt;}
.y11d{bottom:518.466667pt;}
.y160{bottom:523.426667pt;}
.y139{bottom:524.706667pt;}
.ybd{bottom:524.866667pt;}
.yfd{bottom:525.026667pt;}
.y224{bottom:526.146667pt;}
.y1f7{bottom:526.626667pt;}
.y1a2{bottom:528.386667pt;}
.y1a4{bottom:528.893333pt;}
.y1cf{bottom:529.693333pt;}
.y7{bottom:530.173333pt;}
.y6c{bottom:530.973333pt;}
.ya8{bottom:531.933333pt;}
.y122{bottom:535.293333pt;}
.y1e8{bottom:538.013333pt;}
.y209{bottom:539.453333pt;}
.y172{bottom:541.373333pt;}
.y257{bottom:541.853333pt;}
.y243{bottom:542.173333pt;}
.y23{bottom:542.973333pt;}
.y41{bottom:544.253333pt;}
.yea{bottom:544.413333pt;}
.y194{bottom:545.053333pt;}
.y59{bottom:545.213333pt;}
.y93{bottom:546.173333pt;}
.y15f{bottom:550.973333pt;}
.y223{bottom:551.453333pt;}
.ybc{bottom:552.573333pt;}
.yfc{bottom:552.733333pt;}
.y1ce{bottom:557.213333pt;}
.y6b{bottom:558.493333pt;}
.ya7{bottom:559.453333pt;}
.y208{bottom:562.653333pt;}
.y1e7{bottom:565.533333pt;}
.y138{bottom:565.693333pt;}
.y12e{bottom:566.013333pt;}
.y171{bottom:569.053333pt;}
.y26f{bottom:569.533333pt;}
.y121{bottom:569.693333pt;}
.y242{bottom:569.853333pt;}
.y40{bottom:571.933333pt;}
.y58{bottom:572.893333pt;}
.y92{bottom:573.693333pt;}
.y222{bottom:576.733333pt;}
.y15e{bottom:578.653333pt;}
.y22{bottom:579.293333pt;}
.ybb{bottom:580.093333pt;}
.yfb{bottom:580.253333pt;}
.y1cd{bottom:584.893333pt;}
.ye9{bottom:585.373333pt;}
.y207{bottom:585.693333pt;}
.y6a{bottom:586.173333pt;}
.ya6{bottom:587.133333pt;}
.y170{bottom:596.573333pt;}
.y26e{bottom:597.053333pt;}
.y256{bottom:597.373333pt;}
.y241{bottom:597.693333pt;}
.y3f{bottom:599.453333pt;}
.y57{bottom:600.413333pt;}
.y11c{bottom:601.373333pt;}
.y221{bottom:602.013333pt;}
.y6{bottom:603.453333pt;}
.y15d{bottom:606.173333pt;}
.y1e6{bottom:606.493333pt;}
.y137{bottom:606.653333pt;}
.y206{bottom:606.973333pt;}
.yba{bottom:607.773333pt;}
.yfa{bottom:607.933333pt;}
.y10a{bottom:612.893333pt;}
.y69{bottom:613.693333pt;}
.y91{bottom:614.653333pt;}
.y21{bottom:616.573333pt;}
.y16f{bottom:624.253333pt;}
.y255{bottom:625.053333pt;}
.y240{bottom:625.373333pt;}
.y1cc{bottom:625.853333pt;}
.ye8{bottom:626.173333pt;}
.y3e{bottom:627.133333pt;}
.y12d{bottom:627.293333pt;}
.y1bc{bottom:627.933333pt;}
.y1f6{bottom:628.093333pt;}
.y11b{bottom:628.893333pt;}
.y15c{bottom:633.853333pt;}
.y1e5{bottom:634.173333pt;}
.yb9{bottom:635.293333pt;}
.yf9{bottom:635.453333pt;}
.y109{bottom:640.413333pt;}
.yd0{bottom:641.053333pt;}
.y56{bottom:641.373333pt;}
.y90{bottom:642.333333pt;}
.y136{bottom:647.613333pt;}
.y26d{bottom:652.573333pt;}
.y20{bottom:652.893333pt;}
.y220{bottom:653.213333pt;}
.y1cb{bottom:653.373333pt;}
.ye7{bottom:654.493333pt;}
.y3d{bottom:654.653333pt;}
.y1bb{bottom:655.613333pt;}
.y11a{bottom:656.573333pt;}
.y15b{bottom:661.373333pt;}
.y1e4{bottom:661.693333pt;}
.yf8{bottom:663.133333pt;}
.y16e{bottom:665.053333pt;}
.y108{bottom:668.733333pt;}
.y55{bottom:668.893333pt;}
.y8f{bottom:669.853333pt;}
.yb8{bottom:674.013333pt;}
.y5{bottom:676.733333pt;}
.y21f{bottom:680.093333pt;}
.yc8{bottom:680.413333pt;}
.y26c{bottom:680.573333pt;}
.y23f{bottom:680.733333pt;}
.y1ca{bottom:681.053333pt;}
.y3c{bottom:682.333333pt;}
.y1ba{bottom:683.133333pt;}
.ye6{bottom:683.293333pt;}
.y119{bottom:684.093333pt;}
.yca{bottom:687.133333pt;}
.y135{bottom:688.413333pt;}
.y15a{bottom:689.053333pt;}
.y1e3{bottom:689.373333pt;}
.y1f{bottom:690.173333pt;}
.yf7{bottom:690.653333pt;}
.y17d{bottom:695.773333pt;}
.y54{bottom:696.573333pt;}
.y8e{bottom:697.533333pt;}
.y16d{bottom:702.173333pt;}
.y21e{bottom:706.493333pt;}
.y1a9{bottom:707.613333pt;}
.y26b{bottom:708.093333pt;}
.y23e{bottom:708.413333pt;}
.yb7{bottom:708.573333pt;}
.y3b{bottom:709.853333pt;}
.ya5{bottom:710.813333pt;}
.y1e2{bottom:716.893333pt;}
.yf6{bottom:718.333333pt;}
.ye5{bottom:723.773333pt;}
.y53{bottom:724.093333pt;}
.y8d{bottom:725.053333pt;}
.y134{bottom:725.533333pt;}
.y1e{bottom:726.973333pt;}
.y159{bottom:729.853333pt;}
.y21d{bottom:731.933333pt;}
.y1a8{bottom:735.133333pt;}
.y26a{bottom:735.613333pt;}
.y254{bottom:735.933333pt;}
.y1c9{bottom:736.093333pt;}
.y23d{bottom:736.253333pt;}
.y3a{bottom:737.533333pt;}
.y1b9{bottom:738.333333pt;}
.ya4{bottom:738.493333pt;}
.y1e1{bottom:744.573333pt;}
.ye4{bottom:751.453333pt;}
.yf5{bottom:751.613333pt;}
.y83{bottom:751.773333pt;}
.y8c{bottom:752.733333pt;}
.y21c{bottom:757.213333pt;}
.y158{bottom:757.533333pt;}
.y1d{bottom:763.293333pt;}
.y269{bottom:763.613333pt;}
.y23c{bottom:763.933333pt;}
.y39{bottom:765.053333pt;}
.ya3{bottom:766.013333pt;}
.y1a7{bottom:773.893333pt;}
.y1c8{bottom:777.093333pt;}
.y82{bottom:779.333333pt;}
.y8b{bottom:780.293333pt;}
.y21b{bottom:782.533333pt;}
.yf4{bottom:782.853333pt;}
.y157{bottom:785.093333pt;}
.y1e0{bottom:785.413333pt;}
.y1b4{bottom:787.173333pt;}
.y268{bottom:791.173333pt;}
.y253{bottom:791.493333pt;}
.y23b{bottom:791.813333pt;}
.y38{bottom:792.773333pt;}
.y1b8{bottom:793.573333pt;}
.ya2{bottom:793.733333pt;}
.y1b5{bottom:794.373333pt;}
.y1c{bottom:800.133333pt;}
.y81{bottom:807.013333pt;}
.y21a{bottom:807.813333pt;}
.y8a{bottom:807.973333pt;}
.y1a6{bottom:808.453333pt;}
.y1c7{bottom:810.533333pt;}
.y156{bottom:812.773333pt;}
.y1df{bottom:813.093333pt;}
.y4{bottom:813.733333pt;}
.y252{bottom:819.173333pt;}
.y23a{bottom:819.493333pt;}
.y37{bottom:820.293333pt;}
.ya1{bottom:821.253333pt;}
.y1b7{bottom:832.293333pt;}
.y219{bottom:833.093333pt;}
.y1db{bottom:834.373333pt;}
.y80{bottom:834.533333pt;}
.y118{bottom:835.493333pt;}
.y1b{bottom:836.933333pt;}
.y1de{bottom:840.613333pt;}
.y1c4{bottom:843.973333pt;}
.y267{bottom:846.693333pt;}
.y239{bottom:847.013333pt;}
.y36{bottom:847.973333pt;}
.y89{bottom:848.773333pt;}
.y155{bottom:851.493333pt;}
.y218{bottom:858.373333pt;}
.y74{bottom:862.213333pt;}
.y117{bottom:863.173333pt;}
.y1b6{bottom:867.013333pt;}
.y3{bottom:870.053333pt;}
.y251{bottom:874.533333pt;}
.y238{bottom:874.853333pt;}
.y35{bottom:875.493333pt;}
.ya0{bottom:876.453333pt;}
.y1a{bottom:878.693333pt;}
.y16b{bottom:879.333333pt;}
.y1dd{bottom:879.493333pt;}
.y217{bottom:883.653333pt;}
.y154{bottom:886.213333pt;}
.y1f5{bottom:888.773333pt;}
.y73{bottom:889.733333pt;}
.y237{bottom:902.533333pt;}
.y34{bottom:903.173333pt;}
.y107{bottom:903.973333pt;}
.y216{bottom:908.933333pt;}
.y1dc{bottom:914.053333pt;}
.y72{bottom:917.413333pt;}
.y2{bottom:926.373333pt;}
.y250{bottom:930.053333pt;}
.y236{bottom:930.373333pt;}
.y33{bottom:930.693333pt;}
.y106{bottom:931.653333pt;}
.y215{bottom:935.333333pt;}
.y88{bottom:944.933333pt;}
.y266{bottom:957.733333pt;}
.y235{bottom:958.053333pt;}
.y32{bottom:958.373333pt;}
.y214{bottom:961.893333pt;}
.y105{bottom:972.613333pt;}
.y1{bottom:982.693333pt;}
.y234{bottom:985.573333pt;}
.y52{bottom:985.893333pt;}
.y213{bottom:987.173333pt;}
.y31{bottom:998.693333pt;}
.y116{bottom:1013.280000pt;}
.y51{bottom:1013.600000pt;}
.h24{height:13.280000pt;}
.h1b{height:24.946667pt;}
.h18{height:24.960000pt;}
.h1a{height:25.106667pt;}
.h21{height:25.120000pt;}
.h23{height:25.146667pt;}
.h20{height:30.880000pt;}
.h1d{height:38.877839pt;}
.h1f{height:41.447822pt;}
.h19{height:43.215000pt;}
.h26{height:43.782500pt;}
.h5{height:47.380000pt;}
.h14{height:52.108438pt;}
.hc{height:52.134375pt;}
.h17{height:53.535000pt;}
.h15{height:57.375000pt;}
.hb{height:57.758750pt;}
.h28{height:57.787500pt;}
.h27{height:60.519362pt;}
.hd{height:62.551563pt;}
.h7{height:62.781250pt;}
.h11{height:62.812500pt;}
.h4{height:63.106875pt;}
.h6{height:64.297187pt;}
.h16{height:64.500000pt;}
.h13{height:65.781915pt;}
.h1c{height:66.625000pt;}
.h9{height:73.490625pt;}
.he{height:83.499062pt;}
.h10{height:83.540625pt;}
.hf{height:85.785000pt;}
.h8{height:86.067187pt;}
.ha{height:95.058667pt;}
.h12{height:125.625000pt;}
.h2{height:161.812500pt;}
.h3{height:171.656250pt;}
.h25{height:175.513333pt;}
.h22{height:176.180000pt;}
.h1e{height:289.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:50.226667pt;}
.wa{width:50.240000pt;}
.w3{width:50.258667pt;}
.w5{width:50.386667pt;}
.w7{width:50.400000pt;}
.w4{width:50.418667pt;}
.w6{width:50.426667pt;}
.wd{width:225.786667pt;}
.wc{width:293.973333pt;}
.w2{width:298.617333pt;}
.wb{width:439.120000pt;}
.w9{width:583.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.590667pt;}
.x38{left:105.321333pt;}
.x6{left:109.801333pt;}
.x1{left:113.472000pt;}
.x22{left:117.472000pt;}
.x4{left:127.072000pt;}
.xc{left:132.992000pt;}
.x50{left:135.880000pt;}
.x16{left:137.466667pt;}
.x29{left:141.640000pt;}
.x17{left:161.466667pt;}
.x23{left:165.466667pt;}
.x2{left:172.666667pt;}
.x2c{left:173.960000pt;}
.x1e{left:175.880000pt;}
.x40{left:179.240000pt;}
.x4d{left:183.880000pt;}
.x27{left:185.466667pt;}
.x3{left:187.546667pt;}
.x34{left:190.440000pt;}
.x49{left:193.320000pt;}
.x1c{left:201.640000pt;}
.x4e{left:204.506667pt;}
.x3e{left:217.346667pt;}
.x5{left:230.306667pt;}
.x4b{left:232.866667pt;}
.x33{left:241.346667pt;}
.x4c{left:244.386667pt;}
.x25{left:246.626667pt;}
.x39{left:254.146667pt;}
.x18{left:255.106667pt;}
.x3a{left:263.746667pt;}
.x14{left:282.306667pt;}
.x1b{left:283.586667pt;}
.xf{left:289.986667pt;}
.x15{left:294.946667pt;}
.xb{left:301.666667pt;}
.x10{left:303.266667pt;}
.x12{left:305.186667pt;}
.xa{left:309.826667pt;}
.x32{left:313.506667pt;}
.x13{left:317.506667pt;}
.x11{left:318.626667pt;}
.x3b{left:321.506667pt;}
.x47{left:325.506667pt;}
.xd{left:351.906667pt;}
.xe{left:359.613333pt;}
.x2d{left:365.706667pt;}
.x41{left:372.746667pt;}
.x1a{left:389.533333pt;}
.x8{left:393.213333pt;}
.x45{left:395.626667pt;}
.x9{left:396.893333pt;}
.x35{left:401.693333pt;}
.x48{left:404.573333pt;}
.x20{left:411.293333pt;}
.x21{left:418.813333pt;}
.x37{left:429.533333pt;}
.x31{left:430.493333pt;}
.x2b{left:432.413333pt;}
.x1d{left:453.066667pt;}
.x3c{left:467.613333pt;}
.x36{left:471.613333pt;}
.x3d{left:474.506667pt;}
.x4a{left:477.546667pt;}
.x2f{left:493.052000pt;}
.x30{left:498.652000pt;}
.x2a{left:500.133333pt;}
.x44{left:505.573333pt;}
.x43{left:517.413333pt;}
.x4f{left:528.133333pt;}
.x26{left:542.533333pt;}
.x46{left:566.373333pt;}
.x1f{left:593.733333pt;}
.x2e{left:601.573333pt;}
.x42{left:610.053333pt;}
.x28{left:643.840000pt;}
.x24{left:645.440000pt;}
.x51{left:653.600000pt;}
.x3f{left:679.360000pt;}
.x19{left:680.480000pt;}
.x52{left:739.680000pt;}
}




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