
    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_e833854ea2f445d75f431b4c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_de2131fc0da6383eb7cab2b4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5b3e356e9516b22df46f3131.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.688477;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_5acc40c57386ab7ac0b93ec2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_7a88ad40f4f87cbd888180ee.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c4ae790d61c14e5683c004d9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0da70096a12f1e94bd261d88.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_879b3decceea8b4ae8f876b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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;}
.ls1e{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.176000px;}
.lsc{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.262200px;}
.ls25{letter-spacing:-0.259800px;}
.ls1{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.262200px;}
.ls24{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.414600px;}
.lsd{letter-spacing:0.432000px;}
.lse{letter-spacing:0.720000px;}
.ls11{letter-spacing:3.744000px;}
.ls10{letter-spacing:8.064000px;}
.ls14{letter-spacing:9.360000px;}
.ls20{letter-spacing:12.960000px;}
.ls1d{letter-spacing:17.280000px;}
.ls4{letter-spacing:21.221280px;}
.ls8{letter-spacing:28.224000px;}
.ls7{letter-spacing:31.824000px;}
.lsb{letter-spacing:33.984000px;}
.lsa{letter-spacing:38.304000px;}
.ls3{letter-spacing:62.789760px;}
.ls1c{letter-spacing:64.224000px;}
.ls17{letter-spacing:67.265280px;}
.ls2{letter-spacing:846.156000px;}
.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;}
}
.ws2{word-spacing:-21.420000px;}
.wsa{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.280000px;}
.wsd{word-spacing:-16.974600px;}
.ws7{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.102200px;}
.wse{word-spacing:-15.384000px;}
.wsb{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.680200px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-14.244000px;}
._d{margin-left:-12.480000px;}
._b{margin-left:-10.680000px;}
._11{margin-left:-9.648000px;}
._f{margin-left:-8.556000px;}
._e{margin-left:-6.540000px;}
._10{margin-left:-4.704000px;}
._21{margin-left:-2.625600px;}
._0{margin-left:-1.442880px;}
._1{width:1.022880px;}
._7{width:2.664000px;}
._8{width:3.756000px;}
._3{width:4.824000px;}
._4{width:5.904000px;}
._12{width:7.488000px;}
._5{width:9.360000px;}
._6{width:10.440000px;}
._9{width:11.721120px;}
._a{width:13.032000px;}
._1b{width:14.544000px;}
._15{width:15.768000px;}
._16{width:16.848000px;}
._2c{width:18.216000px;}
._1f{width:19.944000px;}
._19{width:21.468000px;}
._18{width:22.536000px;}
._1a{width:24.168000px;}
._25{width:25.493760px;}
._17{width:26.496000px;}
._13{width:27.936000px;}
._14{width:29.013120px;}
._22{width:30.374400px;}
._1d{width:31.524000px;}
._1e{width:32.700000px;}
._20{width:34.427520px;}
._1c{width:35.904000px;}
._26{width:37.778880px;}
._27{width:42.408000px;}
._28{width:43.488000px;}
._29{width:45.102240px;}
._36{width:47.808000px;}
._2e{width:49.548000px;}
._2d{width:50.688000px;}
._2a{width:53.040000px;}
._2b{width:54.105600px;}
._24{width:55.500000px;}
._23{width:56.520000px;}
._32{width:57.695040px;}
._31{width:115.243200px;}
._33{width:146.528640px;}
._34{width:198.904320px;}
._30{width:383.040000px;}
._2f{width:626.556000px;}
._2{width:846.156000px;}
._35{width:1088.760000px;}
._37{width:1439.760000px;}
.fcb{color:rgb(49,97,146);}
.fc9{color:rgb(0,0,255);}
.fc7{color:rgb(102,0,153);}
.fc6{color:rgb(31,73,125);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(70,131,209);}
.fc1{color:rgb(79,129,189);}
.fca{color:rgb(35,31,32);}
.fc8{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fs5{font-size:138.240000px;}
.y0{bottom:0.000000px;}
.y1dd{bottom:12.960000px;}
.y1e0{bottom:12.990000px;}
.y1d4{bottom:13.140000px;}
.y195{bottom:20.700000px;}
.y187{bottom:20.880000px;}
.y18b{bottom:20.925000px;}
.y156{bottom:21.960000px;}
.y154{bottom:21.990000px;}
.y14d{bottom:22.005000px;}
.y148{bottom:22.140000px;}
.y184{bottom:23.040000px;}
.y222{bottom:24.300000px;}
.y231{bottom:32.400000px;}
.y227{bottom:37.980000px;}
.y15a{bottom:39.774000px;}
.y1dc{bottom:41.394000px;}
.y1e4{bottom:41.400000px;}
.y1d3{bottom:41.580000px;}
.y235{bottom:42.660000px;}
.y14f{bottom:46.080000px;}
.y18d{bottom:46.620000px;}
.y194{bottom:46.650000px;}
.y192{bottom:46.800000px;}
.y18a{bottom:46.845000px;}
.y221{bottom:46.980000px;}
.y186{bottom:47.160000px;}
.y165{bottom:47.340000px;}
.y15c{bottom:48.600000px;}
.y183{bottom:48.960000px;}
.y1b8{bottom:50.394000px;}
.y155{bottom:50.400000px;}
.y153{bottom:50.430000px;}
.y14c{bottom:50.445000px;}
.y1d6{bottom:50.580000px;}
.y1ae{bottom:50.610000px;}
.y1a7{bottom:50.625000px;}
.y15f{bottom:51.705000px;}
.y23e{bottom:54.720000px;}
.y2{bottom:56.880000px;}
.y17e{bottom:57.060000px;}
.y145{bottom:57.096000px;}
.y228{bottom:57.600000px;}
.y242{bottom:58.680000px;}
.y22c{bottom:58.860000px;}
.y226{bottom:66.600000px;}
.y185{bottom:69.660000px;}
.y1db{bottom:69.834000px;}
.y1e3{bottom:69.840000px;}
.y1d8{bottom:69.885000px;}
.y230{bottom:70.014000px;}
.y1d2{bottom:70.020000px;}
.y191{bottom:72.540000px;}
.y189{bottom:72.585000px;}
.y14e{bottom:74.520000px;}
.y182{bottom:74.880000px;}
.y164{bottom:75.780000px;}
.y1{bottom:77.616000px;}
.y144{bottom:77.796000px;}
.y1b7{bottom:78.834000px;}
.y1ab{bottom:78.840000px;}
.y1c3{bottom:78.885000px;}
.y22f{bottom:79.014000px;}
.y1d5{bottom:79.020000px;}
.y1ad{bottom:79.050000px;}
.y234{bottom:79.560000px;}
.y15e{bottom:80.145000px;}
.y23d{bottom:83.205000px;}
.y229{bottom:86.040000px;}
.y225{bottom:95.085000px;}
.y22b{bottom:95.625000px;}
.y1da{bottom:98.274000px;}
.y1eb{bottom:98.280000px;}
.y190{bottom:98.460000px;}
.y1b6{bottom:107.274000px;}
.y1b1{bottom:107.280000px;}
.y1c6{bottom:107.310000px;}
.y1b4{bottom:107.325000px;}
.y22e{bottom:107.454000px;}
.y1aa{bottom:107.460000px;}
.y22d{bottom:111.636000px;}
.y23c{bottom:111.645000px;}
.ye4{bottom:114.336000px;}
.y1b5{bottom:114.516000px;}
.y233{bottom:116.310000px;}
.y1c2{bottom:116.325000px;}
.y12b{bottom:117.216000px;}
.y207{bottom:117.396000px;}
.y4e{bottom:122.076000px;}
.y23a{bottom:122.085000px;}
.yda{bottom:123.336000px;}
.y224{bottom:123.525000px;}
.y2c7{bottom:123.696000px;}
.y18f{bottom:124.380000px;}
.y13d{bottom:126.216000px;}
.y1d9{bottom:126.714000px;}
.y161{bottom:126.900000px;}
.y151{bottom:126.930000px;}
.y158{bottom:126.945000px;}
.yf8{bottom:130.356000px;}
.y12{bottom:130.896000px;}
.y10d{bottom:131.436000px;}
.yc2{bottom:132.336000px;}
.y241{bottom:132.345000px;}
.y22a{bottom:132.525000px;}
.y271{bottom:133.236000px;}
.y1de{bottom:135.714000px;}
.y1b0{bottom:135.720000px;}
.y1b3{bottom:135.765000px;}
.y1a9{bottom:135.900000px;}
.y1ee{bottom:135.945000px;}
.yd5{bottom:136.296000px;}
.y121{bottom:139.356000px;}
.y23b{bottom:140.085000px;}
.y255{bottom:143.136000px;}
.y1c1{bottom:144.765000px;}
.ye3{bottom:145.296000px;}
.y2c4{bottom:146.376000px;}
.y1ce{bottom:147.096000px;}
.y12a{bottom:148.356000px;}
.y1a2{bottom:149.796000px;}
.y6f{bottom:150.150000px;}
.y14a{bottom:151.065000px;}
.y1e8{bottom:152.325000px;}
.y4d{bottom:153.210000px;}
.yae{bottom:154.290000px;}
.y1e2{bottom:155.340000px;}
.y1ea{bottom:155.385000px;}
.y2bc{bottom:156.630000px;}
.y13c{bottom:157.350000px;}
.y2c6{bottom:158.610000px;}
.y239{bottom:159.525000px;}
.y283{bottom:160.410000px;}
.yf7{bottom:161.310000px;}
.y10c{bottom:162.390000px;}
.yc1{bottom:163.290000px;}
.y1e5{bottom:164.340000px;}
.y270{bottom:164.370000px;}
.y1ed{bottom:164.385000px;}
.y219{bottom:164.550000px;}
.y263{bottom:165.090000px;}
.y17d{bottom:166.350000px;}
.yd4{bottom:167.430000px;}
.y238{bottom:168.525000px;}
.y240{bottom:169.245000px;}
.y120{bottom:170.310000px;}
.y292{bottom:170.490000px;}
.y11{bottom:170.850000px;}
.y1fc{bottom:171.930000px;}
.y1c0{bottom:173.205000px;}
.y254{bottom:174.090000px;}
.ye2{bottom:176.430000px;}
.y1cd{bottom:178.230000px;}
.y129{bottom:179.310000px;}
.y1e7{bottom:180.225000px;}
.y1a1{bottom:180.750000px;}
.y6e{bottom:181.290000px;}
.y29f{bottom:183.450000px;}
.y1e9{bottom:183.825000px;}
.y94{bottom:184.170000px;}
.yad{bottom:185.430000px;}
.y13b{bottom:187.770000px;}
.y206{bottom:188.490000px;}
.y282{bottom:191.370000px;}
.y2bb{bottom:191.730000px;}
.yf6{bottom:192.450000px;}
.y1ec{bottom:192.825000px;}
.y4c{bottom:193.170000px;}
.y10b{bottom:193.350000px;}
.yc0{bottom:194.430000px;}
.y218{bottom:195.510000px;}
.y2c2{bottom:196.050000px;}
.y262{bottom:196.230000px;}
.y237{bottom:196.965000px;}
.y157{bottom:197.130000px;}
.y17c{bottom:197.310000px;}
.yd3{bottom:198.390000px;}
.y11f{bottom:201.450000px;}
.y1bf{bottom:201.645000px;}
.y1fb{bottom:203.070000px;}
.y26f{bottom:204.330000px;}
.y253{bottom:205.230000px;}
.y23f{bottom:205.965000px;}
.ye1{bottom:207.390000px;}
.y128{bottom:210.450000px;}
.y10{bottom:210.990000px;}
.y1a0{bottom:211.890000px;}
.y6d{bottom:212.250000px;}
.y29e{bottom:214.590000px;}
.y93{bottom:215.310000px;}
.yac{bottom:216.390000px;}
.y13a{bottom:217.470000px;}
.y1cc{bottom:218.190000px;}
.y205{bottom:219.450000px;}
.y35{bottom:222.150000px;}
.y4b{bottom:224.310000px;}
.y10a{bottom:224.490000px;}
.y2ba{bottom:225.030000px;}
.ybf{bottom:225.390000px;}
.y217{bottom:226.650000px;}
.y261{bottom:227.190000px;}
.y17b{bottom:228.450000px;}
.y1be{bottom:230.085000px;}
.yf5{bottom:232.410000px;}
.y26e{bottom:235.470000px;}
.y2c1{bottom:236.190000px;}
.yd2{bottom:238.350000px;}
.y281{bottom:240.510000px;}
.y11e{bottom:241.410000px;}
.y19f{bottom:242.850000px;}
.y1fa{bottom:243.030000px;}
.y223{bottom:245.010000px;}
.y252{bottom:245.190000px;}
.y92{bottom:246.270000px;}
.yab{bottom:247.350000px;}
.y1b2{bottom:247.890000px;}
.y1cb{bottom:249.330000px;}
.y127{bottom:250.410000px;}
.y204{bottom:250.590000px;}
.yf{bottom:250.950000px;}
.y6c{bottom:252.390000px;}
.ybe{bottom:256.350000px;}
.y216{bottom:257.610000px;}
.y260{bottom:258.330000px;}
.y1bd{bottom:258.705000px;}
.y17a{bottom:259.410000px;}
.yf4{bottom:263.550000px;}
.y4a{bottom:264.270000px;}
.y109{bottom:264.450000px;}
.y34{bottom:265.170000px;}
.y26d{bottom:266.430000px;}
.y2b5{bottom:266.790000px;}
.y1bc{bottom:267.705000px;}
.yd1{bottom:269.490000px;}
.y1d7{bottom:270.030000px;}
.y2c0{bottom:271.110000px;}
.y280{bottom:271.470000px;}
.y11d{bottom:272.550000px;}
.y159{bottom:273.675000px;}
.y19e{bottom:273.990000px;}
.y1f9{bottom:274.170000px;}
.y2a6{bottom:275.250000px;}
.y251{bottom:276.330000px;}
.y139{bottom:277.050000px;}
.y91{bottom:277.410000px;}
.yaa{bottom:278.490000px;}
.y1ca{bottom:280.290000px;}
.y126{bottom:281.550000px;}
.y6b{bottom:283.350000px;}
.ybd{bottom:287.490000px;}
.y215{bottom:288.750000px;}
.y25f{bottom:289.290000px;}
.y179{bottom:290.550000px;}
.y29d{bottom:294.690000px;}
.y49{bottom:295.410000px;}
.y108{bottom:295.590000px;}
.y1bb{bottom:296.145000px;}
.y2bf{bottom:297.030000px;}
.y26c{bottom:297.570000px;}
.yd0{bottom:300.450000px;}
.y2b4{bottom:301.890000px;}
.yf3{bottom:303.510000px;}
.ye{bottom:303.870000px;}
.y19d{bottom:304.950000px;}
.y1f8{bottom:305.130000px;}
.y33{bottom:305.310000px;}
.y2a5{bottom:306.210000px;}
.y12c{bottom:306.390000px;}
.y138{bottom:307.290000px;}
.y90{bottom:308.370000px;}
.ye0{bottom:309.450000px;}
.y125{bottom:312.510000px;}
.y203{bottom:312.690000px;}
.y6a{bottom:314.490000px;}
.y166{bottom:314.535000px;}
.y1c9{bottom:317.910000px;}
.ya9{bottom:318.450000px;}
.y214{bottom:319.710000px;}
.y25e{bottom:320.430000px;}
.y27f{bottom:320.610000px;}
.y178{bottom:321.510000px;}
.y2a4{bottom:323.490000px;}
.y1ba{bottom:324.585000px;}
.y48{bottom:326.370000px;}
.y107{bottom:326.550000px;}
.ybc{bottom:327.450000px;}
.y26b{bottom:328.530000px;}
.y291{bottom:330.690000px;}
.ycf{bottom:331.590000px;}
.yf2{bottom:334.650000px;}
.y2b3{bottom:335.010000px;}
.y19c{bottom:336.090000px;}
.y1f7{bottom:336.270000px;}
.y137{bottom:338.475000px;}
.y163{bottom:339.015000px;}
.ydf{bottom:340.635000px;}
.y2aa{bottom:341.895000px;}
.y11c{bottom:343.695000px;}
.y32{bottom:345.315000px;}
.y69{bottom:345.495000px;}
.y250{bottom:347.475000px;}
.y8f{bottom:348.555000px;}
.ya8{bottom:349.635000px;}
.y150{bottom:349.995000px;}
.y213{bottom:350.895000px;}
.y27e{bottom:351.615000px;}
.y202{bottom:352.695000px;}
.y1c8{bottom:352.875000px;}
.y2a3{bottom:356.835000px;}
.y47{bottom:357.555000px;}
.y106{bottom:357.735000px;}
.ybb{bottom:358.635000px;}
.y26a{bottom:359.715000px;}
.y25d{bottom:360.435000px;}
.y177{bottom:361.695000px;}
.yd{bottom:363.495000px;}
.yf1{bottom:365.655000px;}
.y1d1{bottom:365.835000px;}
.y19b{bottom:367.095000px;}
.y1f6{bottom:367.275000px;}
.y136{bottom:369.435000px;}
.yce{bottom:371.595000px;}
.y11b{bottom:374.655000px;}
.y29c{bottom:374.835000px;}
.y68{bottom:376.455000px;}
.y1c7{bottom:377.355000px;}
.y24f{bottom:378.435000px;}
.y8e{bottom:379.515000px;}
.ya7{bottom:380.595000px;}
.y212{bottom:381.855000px;}
.y201{bottom:383.835000px;}
.y2a9{bottom:384.915000px;}
.y31{bottom:385.455000px;}
.yba{bottom:389.595000px;}
.y25c{bottom:391.575000px;}
.y176{bottom:392.655000px;}
.y220{bottom:394.455000px;}
.yf0{bottom:396.795000px;}
.y46{bottom:397.515000px;}
.y105{bottom:397.695000px;}
.y19a{bottom:398.235000px;}
.y1f5{bottom:398.415000px;}
.y269{bottom:399.675000px;}
.y135{bottom:400.575000px;}
.y27d{bottom:400.755000px;}
.ycd{bottom:402.735000px;}
.y11a{bottom:405.795000px;}
.y67{bottom:407.595000px;}
.y24e{bottom:409.575000px;}
.y1af{bottom:409.755000px;}
.y8d{bottom:410.655000px;}
.y290{bottom:410.835000px;}
.ya6{bottom:411.735000px;}
.y124{bottom:414.795000px;}
.y143{bottom:418.755000px;}
.y2a8{bottom:419.835000px;}
.y21c{bottom:420.735000px;}
.y211{bottom:421.995000px;}
.y25b{bottom:422.535000px;}
.yc{bottom:422.895000px;}
.y175{bottom:423.795000px;}
.y30{bottom:425.415000px;}
.y152{bottom:426.495000px;}
.y45{bottom:428.655000px;}
.y104{bottom:428.835000px;}
.y1f4{bottom:429.375000px;}
.yb9{bottom:429.735000px;}
.y134{bottom:431.535000px;}
.y27c{bottom:431.715000px;}
.ycc{bottom:433.695000px;}
.y2b2{bottom:436.395000px;}
.yef{bottom:436.755000px;}
.y199{bottom:438.195000px;}
.y66{bottom:438.555000px;}
.y24d{bottom:440.535000px;}
.y160{bottom:440.745000px;}
.y8c{bottom:441.615000px;}
.y28f{bottom:441.795000px;}
.yd9{bottom:442.695000px;}
.y123{bottom:445.575000px;}
.y268{bottom:445.755000px;}
.y200{bottom:450.975000px;}
.ya5{bottom:451.695000px;}
.y210{bottom:452.955000px;}
.y2a7{bottom:453.135000px;}
.y25a{bottom:453.675000px;}
.y174{bottom:454.755000px;}
.y29b{bottom:454.935000px;}
.y142{bottom:458.895000px;}
.y44{bottom:459.615000px;}
.y103{bottom:459.795000px;}
.y1f3{bottom:460.335000px;}
.yb8{bottom:460.695000px;}
.y133{bottom:462.675000px;}
.ycb{bottom:464.835000px;}
.y2f{bottom:465.555000px;}
.yee{bottom:467.895000px;}
.y198{bottom:469.335000px;}
.y2b1{bottom:471.315000px;}
.y24c{bottom:471.675000px;}
.y28e{bottom:472.935000px;}
.yde{bottom:473.835000px;}
.y119{bottom:476.895000px;}
.y65{bottom:478.515000px;}
.y27b{bottom:480.855000px;}
.y8b{bottom:481.755000px;}
.yb{bottom:482.475000px;}
.ya4{bottom:482.835000px;}
.y20f{bottom:483.915000px;}
.y259{bottom:484.635000px;}
.y173{bottom:485.895000px;}
.y1ff{bottom:488.235000px;}
.y141{bottom:489.855000px;}
.y1d0{bottom:490.215000px;}
.y43{bottom:490.755000px;}
.y102{bottom:490.935000px;}
.yb7{bottom:491.835000px;}
.y132{bottom:493.635000px;}
.yed{bottom:498.855000px;}
.y1f2{bottom:500.475000px;}
.y24b{bottom:502.635000px;}
.y149{bottom:502.845000px;}
.y2b0{bottom:504.615000px;}
.yca{bottom:504.795000px;}
.y2e{bottom:505.515000px;}
.y197{bottom:506.955000px;}
.y118{bottom:507.855000px;}
.y2b9{bottom:509.475000px;}
.y1c5{bottom:510.735000px;}
.y27a{bottom:511.815000px;}
.y8a{bottom:512.715000px;}
.ya3{bottom:513.795000px;}
.y172{bottom:516.855000px;}
.y162{bottom:517.245000px;}
.y140{bottom:520.995000px;}
.y101{bottom:521.895000px;}
.yb6{bottom:522.795000px;}
.y20e{bottom:524.055000px;}
.y64{bottom:524.775000px;}
.y2ad{bottom:524.955000px;}
.yec{bottom:529.995000px;}
.y42{bottom:530.715000px;}
.y1f1{bottom:531.435000px;}
.y24a{bottom:533.775000px;}
.y29a{bottom:535.035000px;}
.yc9{bottom:535.935000px;}
.y117{bottom:538.995000px;}
.y1cf{bottom:540.075000px;}
.y196{bottom:541.695000px;}
.ya{bottom:541.875000px;}
.y2b8{bottom:542.775000px;}
.y89{bottom:543.855000px;}
.ya2{bottom:544.935000px;}
.y2d{bottom:545.655000px;}
.y171{bottom:547.995000px;}
.y100{bottom:553.035000px;}
.yb5{bottom:553.935000px;}
.y63{bottom:555.735000px;}
.y13f{bottom:560.775000px;}
.yeb{bottom:560.955000px;}
.y20d{bottom:561.675000px;}
.y41{bottom:561.855000px;}
.y2ac{bottom:562.935000px;}
.y249{bottom:564.735000px;}
.y299{bottom:565.995000px;}
.y193{bottom:566.355000px;}
.ydd{bottom:566.895000px;}
.y267{bottom:569.955000px;}
.y1ac{bottom:571.395000px;}
.y2af{bottom:573.015000px;}
.yc8{bottom:575.895000px;}
.y116{bottom:578.955000px;}
.y88{bottom:583.815000px;}
.yff{bottom:583.995000px;}
.y9{bottom:584.535000px;}
.ya1{bottom:584.895000px;}
.y2c{bottom:585.615000px;}
.y20c{bottom:586.155000px;}
.y62{bottom:586.875000px;}
.y21f{bottom:591.915000px;}
.y40{bottom:592.815000px;}
.y15d{bottom:593.565000px;}
.y2ab{bottom:596.235000px;}
.y298{bottom:597.135000px;}
.yea{bottom:600.915000px;}
.y28d{bottom:601.995000px;}
.y14b{bottom:603.465000px;}
.y248{bottom:604.905000px;}
.y2ae{bottom:606.345000px;}
.yd8{bottom:607.065000px;}
.y115{bottom:609.945000px;}
.y87{bottom:614.985000px;}
.y1f0{bottom:615.165000px;}
.y8{bottom:616.065000px;}
.y131{bottom:617.865000px;}
.y279{bottom:623.085000px;}
.yfe{bottom:624.165000px;}
.y122{bottom:625.065000px;}
.y2b{bottom:625.785000px;}
.y61{bottom:626.865000px;}
.ye9{bottom:632.085000px;}
.y3f{bottom:632.985000px;}
.y28c{bottom:633.165000px;}
.y20b{bottom:634.065000px;}
.y247{bottom:635.865000px;}
.y18e{bottom:636.045000px;}
.ydc{bottom:638.025000px;}
.y1ef{bottom:639.645000px;}
.y114{bottom:641.085000px;}
.y1c4{bottom:644.145000px;}
.y86{bottom:645.945000px;}
.y297{bottom:646.125000px;}
.ya0{bottom:647.025000px;}
.y130{bottom:649.005000px;}
.yb4{bottom:656.025000px;}
.y60{bottom:658.005000px;}
.ye8{bottom:663.045000px;}
.y3e{bottom:663.945000px;}
.yfd{bottom:664.125000px;}
.y2c3{bottom:665.745000px;}
.y246{bottom:667.005000px;}
.y2a{bottom:668.085000px;}
.y13e{bottom:669.165000px;}
.y113{bottom:672.045000px;}
.y7{bottom:674.205000px;}
.y2a2{bottom:674.385000px;}
.y1a8{bottom:676.365000px;}
.y85{bottom:677.085000px;}
.y296{bottom:677.265000px;}
.y9f{bottom:678.165000px;}
.y258{bottom:679.965000px;}
.y147{bottom:681.630000px;}
.y20a{bottom:682.125000px;}
.y2c5{bottom:685.005000px;}
.yb3{bottom:687.165000px;}
.y5f{bottom:688.965000px;}
.ye7{bottom:694.185000px;}
.y15b{bottom:699.810000px;}
.y278{bottom:703.005000px;}
.y112{bottom:703.185000px;}
.y3d{bottom:704.085000px;}
.yfc{bottom:704.265000px;}
.y245{bottom:706.965000px;}
.y84{bottom:708.045000px;}
.y9e{bottom:709.125000px;}
.y2be{bottom:711.465000px;}
.y28b{bottom:713.265000px;}
.yc7{bottom:718.125000px;}
.y5e{bottom:720.105000px;}
.y29{bottom:722.085000px;}
.y6{bottom:723.165000px;}
.ye6{bottom:725.145000px;}
.y295{bottom:726.225000px;}
.yb2{bottom:727.125000px;}
.y209{bottom:730.005000px;}
.y111{bottom:734.145000px;}
.y3c{bottom:735.045000px;}
.y1e6{bottom:735.585000px;}
.y2bd{bottom:737.385000px;}
.y244{bottom:738.105000px;}
.y1f{bottom:739.185000px;}
.y9d{bottom:740.265000px;}
.yfb{bottom:744.225000px;}
.y83{bottom:748.005000px;}
.y146{bottom:748.590000px;}
.yc6{bottom:749.265000px;}
.y5d{bottom:751.065000px;}
.y21e{bottom:756.285000px;}
.y2a1{bottom:757.365000px;}
.yb1{bottom:758.265000px;}
.y1e{bottom:762.765000px;}
.ye5{bottom:765.105000px;}
.y110{bottom:765.285000px;}
.y3b{bottom:766.005000px;}
.y5{bottom:769.785000px;}
.y9c{bottom:771.225000px;}
.y28{bottom:774.285000px;}
.y28a{bottom:775.365000px;}
.y243{bottom:775.545000px;}
.y79{bottom:777.165000px;}
.y82{bottom:779.145000px;}
.yc5{bottom:780.225000px;}
.y5c{bottom:782.205000px;}
.y277{bottom:783.105000px;}
.y18c{bottom:783.465000px;}
.yfa{bottom:784.365000px;}
.yb0{bottom:789.225000px;}
.y257{bottom:791.025000px;}
.y12f{bottom:791.205000px;}
.y55{bottom:794.085000px;}
.y1d{bottom:796.065000px;}
.y10f{bottom:796.245000px;}
.y236{bottom:800.205000px;}
.y9b{bottom:802.365000px;}
.y2b7{bottom:803.805000px;}
.y1b9{bottom:805.965000px;}
.y3a{bottom:806.145000px;}
.y289{bottom:806.325000px;}
.y208{bottom:806.505000px;}
.y81{bottom:810.105000px;}
.yc4{bottom:811.365000px;}
.y5b{bottom:813.165000px;}
.y27{bottom:814.245000px;}
.y4{bottom:817.125000px;}
.y78{bottom:820.365000px;}
.y12e{bottom:822.165000px;}
.yf9{bottom:824.325000px;}
.y10e{bottom:827.205000px;}
.y170{bottom:827.385000px;}
.y9a{bottom:833.325000px;}
.y2b6{bottom:836.925000px;}
.y39{bottom:837.105000px;}
.y294{bottom:837.465000px;}
.y1a6{bottom:839.985000px;}
.yc3{bottom:842.325000px;}
.y1c{bottom:848.085000px;}
.y80{bottom:850.245000px;}
.y77{bottom:851.325000px;}
.y188{bottom:853.125000px;}
.y5a{bottom:853.305000px;}
.y26{bottom:854.385000px;}
.y288{bottom:855.465000px;}
.y16f{bottom:858.345000px;}
.y276{bottom:863.205000px;}
.y99{bottom:864.465000px;}
.y21d{bottom:867.345000px;}
.y38{bottom:868.245000px;}
.y2a0{bottom:868.425000px;}
.yd7{bottom:873.510000px;}
.y7f{bottom:881.250000px;}
.y76{bottom:882.510000px;}
.y59{bottom:884.310000px;}
.y287{bottom:886.470000px;}
.y16e{bottom:889.530000px;}
.y1b{bottom:890.250000px;}
.y25{bottom:894.390000px;}
.y98{bottom:895.470000px;}
.y266{bottom:898.530000px;}
.y37{bottom:899.250000px;}
.y272{bottom:901.410000px;}
.yd6{bottom:904.470000px;}
.y75{bottom:913.470000px;}
.y58{bottom:915.450000px;}
.y286{bottom:917.610000px;}
.y16d{bottom:920.490000px;}
.y7e{bottom:921.390000px;}
.y21b{bottom:922.470000px;}
.y1fe{bottom:926.610000px;}
.y265{bottom:929.490000px;}
.y36{bottom:930.390000px;}
.y24{bottom:934.530000px;}
.y1a5{bottom:935.430000px;}
.y97{bottom:935.610000px;}
.y1a{bottom:939.390000px;}
.y275{bottom:943.350000px;}
.y74{bottom:944.610000px;}
.y1e1{bottom:945.330000px;}
.y57{bottom:946.410000px;}
.y285{bottom:948.570000px;}
.y181{bottom:950.370000px;}
.y16c{bottom:951.630000px;}
.y7d{bottom:952.350000px;}
.y21a{bottom:953.610000px;}
.y12d{bottom:955.230000px;}
.y1fd{bottom:957.570000px;}
.y54{bottom:961.350000px;}
.y256{bottom:963.510000px;}
.y96{bottom:966.570000px;}
.y264{bottom:969.450000px;}
.y19{bottom:970.350000px;}
.y23{bottom:974.490000px;}
.y73{bottom:975.570000px;}
.y16b{bottom:982.590000px;}
.y7c{bottom:983.490000px;}
.ydb{bottom:984.570000px;}
.y56{bottom:986.370000px;}
.y53{bottom:992.490000px;}
.y52{bottom:994.650000px;}
.y95{bottom:997.710000px;}
.y18{bottom:1001.490000px;}
.y1a4{bottom:1006.530000px;}
.yaf{bottom:1006.710000px;}
.y16a{bottom:1013.730000px;}
.y7b{bottom:1014.450000px;}
.y22{bottom:1014.630000px;}
.y72{bottom:1015.710000px;}
.y232{bottom:1023.270000px;}
.y274{bottom:1023.450000px;}
.y284{bottom:1028.670000px;}
.y17{bottom:1032.450000px;}
.y51{bottom:1037.670000px;}
.y71{bottom:1046.670000px;}
.y169{bottom:1053.690000px;}
.y21{bottom:1054.590000px;}
.y293{bottom:1059.810000px;}
.y16{bottom:1063.590000px;}
.y180{bottom:1068.630000px;}
.y50{bottom:1068.810000px;}
.y1a3{bottom:1077.630000px;}
.y70{bottom:1077.810000px;}
.y168{bottom:1084.830000px;}
.y273{bottom:1085.550000px;}
.y7a{bottom:1088.430000px;}
.y15{bottom:1094.550000px;}
.y4f{bottom:1108.770000px;}
.y167{bottom:1124.790000px;}
.y1df{bottom:1126.590000px;}
.y3{bottom:1130.910000px;}
.y20{bottom:1136.850000px;}
.y14{bottom:1137.030000px;}
.y17f{bottom:1139.760000px;}
.y13{bottom:1139.940000px;}
.h7{height:5.805000px;}
.h35{height:28.476000px;}
.h30{height:46.440000px;}
.h3a{height:46.476000px;}
.h12{height:46.620000px;}
.h3e{height:52.971680px;}
.h22{height:53.252930px;}
.h4{height:58.651172px;}
.h3b{height:59.027344px;}
.h17{height:59.383125px;}
.h21{height:60.226875px;}
.h1c{height:64.080000px;}
.h1b{height:64.260000px;}
.hd{height:64.546875px;}
.h15{height:65.010937px;}
.h13{height:66.757500px;}
.hf{height:67.837500px;}
.h32{height:68.084282px;}
.h24{height:69.660000px;}
.h26{height:69.696000px;}
.he{height:70.628906px;}
.h2{height:70.664062px;}
.h9{height:72.562500px;}
.hc{height:74.004654px;}
.h1a{height:74.880000px;}
.h16{height:74.916000px;}
.h39{height:75.060000px;}
.h27{height:75.096000px;}
.ha{height:84.898125px;}
.hb{height:86.585445px;}
.h33{height:94.356000px;}
.h38{height:94.500000px;}
.h23{height:95.616000px;}
.h20{height:97.920000px;}
.h18{height:99.000000px;}
.h1f{height:100.296000px;}
.h29{height:103.536000px;}
.h1d{height:104.616000px;}
.h6{height:108.843750px;}
.h3{height:118.008984px;}
.h5{height:121.179375px;}
.h31{height:122.940000px;}
.h2c{height:131.760000px;}
.h2e{height:131.796000px;}
.h2f{height:131.940000px;}
.h8{height:135.607500px;}
.h25{height:147.420000px;}
.h3c{height:147.996000px;}
.h34{height:151.200000px;}
.h1e{height:151.380000px;}
.h19{height:151.410000px;}
.h2a{height:160.200000px;}
.h2b{height:160.230000px;}
.h28{height:160.380000px;}
.h14{height:175.530000px;}
.h36{height:179.820000px;}
.h37{height:208.290000px;}
.h3d{height:221.430000px;}
.h2d{height:349.095000px;}
.h10{height:892.980000px;}
.h11{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:17.280000px;}
.w23{width:17.460000px;}
.w22{width:83.916000px;}
.w1f{width:84.636000px;}
.wa{width:84.996000px;}
.wb{width:85.140000px;}
.w1b{width:85.176000px;}
.w1e{width:94.500000px;}
.w1a{width:94.860000px;}
.wd{width:95.580000px;}
.wf{width:95.616000px;}
.w26{width:96.300000px;}
.w27{width:101.196000px;}
.w24{width:105.840000px;}
.w10{width:106.380000px;}
.wc{width:106.416000px;}
.w25{width:108.936000px;}
.w21{width:109.980000px;}
.w1c{width:117.000000px;}
.w1d{width:126.936000px;}
.we{width:138.276000px;}
.w11{width:141.840000px;}
.w12{width:150.330000px;}
.w9{width:159.660000px;}
.w6{width:176.790000px;}
.w7{width:189.930000px;}
.w15{width:214.590000px;}
.w19{width:322.995000px;}
.w18{width:323.130000px;}
.w17{width:323.355000px;}
.w16{width:323.490000px;}
.w13{width:357.375000px;}
.w8{width:604.695000px;}
.w14{width:646.845000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w5{width:1262.879981px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x15{left:7.380000px;}
.x57{left:8.820000px;}
.x2a{left:10.080000px;}
.x26{left:11.160000px;}
.x2d{left:12.780000px;}
.x24{left:14.625000px;}
.x3f{left:15.660000px;}
.x30{left:17.280000px;}
.x23{left:18.765000px;}
.x34{left:20.745000px;}
.x35{left:21.780000px;}
.x2e{left:22.860000px;}
.x1e{left:24.840000px;}
.x31{left:25.920000px;}
.x36{left:27.000000px;}
.x1f{left:28.440000px;}
.x2f{left:29.880000px;}
.x27{left:31.140000px;}
.x32{left:33.480000px;}
.x47{left:34.554000px;}
.x44{left:35.865000px;}
.x2c{left:36.900000px;}
.x33{left:37.980000px;}
.x1c{left:39.240000px;}
.x20{left:40.860000px;}
.x56{left:41.940000px;}
.x3e{left:43.785000px;}
.x45{left:45.174000px;}
.x1a{left:46.476000px;}
.x1d{left:49.680000px;}
.x42{left:51.294000px;}
.x3d{left:52.554000px;}
.x1b{left:55.260000px;}
.x17{left:58.140000px;}
.x4a{left:61.920000px;}
.x41{left:64.650000px;}
.x43{left:68.070000px;}
.x40{left:70.050000px;}
.x51{left:77.034000px;}
.x4f{left:93.234000px;}
.x48{left:96.150000px;}
.x14{left:99.000000px;}
.x13{left:106.379981px;}
.x46{left:109.290000px;}
.x39{left:120.276000px;}
.x2{left:127.655987px;}
.x3c{left:137.010000px;}
.x5e{left:141.515987px;}
.xe{left:144.215987px;}
.x8{left:146.015987px;}
.x64{left:151.409987px;}
.xf{left:154.649987px;}
.x5{left:157.169987px;}
.x6c{left:172.469987px;}
.xb{left:175.349987px;}
.x10{left:181.649987px;}
.x60{left:182.909987px;}
.x9{left:184.349987px;}
.x6{left:192.629987px;}
.x67{left:198.749987px;}
.x19{left:210.630000px;}
.x65{left:216.749987px;}
.x75{left:220.529987px;}
.x52{left:223.230000px;}
.x78{left:227.549987px;}
.xa{left:230.789987px;}
.x4d{left:233.489987px;}
.x6a{left:242.489987px;}
.x68{left:251.849987px;}
.x6e{left:258.329987px;}
.x3a{left:263.730000px;}
.x76{left:264.809987px;}
.x22{left:265.890000px;}
.x16{left:277.230000px;}
.x7{left:279.614987px;}
.x62{left:290.234987px;}
.x70{left:292.934987px;}
.x4e{left:296.534987px;}
.x73{left:299.234987px;}
.x72{left:304.814987px;}
.x4c{left:308.234987px;}
.x58{left:326.415000px;}
.x49{left:336.315000px;}
.x61{left:345.494987px;}
.x25{left:350.895000px;}
.x38{left:360.614987px;}
.xc{left:371.774987px;}
.x5d{left:402.734987px;}
.x3b{left:415.515000px;}
.x53{left:425.415000px;}
.x28{left:436.035000px;}
.x11{left:437.474987px;}
.x1{left:441.974987px;}
.x50{left:443.775000px;}
.x3{left:446.474987px;}
.x18{left:468.615000px;}
.x54{left:521.025000px;}
.xd{left:526.604987px;}
.x37{left:531.645000px;}
.x59{left:538.845000px;}
.x29{left:542.445000px;}
.x21{left:547.634981px;}
.x6f{left:551.084987px;}
.x4b{left:552.525000px;}
.x74{left:613.004987px;}
.x12{left:622.514981px;}
.x77{left:625.424987px;}
.x55{left:627.405000px;}
.x5b{left:635.865000px;}
.x2b{left:638.025000px;}
.x5a{left:645.405000px;}
.x5c{left:653.145000px;}
.x63{left:714.209987px;}
.x6d{left:716.549987px;}
.x5f{left:721.589987px;}
.x71{left:725.909987px;}
.x4{left:727.889987px;}
.x66{left:732.209987px;}
.x6b{left:761.009987px;}
.x69{left:763.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.045333pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls25{letter-spacing:-0.230933pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.233067pt;}
.ls24{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.368533pt;}
.lsd{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.640000pt;}
.ls11{letter-spacing:3.328000pt;}
.ls10{letter-spacing:7.168000pt;}
.ls14{letter-spacing:8.320000pt;}
.ls20{letter-spacing:11.520000pt;}
.ls1d{letter-spacing:15.360000pt;}
.ls4{letter-spacing:18.863360pt;}
.ls8{letter-spacing:25.088000pt;}
.ls7{letter-spacing:28.288000pt;}
.lsb{letter-spacing:30.208000pt;}
.lsa{letter-spacing:34.048000pt;}
.ls3{letter-spacing:55.813120pt;}
.ls1c{letter-spacing:57.088000pt;}
.ls17{letter-spacing:59.791360pt;}
.ls2{letter-spacing:752.138667pt;}
.ws2{word-spacing:-19.040000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.360000pt;}
.wsd{word-spacing:-15.088533pt;}
.ws7{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.313067pt;}
.wse{word-spacing:-13.674667pt;}
.wsb{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.049067pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-12.661333pt;}
._d{margin-left:-11.093333pt;}
._b{margin-left:-9.493333pt;}
._11{margin-left:-8.576000pt;}
._f{margin-left:-7.605333pt;}
._e{margin-left:-5.813333pt;}
._10{margin-left:-4.181333pt;}
._21{margin-left:-2.333867pt;}
._0{margin-left:-1.282560pt;}
._1{width:0.909227pt;}
._7{width:2.368000pt;}
._8{width:3.338667pt;}
._3{width:4.288000pt;}
._4{width:5.248000pt;}
._12{width:6.656000pt;}
._5{width:8.320000pt;}
._6{width:9.280000pt;}
._9{width:10.418773pt;}
._a{width:11.584000pt;}
._1b{width:12.928000pt;}
._15{width:14.016000pt;}
._16{width:14.976000pt;}
._2c{width:16.192000pt;}
._1f{width:17.728000pt;}
._19{width:19.082667pt;}
._18{width:20.032000pt;}
._1a{width:21.482667pt;}
._25{width:22.661120pt;}
._17{width:23.552000pt;}
._13{width:24.832000pt;}
._14{width:25.789440pt;}
._22{width:26.999467pt;}
._1d{width:28.021333pt;}
._1e{width:29.066667pt;}
._20{width:30.602240pt;}
._1c{width:31.914667pt;}
._26{width:33.581227pt;}
._27{width:37.696000pt;}
._28{width:38.656000pt;}
._29{width:40.090880pt;}
._36{width:42.496000pt;}
._2e{width:44.042667pt;}
._2d{width:45.056000pt;}
._2a{width:47.146667pt;}
._2b{width:48.093867pt;}
._24{width:49.333333pt;}
._23{width:50.240000pt;}
._32{width:51.284480pt;}
._31{width:102.438400pt;}
._33{width:130.247680pt;}
._34{width:176.803840pt;}
._30{width:340.480000pt;}
._2f{width:556.938667pt;}
._2{width:752.138667pt;}
._35{width:967.786667pt;}
._37{width:1279.786667pt;}
.fs4{font-size:5.120000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fs5{font-size:122.880000pt;}
.y0{bottom:0.000000pt;}
.y1dd{bottom:11.520000pt;}
.y1e0{bottom:11.546667pt;}
.y1d4{bottom:11.680000pt;}
.y195{bottom:18.400000pt;}
.y187{bottom:18.560000pt;}
.y18b{bottom:18.600000pt;}
.y156{bottom:19.520000pt;}
.y154{bottom:19.546667pt;}
.y14d{bottom:19.560000pt;}
.y148{bottom:19.680000pt;}
.y184{bottom:20.480000pt;}
.y222{bottom:21.600000pt;}
.y231{bottom:28.800000pt;}
.y227{bottom:33.760000pt;}
.y15a{bottom:35.354667pt;}
.y1dc{bottom:36.794667pt;}
.y1e4{bottom:36.800000pt;}
.y1d3{bottom:36.960000pt;}
.y235{bottom:37.920000pt;}
.y14f{bottom:40.960000pt;}
.y18d{bottom:41.440000pt;}
.y194{bottom:41.466667pt;}
.y192{bottom:41.600000pt;}
.y18a{bottom:41.640000pt;}
.y221{bottom:41.760000pt;}
.y186{bottom:41.920000pt;}
.y165{bottom:42.080000pt;}
.y15c{bottom:43.200000pt;}
.y183{bottom:43.520000pt;}
.y1b8{bottom:44.794667pt;}
.y155{bottom:44.800000pt;}
.y153{bottom:44.826667pt;}
.y14c{bottom:44.840000pt;}
.y1d6{bottom:44.960000pt;}
.y1ae{bottom:44.986667pt;}
.y1a7{bottom:45.000000pt;}
.y15f{bottom:45.960000pt;}
.y23e{bottom:48.640000pt;}
.y2{bottom:50.560000pt;}
.y17e{bottom:50.720000pt;}
.y145{bottom:50.752000pt;}
.y228{bottom:51.200000pt;}
.y242{bottom:52.160000pt;}
.y22c{bottom:52.320000pt;}
.y226{bottom:59.200000pt;}
.y185{bottom:61.920000pt;}
.y1db{bottom:62.074667pt;}
.y1e3{bottom:62.080000pt;}
.y1d8{bottom:62.120000pt;}
.y230{bottom:62.234667pt;}
.y1d2{bottom:62.240000pt;}
.y191{bottom:64.480000pt;}
.y189{bottom:64.520000pt;}
.y14e{bottom:66.240000pt;}
.y182{bottom:66.560000pt;}
.y164{bottom:67.360000pt;}
.y1{bottom:68.992000pt;}
.y144{bottom:69.152000pt;}
.y1b7{bottom:70.074667pt;}
.y1ab{bottom:70.080000pt;}
.y1c3{bottom:70.120000pt;}
.y22f{bottom:70.234667pt;}
.y1d5{bottom:70.240000pt;}
.y1ad{bottom:70.266667pt;}
.y234{bottom:70.720000pt;}
.y15e{bottom:71.240000pt;}
.y23d{bottom:73.960000pt;}
.y229{bottom:76.480000pt;}
.y225{bottom:84.520000pt;}
.y22b{bottom:85.000000pt;}
.y1da{bottom:87.354667pt;}
.y1eb{bottom:87.360000pt;}
.y190{bottom:87.520000pt;}
.y1b6{bottom:95.354667pt;}
.y1b1{bottom:95.360000pt;}
.y1c6{bottom:95.386667pt;}
.y1b4{bottom:95.400000pt;}
.y22e{bottom:95.514667pt;}
.y1aa{bottom:95.520000pt;}
.y22d{bottom:99.232000pt;}
.y23c{bottom:99.240000pt;}
.ye4{bottom:101.632000pt;}
.y1b5{bottom:101.792000pt;}
.y233{bottom:103.386667pt;}
.y1c2{bottom:103.400000pt;}
.y12b{bottom:104.192000pt;}
.y207{bottom:104.352000pt;}
.y4e{bottom:108.512000pt;}
.y23a{bottom:108.520000pt;}
.yda{bottom:109.632000pt;}
.y224{bottom:109.800000pt;}
.y2c7{bottom:109.952000pt;}
.y18f{bottom:110.560000pt;}
.y13d{bottom:112.192000pt;}
.y1d9{bottom:112.634667pt;}
.y161{bottom:112.800000pt;}
.y151{bottom:112.826667pt;}
.y158{bottom:112.840000pt;}
.yf8{bottom:115.872000pt;}
.y12{bottom:116.352000pt;}
.y10d{bottom:116.832000pt;}
.yc2{bottom:117.632000pt;}
.y241{bottom:117.640000pt;}
.y22a{bottom:117.800000pt;}
.y271{bottom:118.432000pt;}
.y1de{bottom:120.634667pt;}
.y1b0{bottom:120.640000pt;}
.y1b3{bottom:120.680000pt;}
.y1a9{bottom:120.800000pt;}
.y1ee{bottom:120.840000pt;}
.yd5{bottom:121.152000pt;}
.y121{bottom:123.872000pt;}
.y23b{bottom:124.520000pt;}
.y255{bottom:127.232000pt;}
.y1c1{bottom:128.680000pt;}
.ye3{bottom:129.152000pt;}
.y2c4{bottom:130.112000pt;}
.y1ce{bottom:130.752000pt;}
.y12a{bottom:131.872000pt;}
.y1a2{bottom:133.152000pt;}
.y6f{bottom:133.466667pt;}
.y14a{bottom:134.280000pt;}
.y1e8{bottom:135.400000pt;}
.y4d{bottom:136.186667pt;}
.yae{bottom:137.146667pt;}
.y1e2{bottom:138.080000pt;}
.y1ea{bottom:138.120000pt;}
.y2bc{bottom:139.226667pt;}
.y13c{bottom:139.866667pt;}
.y2c6{bottom:140.986667pt;}
.y239{bottom:141.800000pt;}
.y283{bottom:142.586667pt;}
.yf7{bottom:143.386667pt;}
.y10c{bottom:144.346667pt;}
.yc1{bottom:145.146667pt;}
.y1e5{bottom:146.080000pt;}
.y270{bottom:146.106667pt;}
.y1ed{bottom:146.120000pt;}
.y219{bottom:146.266667pt;}
.y263{bottom:146.746667pt;}
.y17d{bottom:147.866667pt;}
.yd4{bottom:148.826667pt;}
.y238{bottom:149.800000pt;}
.y240{bottom:150.440000pt;}
.y120{bottom:151.386667pt;}
.y292{bottom:151.546667pt;}
.y11{bottom:151.866667pt;}
.y1fc{bottom:152.826667pt;}
.y1c0{bottom:153.960000pt;}
.y254{bottom:154.746667pt;}
.ye2{bottom:156.826667pt;}
.y1cd{bottom:158.426667pt;}
.y129{bottom:159.386667pt;}
.y1e7{bottom:160.200000pt;}
.y1a1{bottom:160.666667pt;}
.y6e{bottom:161.146667pt;}
.y29f{bottom:163.066667pt;}
.y1e9{bottom:163.400000pt;}
.y94{bottom:163.706667pt;}
.yad{bottom:164.826667pt;}
.y13b{bottom:166.906667pt;}
.y206{bottom:167.546667pt;}
.y282{bottom:170.106667pt;}
.y2bb{bottom:170.426667pt;}
.yf6{bottom:171.066667pt;}
.y1ec{bottom:171.400000pt;}
.y4c{bottom:171.706667pt;}
.y10b{bottom:171.866667pt;}
.yc0{bottom:172.826667pt;}
.y218{bottom:173.786667pt;}
.y2c2{bottom:174.266667pt;}
.y262{bottom:174.426667pt;}
.y237{bottom:175.080000pt;}
.y157{bottom:175.226667pt;}
.y17c{bottom:175.386667pt;}
.yd3{bottom:176.346667pt;}
.y11f{bottom:179.066667pt;}
.y1bf{bottom:179.240000pt;}
.y1fb{bottom:180.506667pt;}
.y26f{bottom:181.626667pt;}
.y253{bottom:182.426667pt;}
.y23f{bottom:183.080000pt;}
.ye1{bottom:184.346667pt;}
.y128{bottom:187.066667pt;}
.y10{bottom:187.546667pt;}
.y1a0{bottom:188.346667pt;}
.y6d{bottom:188.666667pt;}
.y29e{bottom:190.746667pt;}
.y93{bottom:191.386667pt;}
.yac{bottom:192.346667pt;}
.y13a{bottom:193.306667pt;}
.y1cc{bottom:193.946667pt;}
.y205{bottom:195.066667pt;}
.y35{bottom:197.466667pt;}
.y4b{bottom:199.386667pt;}
.y10a{bottom:199.546667pt;}
.y2ba{bottom:200.026667pt;}
.ybf{bottom:200.346667pt;}
.y217{bottom:201.466667pt;}
.y261{bottom:201.946667pt;}
.y17b{bottom:203.066667pt;}
.y1be{bottom:204.520000pt;}
.yf5{bottom:206.586667pt;}
.y26e{bottom:209.306667pt;}
.y2c1{bottom:209.946667pt;}
.yd2{bottom:211.866667pt;}
.y281{bottom:213.786667pt;}
.y11e{bottom:214.586667pt;}
.y19f{bottom:215.866667pt;}
.y1fa{bottom:216.026667pt;}
.y223{bottom:217.786667pt;}
.y252{bottom:217.946667pt;}
.y92{bottom:218.906667pt;}
.yab{bottom:219.866667pt;}
.y1b2{bottom:220.346667pt;}
.y1cb{bottom:221.626667pt;}
.y127{bottom:222.586667pt;}
.y204{bottom:222.746667pt;}
.yf{bottom:223.066667pt;}
.y6c{bottom:224.346667pt;}
.ybe{bottom:227.866667pt;}
.y216{bottom:228.986667pt;}
.y260{bottom:229.626667pt;}
.y1bd{bottom:229.960000pt;}
.y17a{bottom:230.586667pt;}
.yf4{bottom:234.266667pt;}
.y4a{bottom:234.906667pt;}
.y109{bottom:235.066667pt;}
.y34{bottom:235.706667pt;}
.y26d{bottom:236.826667pt;}
.y2b5{bottom:237.146667pt;}
.y1bc{bottom:237.960000pt;}
.yd1{bottom:239.546667pt;}
.y1d7{bottom:240.026667pt;}
.y2c0{bottom:240.986667pt;}
.y280{bottom:241.306667pt;}
.y11d{bottom:242.266667pt;}
.y159{bottom:243.266667pt;}
.y19e{bottom:243.546667pt;}
.y1f9{bottom:243.706667pt;}
.y2a6{bottom:244.666667pt;}
.y251{bottom:245.626667pt;}
.y139{bottom:246.266667pt;}
.y91{bottom:246.586667pt;}
.yaa{bottom:247.546667pt;}
.y1ca{bottom:249.146667pt;}
.y126{bottom:250.266667pt;}
.y6b{bottom:251.866667pt;}
.ybd{bottom:255.546667pt;}
.y215{bottom:256.666667pt;}
.y25f{bottom:257.146667pt;}
.y179{bottom:258.266667pt;}
.y29d{bottom:261.946667pt;}
.y49{bottom:262.586667pt;}
.y108{bottom:262.746667pt;}
.y1bb{bottom:263.240000pt;}
.y2bf{bottom:264.026667pt;}
.y26c{bottom:264.506667pt;}
.yd0{bottom:267.066667pt;}
.y2b4{bottom:268.346667pt;}
.yf3{bottom:269.786667pt;}
.ye{bottom:270.106667pt;}
.y19d{bottom:271.066667pt;}
.y1f8{bottom:271.226667pt;}
.y33{bottom:271.386667pt;}
.y2a5{bottom:272.186667pt;}
.y12c{bottom:272.346667pt;}
.y138{bottom:273.146667pt;}
.y90{bottom:274.106667pt;}
.ye0{bottom:275.066667pt;}
.y125{bottom:277.786667pt;}
.y203{bottom:277.946667pt;}
.y6a{bottom:279.546667pt;}
.y166{bottom:279.586667pt;}
.y1c9{bottom:282.586667pt;}
.ya9{bottom:283.066667pt;}
.y214{bottom:284.186667pt;}
.y25e{bottom:284.826667pt;}
.y27f{bottom:284.986667pt;}
.y178{bottom:285.786667pt;}
.y2a4{bottom:287.546667pt;}
.y1ba{bottom:288.520000pt;}
.y48{bottom:290.106667pt;}
.y107{bottom:290.266667pt;}
.ybc{bottom:291.066667pt;}
.y26b{bottom:292.026667pt;}
.y291{bottom:293.946667pt;}
.ycf{bottom:294.746667pt;}
.yf2{bottom:297.466667pt;}
.y2b3{bottom:297.786667pt;}
.y19c{bottom:298.746667pt;}
.y1f7{bottom:298.906667pt;}
.y137{bottom:300.866667pt;}
.y163{bottom:301.346667pt;}
.ydf{bottom:302.786667pt;}
.y2aa{bottom:303.906667pt;}
.y11c{bottom:305.506667pt;}
.y32{bottom:306.946667pt;}
.y69{bottom:307.106667pt;}
.y250{bottom:308.866667pt;}
.y8f{bottom:309.826667pt;}
.ya8{bottom:310.786667pt;}
.y150{bottom:311.106667pt;}
.y213{bottom:311.906667pt;}
.y27e{bottom:312.546667pt;}
.y202{bottom:313.506667pt;}
.y1c8{bottom:313.666667pt;}
.y2a3{bottom:317.186667pt;}
.y47{bottom:317.826667pt;}
.y106{bottom:317.986667pt;}
.ybb{bottom:318.786667pt;}
.y26a{bottom:319.746667pt;}
.y25d{bottom:320.386667pt;}
.y177{bottom:321.506667pt;}
.yd{bottom:323.106667pt;}
.yf1{bottom:325.026667pt;}
.y1d1{bottom:325.186667pt;}
.y19b{bottom:326.306667pt;}
.y1f6{bottom:326.466667pt;}
.y136{bottom:328.386667pt;}
.yce{bottom:330.306667pt;}
.y11b{bottom:333.026667pt;}
.y29c{bottom:333.186667pt;}
.y68{bottom:334.626667pt;}
.y1c7{bottom:335.426667pt;}
.y24f{bottom:336.386667pt;}
.y8e{bottom:337.346667pt;}
.ya7{bottom:338.306667pt;}
.y212{bottom:339.426667pt;}
.y201{bottom:341.186667pt;}
.y2a9{bottom:342.146667pt;}
.y31{bottom:342.626667pt;}
.yba{bottom:346.306667pt;}
.y25c{bottom:348.066667pt;}
.y176{bottom:349.026667pt;}
.y220{bottom:350.626667pt;}
.yf0{bottom:352.706667pt;}
.y46{bottom:353.346667pt;}
.y105{bottom:353.506667pt;}
.y19a{bottom:353.986667pt;}
.y1f5{bottom:354.146667pt;}
.y269{bottom:355.266667pt;}
.y135{bottom:356.066667pt;}
.y27d{bottom:356.226667pt;}
.ycd{bottom:357.986667pt;}
.y11a{bottom:360.706667pt;}
.y67{bottom:362.306667pt;}
.y24e{bottom:364.066667pt;}
.y1af{bottom:364.226667pt;}
.y8d{bottom:365.026667pt;}
.y290{bottom:365.186667pt;}
.ya6{bottom:365.986667pt;}
.y124{bottom:368.706667pt;}
.y143{bottom:372.226667pt;}
.y2a8{bottom:373.186667pt;}
.y21c{bottom:373.986667pt;}
.y211{bottom:375.106667pt;}
.y25b{bottom:375.586667pt;}
.yc{bottom:375.906667pt;}
.y175{bottom:376.706667pt;}
.y30{bottom:378.146667pt;}
.y152{bottom:379.106667pt;}
.y45{bottom:381.026667pt;}
.y104{bottom:381.186667pt;}
.y1f4{bottom:381.666667pt;}
.yb9{bottom:381.986667pt;}
.y134{bottom:383.586667pt;}
.y27c{bottom:383.746667pt;}
.ycc{bottom:385.506667pt;}
.y2b2{bottom:387.906667pt;}
.yef{bottom:388.226667pt;}
.y199{bottom:389.506667pt;}
.y66{bottom:389.826667pt;}
.y24d{bottom:391.586667pt;}
.y160{bottom:391.773333pt;}
.y8c{bottom:392.546667pt;}
.y28f{bottom:392.706667pt;}
.yd9{bottom:393.506667pt;}
.y123{bottom:396.066667pt;}
.y268{bottom:396.226667pt;}
.y200{bottom:400.866667pt;}
.ya5{bottom:401.506667pt;}
.y210{bottom:402.626667pt;}
.y2a7{bottom:402.786667pt;}
.y25a{bottom:403.266667pt;}
.y174{bottom:404.226667pt;}
.y29b{bottom:404.386667pt;}
.y142{bottom:407.906667pt;}
.y44{bottom:408.546667pt;}
.y103{bottom:408.706667pt;}
.y1f3{bottom:409.186667pt;}
.yb8{bottom:409.506667pt;}
.y133{bottom:411.266667pt;}
.ycb{bottom:413.186667pt;}
.y2f{bottom:413.826667pt;}
.yee{bottom:415.906667pt;}
.y198{bottom:417.186667pt;}
.y2b1{bottom:418.946667pt;}
.y24c{bottom:419.266667pt;}
.y28e{bottom:420.386667pt;}
.yde{bottom:421.186667pt;}
.y119{bottom:423.906667pt;}
.y65{bottom:425.346667pt;}
.y27b{bottom:427.426667pt;}
.y8b{bottom:428.226667pt;}
.yb{bottom:428.866667pt;}
.ya4{bottom:429.186667pt;}
.y20f{bottom:430.146667pt;}
.y259{bottom:430.786667pt;}
.y173{bottom:431.906667pt;}
.y1ff{bottom:433.986667pt;}
.y141{bottom:435.426667pt;}
.y1d0{bottom:435.746667pt;}
.y43{bottom:436.226667pt;}
.y102{bottom:436.386667pt;}
.yb7{bottom:437.186667pt;}
.y132{bottom:438.786667pt;}
.yed{bottom:443.426667pt;}
.y1f2{bottom:444.866667pt;}
.y24b{bottom:446.786667pt;}
.y149{bottom:446.973333pt;}
.y2b0{bottom:448.546667pt;}
.yca{bottom:448.706667pt;}
.y2e{bottom:449.346667pt;}
.y197{bottom:450.626667pt;}
.y118{bottom:451.426667pt;}
.y2b9{bottom:452.866667pt;}
.y1c5{bottom:453.986667pt;}
.y27a{bottom:454.946667pt;}
.y8a{bottom:455.746667pt;}
.ya3{bottom:456.706667pt;}
.y172{bottom:459.426667pt;}
.y162{bottom:459.773333pt;}
.y140{bottom:463.106667pt;}
.y101{bottom:463.906667pt;}
.yb6{bottom:464.706667pt;}
.y20e{bottom:465.826667pt;}
.y64{bottom:466.466667pt;}
.y2ad{bottom:466.626667pt;}
.yec{bottom:471.106667pt;}
.y42{bottom:471.746667pt;}
.y1f1{bottom:472.386667pt;}
.y24a{bottom:474.466667pt;}
.y29a{bottom:475.586667pt;}
.yc9{bottom:476.386667pt;}
.y117{bottom:479.106667pt;}
.y1cf{bottom:480.066667pt;}
.y196{bottom:481.506667pt;}
.ya{bottom:481.666667pt;}
.y2b8{bottom:482.466667pt;}
.y89{bottom:483.426667pt;}
.ya2{bottom:484.386667pt;}
.y2d{bottom:485.026667pt;}
.y171{bottom:487.106667pt;}
.y100{bottom:491.586667pt;}
.yb5{bottom:492.386667pt;}
.y63{bottom:493.986667pt;}
.y13f{bottom:498.466667pt;}
.yeb{bottom:498.626667pt;}
.y20d{bottom:499.266667pt;}
.y41{bottom:499.426667pt;}
.y2ac{bottom:500.386667pt;}
.y249{bottom:501.986667pt;}
.y299{bottom:503.106667pt;}
.y193{bottom:503.426667pt;}
.ydd{bottom:503.906667pt;}
.y267{bottom:506.626667pt;}
.y1ac{bottom:507.906667pt;}
.y2af{bottom:509.346667pt;}
.yc8{bottom:511.906667pt;}
.y116{bottom:514.626667pt;}
.y88{bottom:518.946667pt;}
.yff{bottom:519.106667pt;}
.y9{bottom:519.586667pt;}
.ya1{bottom:519.906667pt;}
.y2c{bottom:520.546667pt;}
.y20c{bottom:521.026667pt;}
.y62{bottom:521.666667pt;}
.y21f{bottom:526.146667pt;}
.y40{bottom:526.946667pt;}
.y15d{bottom:527.613333pt;}
.y2ab{bottom:529.986667pt;}
.y298{bottom:530.786667pt;}
.yea{bottom:534.146667pt;}
.y28d{bottom:535.106667pt;}
.y14b{bottom:536.413333pt;}
.y248{bottom:537.693333pt;}
.y2ae{bottom:538.973333pt;}
.yd8{bottom:539.613333pt;}
.y115{bottom:542.173333pt;}
.y87{bottom:546.653333pt;}
.y1f0{bottom:546.813333pt;}
.y8{bottom:547.613333pt;}
.y131{bottom:549.213333pt;}
.y279{bottom:553.853333pt;}
.yfe{bottom:554.813333pt;}
.y122{bottom:555.613333pt;}
.y2b{bottom:556.253333pt;}
.y61{bottom:557.213333pt;}
.ye9{bottom:561.853333pt;}
.y3f{bottom:562.653333pt;}
.y28c{bottom:562.813333pt;}
.y20b{bottom:563.613333pt;}
.y247{bottom:565.213333pt;}
.y18e{bottom:565.373333pt;}
.ydc{bottom:567.133333pt;}
.y1ef{bottom:568.573333pt;}
.y114{bottom:569.853333pt;}
.y1c4{bottom:572.573333pt;}
.y86{bottom:574.173333pt;}
.y297{bottom:574.333333pt;}
.ya0{bottom:575.133333pt;}
.y130{bottom:576.893333pt;}
.yb4{bottom:583.133333pt;}
.y60{bottom:584.893333pt;}
.ye8{bottom:589.373333pt;}
.y3e{bottom:590.173333pt;}
.yfd{bottom:590.333333pt;}
.y2c3{bottom:591.773333pt;}
.y246{bottom:592.893333pt;}
.y2a{bottom:593.853333pt;}
.y13e{bottom:594.813333pt;}
.y113{bottom:597.373333pt;}
.y7{bottom:599.293333pt;}
.y2a2{bottom:599.453333pt;}
.y1a8{bottom:601.213333pt;}
.y85{bottom:601.853333pt;}
.y296{bottom:602.013333pt;}
.y9f{bottom:602.813333pt;}
.y258{bottom:604.413333pt;}
.y147{bottom:605.893333pt;}
.y20a{bottom:606.333333pt;}
.y2c5{bottom:608.893333pt;}
.yb3{bottom:610.813333pt;}
.y5f{bottom:612.413333pt;}
.ye7{bottom:617.053333pt;}
.y15b{bottom:622.053333pt;}
.y278{bottom:624.893333pt;}
.y112{bottom:625.053333pt;}
.y3d{bottom:625.853333pt;}
.yfc{bottom:626.013333pt;}
.y245{bottom:628.413333pt;}
.y84{bottom:629.373333pt;}
.y9e{bottom:630.333333pt;}
.y2be{bottom:632.413333pt;}
.y28b{bottom:634.013333pt;}
.yc7{bottom:638.333333pt;}
.y5e{bottom:640.093333pt;}
.y29{bottom:641.853333pt;}
.y6{bottom:642.813333pt;}
.ye6{bottom:644.573333pt;}
.y295{bottom:645.533333pt;}
.yb2{bottom:646.333333pt;}
.y209{bottom:648.893333pt;}
.y111{bottom:652.573333pt;}
.y3c{bottom:653.373333pt;}
.y1e6{bottom:653.853333pt;}
.y2bd{bottom:655.453333pt;}
.y244{bottom:656.093333pt;}
.y1f{bottom:657.053333pt;}
.y9d{bottom:658.013333pt;}
.yfb{bottom:661.533333pt;}
.y83{bottom:664.893333pt;}
.y146{bottom:665.413333pt;}
.yc6{bottom:666.013333pt;}
.y5d{bottom:667.613333pt;}
.y21e{bottom:672.253333pt;}
.y2a1{bottom:673.213333pt;}
.yb1{bottom:674.013333pt;}
.y1e{bottom:678.013333pt;}
.ye5{bottom:680.093333pt;}
.y110{bottom:680.253333pt;}
.y3b{bottom:680.893333pt;}
.y5{bottom:684.253333pt;}
.y9c{bottom:685.533333pt;}
.y28{bottom:688.253333pt;}
.y28a{bottom:689.213333pt;}
.y243{bottom:689.373333pt;}
.y79{bottom:690.813333pt;}
.y82{bottom:692.573333pt;}
.yc5{bottom:693.533333pt;}
.y5c{bottom:695.293333pt;}
.y277{bottom:696.093333pt;}
.y18c{bottom:696.413333pt;}
.yfa{bottom:697.213333pt;}
.yb0{bottom:701.533333pt;}
.y257{bottom:703.133333pt;}
.y12f{bottom:703.293333pt;}
.y55{bottom:705.853333pt;}
.y1d{bottom:707.613333pt;}
.y10f{bottom:707.773333pt;}
.y236{bottom:711.293333pt;}
.y9b{bottom:713.213333pt;}
.y2b7{bottom:714.493333pt;}
.y1b9{bottom:716.413333pt;}
.y3a{bottom:716.573333pt;}
.y289{bottom:716.733333pt;}
.y208{bottom:716.893333pt;}
.y81{bottom:720.093333pt;}
.yc4{bottom:721.213333pt;}
.y5b{bottom:722.813333pt;}
.y27{bottom:723.773333pt;}
.y4{bottom:726.333333pt;}
.y78{bottom:729.213333pt;}
.y12e{bottom:730.813333pt;}
.yf9{bottom:732.733333pt;}
.y10e{bottom:735.293333pt;}
.y170{bottom:735.453333pt;}
.y9a{bottom:740.733333pt;}
.y2b6{bottom:743.933333pt;}
.y39{bottom:744.093333pt;}
.y294{bottom:744.413333pt;}
.y1a6{bottom:746.653333pt;}
.yc3{bottom:748.733333pt;}
.y1c{bottom:753.853333pt;}
.y80{bottom:755.773333pt;}
.y77{bottom:756.733333pt;}
.y188{bottom:758.333333pt;}
.y5a{bottom:758.493333pt;}
.y26{bottom:759.453333pt;}
.y288{bottom:760.413333pt;}
.y16f{bottom:762.973333pt;}
.y276{bottom:767.293333pt;}
.y99{bottom:768.413333pt;}
.y21d{bottom:770.973333pt;}
.y38{bottom:771.773333pt;}
.y2a0{bottom:771.933333pt;}
.yd7{bottom:776.453333pt;}
.y7f{bottom:783.333333pt;}
.y76{bottom:784.453333pt;}
.y59{bottom:786.053333pt;}
.y287{bottom:787.973333pt;}
.y16e{bottom:790.693333pt;}
.y1b{bottom:791.333333pt;}
.y25{bottom:795.013333pt;}
.y98{bottom:795.973333pt;}
.y266{bottom:798.693333pt;}
.y37{bottom:799.333333pt;}
.y272{bottom:801.253333pt;}
.yd6{bottom:803.973333pt;}
.y75{bottom:811.973333pt;}
.y58{bottom:813.733333pt;}
.y286{bottom:815.653333pt;}
.y16d{bottom:818.213333pt;}
.y7e{bottom:819.013333pt;}
.y21b{bottom:819.973333pt;}
.y1fe{bottom:823.653333pt;}
.y265{bottom:826.213333pt;}
.y36{bottom:827.013333pt;}
.y24{bottom:830.693333pt;}
.y1a5{bottom:831.493333pt;}
.y97{bottom:831.653333pt;}
.y1a{bottom:835.013333pt;}
.y275{bottom:838.533333pt;}
.y74{bottom:839.653333pt;}
.y1e1{bottom:840.293333pt;}
.y57{bottom:841.253333pt;}
.y285{bottom:843.173333pt;}
.y181{bottom:844.773333pt;}
.y16c{bottom:845.893333pt;}
.y7d{bottom:846.533333pt;}
.y21a{bottom:847.653333pt;}
.y12d{bottom:849.093333pt;}
.y1fd{bottom:851.173333pt;}
.y54{bottom:854.533333pt;}
.y256{bottom:856.453333pt;}
.y96{bottom:859.173333pt;}
.y264{bottom:861.733333pt;}
.y19{bottom:862.533333pt;}
.y23{bottom:866.213333pt;}
.y73{bottom:867.173333pt;}
.y16b{bottom:873.413333pt;}
.y7c{bottom:874.213333pt;}
.ydb{bottom:875.173333pt;}
.y56{bottom:876.773333pt;}
.y53{bottom:882.213333pt;}
.y52{bottom:884.133333pt;}
.y95{bottom:886.853333pt;}
.y18{bottom:890.213333pt;}
.y1a4{bottom:894.693333pt;}
.yaf{bottom:894.853333pt;}
.y16a{bottom:901.093333pt;}
.y7b{bottom:901.733333pt;}
.y22{bottom:901.893333pt;}
.y72{bottom:902.853333pt;}
.y232{bottom:909.573333pt;}
.y274{bottom:909.733333pt;}
.y284{bottom:914.373333pt;}
.y17{bottom:917.733333pt;}
.y51{bottom:922.373333pt;}
.y71{bottom:930.373333pt;}
.y169{bottom:936.613333pt;}
.y21{bottom:937.413333pt;}
.y293{bottom:942.053333pt;}
.y16{bottom:945.413333pt;}
.y180{bottom:949.893333pt;}
.y50{bottom:950.053333pt;}
.y1a3{bottom:957.893333pt;}
.y70{bottom:958.053333pt;}
.y168{bottom:964.293333pt;}
.y273{bottom:964.933333pt;}
.y7a{bottom:967.493333pt;}
.y15{bottom:972.933333pt;}
.y4f{bottom:985.573333pt;}
.y167{bottom:999.813333pt;}
.y1df{bottom:1001.413333pt;}
.y3{bottom:1005.253333pt;}
.y20{bottom:1010.533333pt;}
.y14{bottom:1010.693333pt;}
.y17f{bottom:1013.120000pt;}
.y13{bottom:1013.280000pt;}
.h7{height:5.160000pt;}
.h35{height:25.312000pt;}
.h30{height:41.280000pt;}
.h3a{height:41.312000pt;}
.h12{height:41.440000pt;}
.h3e{height:47.085938pt;}
.h22{height:47.335938pt;}
.h4{height:52.134375pt;}
.h3b{height:52.468750pt;}
.h17{height:52.785000pt;}
.h21{height:53.535000pt;}
.h1c{height:56.960000pt;}
.h1b{height:57.120000pt;}
.hd{height:57.375000pt;}
.h15{height:57.787500pt;}
.h13{height:59.340000pt;}
.hf{height:60.300000pt;}
.h32{height:60.519362pt;}
.h24{height:61.920000pt;}
.h26{height:61.952000pt;}
.he{height:62.781250pt;}
.h2{height:62.812500pt;}
.h9{height:64.500000pt;}
.hc{height:65.781915pt;}
.h1a{height:66.560000pt;}
.h16{height:66.592000pt;}
.h39{height:66.720000pt;}
.h27{height:66.752000pt;}
.ha{height:75.465000pt;}
.hb{height:76.964840pt;}
.h33{height:83.872000pt;}
.h38{height:84.000000pt;}
.h23{height:84.992000pt;}
.h20{height:87.040000pt;}
.h18{height:88.000000pt;}
.h1f{height:89.152000pt;}
.h29{height:92.032000pt;}
.h1d{height:92.992000pt;}
.h6{height:96.750000pt;}
.h3{height:104.896875pt;}
.h5{height:107.715000pt;}
.h31{height:109.280000pt;}
.h2c{height:117.120000pt;}
.h2e{height:117.152000pt;}
.h2f{height:117.280000pt;}
.h8{height:120.540000pt;}
.h25{height:131.040000pt;}
.h3c{height:131.552000pt;}
.h34{height:134.400000pt;}
.h1e{height:134.560000pt;}
.h19{height:134.586667pt;}
.h2a{height:142.400000pt;}
.h2b{height:142.426667pt;}
.h28{height:142.560000pt;}
.h14{height:156.026667pt;}
.h36{height:159.840000pt;}
.h37{height:185.146667pt;}
.h3d{height:196.826667pt;}
.h2d{height:310.306667pt;}
.h10{height:793.760000pt;}
.h11{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:15.360000pt;}
.w23{width:15.520000pt;}
.w22{width:74.592000pt;}
.w1f{width:75.232000pt;}
.wa{width:75.552000pt;}
.wb{width:75.680000pt;}
.w1b{width:75.712000pt;}
.w1e{width:84.000000pt;}
.w1a{width:84.320000pt;}
.wd{width:84.960000pt;}
.wf{width:84.992000pt;}
.w26{width:85.600000pt;}
.w27{width:89.952000pt;}
.w24{width:94.080000pt;}
.w10{width:94.560000pt;}
.wc{width:94.592000pt;}
.w25{width:96.832000pt;}
.w21{width:97.760000pt;}
.w1c{width:104.000000pt;}
.w1d{width:112.832000pt;}
.we{width:122.912000pt;}
.w11{width:126.080000pt;}
.w12{width:133.626667pt;}
.w9{width:141.920000pt;}
.w6{width:157.146667pt;}
.w7{width:168.826667pt;}
.w15{width:190.746667pt;}
.w19{width:287.106667pt;}
.w18{width:287.226667pt;}
.w17{width:287.426667pt;}
.w16{width:287.546667pt;}
.w13{width:317.666667pt;}
.w8{width:537.506667pt;}
.w14{width:574.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w5{width:1122.559983pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x15{left:6.560000pt;}
.x57{left:7.840000pt;}
.x2a{left:8.960000pt;}
.x26{left:9.920000pt;}
.x2d{left:11.360000pt;}
.x24{left:13.000000pt;}
.x3f{left:13.920000pt;}
.x30{left:15.360000pt;}
.x23{left:16.680000pt;}
.x34{left:18.440000pt;}
.x35{left:19.360000pt;}
.x2e{left:20.320000pt;}
.x1e{left:22.080000pt;}
.x31{left:23.040000pt;}
.x36{left:24.000000pt;}
.x1f{left:25.280000pt;}
.x2f{left:26.560000pt;}
.x27{left:27.680000pt;}
.x32{left:29.760000pt;}
.x47{left:30.714667pt;}
.x44{left:31.880000pt;}
.x2c{left:32.800000pt;}
.x33{left:33.760000pt;}
.x1c{left:34.880000pt;}
.x20{left:36.320000pt;}
.x56{left:37.280000pt;}
.x3e{left:38.920000pt;}
.x45{left:40.154667pt;}
.x1a{left:41.312000pt;}
.x1d{left:44.160000pt;}
.x42{left:45.594667pt;}
.x3d{left:46.714667pt;}
.x1b{left:49.120000pt;}
.x17{left:51.680000pt;}
.x4a{left:55.040000pt;}
.x41{left:57.466667pt;}
.x43{left:60.506667pt;}
.x40{left:62.266667pt;}
.x51{left:68.474667pt;}
.x4f{left:82.874667pt;}
.x48{left:85.466667pt;}
.x14{left:88.000000pt;}
.x13{left:94.559983pt;}
.x46{left:97.146667pt;}
.x39{left:106.912000pt;}
.x2{left:113.471988pt;}
.x3c{left:121.786667pt;}
.x5e{left:125.791988pt;}
.xe{left:128.191988pt;}
.x8{left:129.791988pt;}
.x64{left:134.586655pt;}
.xf{left:137.466655pt;}
.x5{left:139.706655pt;}
.x6c{left:153.306655pt;}
.xb{left:155.866655pt;}
.x10{left:161.466655pt;}
.x60{left:162.586655pt;}
.x9{left:163.866655pt;}
.x6{left:171.226655pt;}
.x67{left:176.666655pt;}
.x19{left:187.226667pt;}
.x65{left:192.666655pt;}
.x75{left:196.026655pt;}
.x52{left:198.426667pt;}
.x78{left:202.266655pt;}
.xa{left:205.146655pt;}
.x4d{left:207.546655pt;}
.x6a{left:215.546655pt;}
.x68{left:223.866655pt;}
.x6e{left:229.626655pt;}
.x3a{left:234.426667pt;}
.x76{left:235.386655pt;}
.x22{left:236.346667pt;}
.x16{left:246.426667pt;}
.x7{left:248.546655pt;}
.x62{left:257.986655pt;}
.x70{left:260.386655pt;}
.x4e{left:263.586655pt;}
.x73{left:265.986655pt;}
.x72{left:270.946655pt;}
.x4c{left:273.986655pt;}
.x58{left:290.146667pt;}
.x49{left:298.946667pt;}
.x61{left:307.106655pt;}
.x25{left:311.906667pt;}
.x38{left:320.546655pt;}
.xc{left:330.466655pt;}
.x5d{left:357.986655pt;}
.x3b{left:369.346667pt;}
.x53{left:378.146667pt;}
.x28{left:387.586667pt;}
.x11{left:388.866655pt;}
.x1{left:392.866655pt;}
.x50{left:394.466667pt;}
.x3{left:396.866655pt;}
.x18{left:416.546667pt;}
.x54{left:463.133333pt;}
.xd{left:468.093322pt;}
.x37{left:472.573333pt;}
.x59{left:478.973333pt;}
.x29{left:482.173333pt;}
.x21{left:486.786650pt;}
.x6f{left:489.853322pt;}
.x4b{left:491.133333pt;}
.x74{left:544.893322pt;}
.x12{left:553.346650pt;}
.x77{left:555.933322pt;}
.x55{left:557.693333pt;}
.x5b{left:565.213333pt;}
.x2b{left:567.133333pt;}
.x5a{left:573.693333pt;}
.x5c{left:580.573333pt;}
.x63{left:634.853322pt;}
.x6d{left:636.933322pt;}
.x5f{left:641.413322pt;}
.x71{left:645.253322pt;}
.x4{left:647.013322pt;}
.x66{left:650.853322pt;}
.x6b{left:676.453322pt;}
.x69{left:678.373322pt;}
}




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