
    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_8742b6a67f803bb204e55854.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_33bdbfd42040e69e374fdece.woff')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_cdbfc42d782b8c87deb2cd57.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_3de0d3d863341ff8090bd80f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_73b923bc0fdc6bd16a0b6482.woff')format("woff");}.ff5{font-family:ff5;line-height:0.388000;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_ec80573794cc12f9e749c38c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_a04a1fca31e260aa80b713d2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_67093d96933c11e42d73929e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_038105a6f69779212ae9afea.woff')format("woff");}.ff9{font-family:ff9;line-height:0.188000;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_d99ee1500922f07020bee24b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.230000;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_6b61b4e9e67e48a5f92b341a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_5dc178ea9eb5ab032d6b8032.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_7c957c1052e708c1e4dcc9c9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_abef1a2cbdc12bf51dfc633d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_0238f523e70f5551f0cec8d8.woff')format("woff");}.fff{font-family:fff;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f104f87765fc3f6875c004eb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.578000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_de0da4b2f65ccc109b43a3c4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.692383;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.060518px;}
.v2{vertical-align:12.242074px;}
.v4{vertical-align:16.327637px;}
.v3{vertical-align:17.334869px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:10.458365px;}
.lsb{letter-spacing:11.142200px;}
.ls1{letter-spacing:12.153931px;}
.ls9{letter-spacing:12.500305px;}
.ls4{letter-spacing:13.863192px;}
.ls6{letter-spacing:14.202718px;}
.lsd{letter-spacing:15.221297px;}
.ls3{letter-spacing:15.560823px;}
.ls5{letter-spacing:16.239876px;}
.lse{letter-spacing:16.584184px;}
.lsf{letter-spacing:17.942289px;}
.ls8{letter-spacing:18.281815px;}
.ls0{letter-spacing:19.038201px;}
.ls7{letter-spacing:19.984229px;}
.lsc{letter-spacing:22.365695px;}
.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:-24.230394px;}
.wsb{word-spacing:-21.589956px;}
.ws3{word-spacing:-20.174250px;}
.ws7{word-spacing:-14.011436px;}
.ws1{word-spacing:-13.341780px;}
.ws5{word-spacing:-12.610134px;}
.ws6{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsd{word-spacing:-11.208832px;}
.ws4{word-spacing:-10.759500px;}
.ws9{word-spacing:-10.061328px;}
.wsa{word-spacing:-9.807530px;}
.wsc{word-spacing:-9.563850px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-17.343592px;}
._f{margin-left:-4.478907px;}
._10{margin-left:-3.428737px;}
._6{margin-left:-2.392913px;}
._5{margin-left:-1.037216px;}
._3{width:1.170680px;}
._2{width:2.211098px;}
._1{width:3.534529px;}
._d{width:4.535096px;}
._c{width:5.956459px;}
._b{width:6.967852px;}
._9{width:8.142790px;}
._8{width:9.214436px;}
._7{width:10.268867px;}
._a{width:11.495450px;}
._14{width:12.925908px;}
._13{width:15.135220px;}
._0{width:16.182288px;}
._19{width:17.440579px;}
._15{width:19.273901px;}
._12{width:20.318240px;}
._18{width:21.437975px;}
._16{width:22.509156px;}
._41{width:24.861930px;}
._45{width:26.621728px;}
._11{width:29.089271px;}
._e{width:30.193927px;}
._47{width:42.522078px;}
._1d{width:56.725107px;}
._43{width:60.799307px;}
._46{width:63.180577px;}
._1b{width:91.346244px;}
._20{width:93.021831px;}
._2b{width:98.063892px;}
._25{width:104.567310px;}
._44{width:112.138054px;}
._28{width:115.783794px;}
._27{width:118.224488px;}
._26{width:123.274201px;}
._42{width:126.292552px;}
._29{width:127.501423px;}
._31{width:139.119588px;}
._2a{width:141.873976px;}
._35{width:158.763736px;}
._2f{width:164.272513px;}
._34{width:169.647397px;}
._2e{width:175.156174px;}
._24{width:182.577722px;}
._30{width:215.335821px;}
._1f{width:231.594366px;}
._23{width:241.272982px;}
._17{width:259.030166px;}
._32{width:284.700512px;}
._2c{width:290.461776px;}
._33{width:292.102932px;}
._2d{width:297.611710px;}
._3c{width:323.066853px;}
._3f{width:328.904627px;}
._3b{width:345.691097px;}
._3a{width:351.475313px;}
._38{width:357.687990px;}
._21{width:379.998539px;}
._37{width:397.641930px;}
._36{width:403.426146px;}
._40{width:425.950926px;}
._1e{width:513.475262px;}
._3e{width:545.881605px;}
._3d{width:556.784394px;}
._39{width:602.239524px;}
._1c{width:738.822586px;}
._22{width:1294.065416px;}
._1a{width:1855.428981px;}
.fc2{color:rgb(33,150,209);}
.fc4{color:rgb(204,204,204);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fsd{font-size:33.472800px;}
.fsa{font-size:35.045400px;}
.fs9{font-size:38.231400px;}
.fs4{font-size:38.255400px;}
.fs8{font-size:38.256000px;}
.fs5{font-size:41.842200px;}
.fs0{font-size:43.038000px;}
.fs3{font-size:44.327400px;}
.fs6{font-size:47.820600px;}
.fsb{font-size:50.975400px;}
.fsc{font-size:51.168000px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fs7{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.yd7{bottom:23.094645px;}
.ydb{bottom:31.708350px;}
.yd6{bottom:35.041950px;}
.y38{bottom:47.430000px;}
.yd5{bottom:77.254350px;}
.y2ad{bottom:78.407322px;}
.yba{bottom:78.409424px;}
.y274{bottom:78.410825px;}
.y10e{bottom:78.412626px;}
.y24f{bottom:78.412899px;}
.y78{bottom:78.416181px;}
.ybe{bottom:81.130416px;}
.y303{bottom:84.699379px;}
.y1cd{bottom:85.295841px;}
.y164{bottom:85.296534px;}
.y2ac{bottom:90.397521px;}
.y4{bottom:91.200000px;}
.y202{bottom:92.871853px;}
.y103{bottom:93.038557px;}
.y27d{bottom:93.121637px;}
.y23c{bottom:93.890036px;}
.y273{bottom:94.142606px;}
.y10d{bottom:94.144408px;}
.y24e{bottom:94.145877px;}
.y77{bottom:94.147962px;}
.y302{bottom:96.689578px;}
.ybd{bottom:96.862198px;}
.y163{bottom:98.222077px;}
.y1cc{bottom:98.222341px;}
.y2ab{bottom:102.302601px;}
.y3{bottom:105.630000px;}
.yd0{bottom:106.717815px;}
.y301{bottom:108.594658px;}
.y201{bottom:108.603635px;}
.y102{bottom:108.685457px;}
.y27c{bottom:108.854614px;}
.y23b{bottom:109.536937px;}
.yb9{bottom:109.788106px;}
.y272{bottom:109.789507px;}
.y10c{bottom:109.791308px;}
.y24d{bottom:109.792777px;}
.y76{bottom:109.794863px;}
.y1cb{bottom:111.062766px;}
.y162{bottom:111.063459px;}
.ybc{bottom:112.593980px;}
.y2aa{bottom:114.292800px;}
.ycf{bottom:117.073740px;}
.yd1{bottom:117.077700px;}
.y36{bottom:119.905636px;}
.y300{bottom:120.583901px;}
.y161{bottom:123.903884px;}
.y1ca{bottom:123.904147px;}
.y200{bottom:124.250535px;}
.y101{bottom:124.418434px;}
.y27b{bottom:124.586396px;}
.y23a{bottom:125.269914px;}
.y271{bottom:125.521289px;}
.y10b{bottom:125.523090px;}
.y24c{bottom:125.524559px;}
.y75{bottom:125.526645px;}
.y80{bottom:126.462733px;}
.yce{bottom:127.429650px;}
.ybb{bottom:128.242076px;}
.y2ff{bottom:132.575056px;}
.y35{bottom:134.192100px;}
.y160{bottom:136.744309px;}
.y1ff{bottom:139.983512px;}
.y100{bottom:140.065335px;}
.y27a{bottom:140.233296px;}
.y239{bottom:140.916814px;}
.y270{bottom:141.168189px;}
.y10a{bottom:141.171186px;}
.y24b{bottom:141.171459px;}
.y74{bottom:141.174740px;}
.y2a9{bottom:141.854988px;}
.y7f{bottom:142.109633px;}
.y1c9{bottom:143.632457px;}
.yb8{bottom:143.973858px;}
.y2fe{bottom:144.480136px;}
.y15f{bottom:149.585690px;}
.y1fe{bottom:155.630413px;}
.yff{bottom:155.797116px;}
.y279{bottom:155.965078px;}
.y2fd{bottom:156.470335px;}
.y1c8{bottom:156.558000px;}
.y238{bottom:156.648596px;}
.y26f{bottom:156.901166px;}
.y109{bottom:156.902968px;}
.y24a{bottom:156.904436px;}
.y73{bottom:156.906522px;}
.y7e{bottom:157.841415px;}
.yb7{bottom:159.620758px;}
.y31{bottom:159.703536px;}
.y2fc{bottom:168.375415px;}
.y15e{bottom:169.314000px;}
.y1fd{bottom:171.362195px;}
.yfe{bottom:171.444017px;}
.y278{bottom:171.611978px;}
.y237{bottom:172.295497px;}
.y108{bottom:172.549868px;}
.y249{bottom:172.551337px;}
.y72{bottom:172.553423px;}
.y7d{bottom:173.574392px;}
.y30{bottom:174.075000px;}
.y2a8{bottom:175.189533px;}
.yda{bottom:175.318800px;}
.yb6{bottom:175.352540px;}
.y1c7{bottom:176.287036px;}
.y2fb{bottom:180.366570px;}
.y1fc{bottom:187.093976px;}
.yfd{bottom:187.176994px;}
.y277{bottom:187.344956px;}
.y236{bottom:188.028474px;}
.y26e{bottom:188.279849px;}
.y107{bottom:188.281650px;}
.y248{bottom:188.283119px;}
.y71{bottom:188.285205px;}
.yde{bottom:188.756850px;}
.y15d{bottom:189.042036px;}
.y7c{bottom:189.221293px;}
.y1c6{bottom:190.573500px;}
.y2a7{bottom:190.836434px;}
.yb5{bottom:191.000636px;}
.y2fa{bottom:192.271651px;}
.y1fb{bottom:202.740877px;}
.yfc{bottom:202.823894px;}
.y276{bottom:202.991856px;}
.y15c{bottom:203.413500px;}
.y235{bottom:203.675374px;}
.y106{bottom:203.929746px;}
.y247{bottom:203.930019px;}
.yb0{bottom:203.933300px;}
.y2f9{bottom:204.261850px;}
.y98{bottom:204.442590px;}
.y7b{bottom:204.953075px;}
.yb4{bottom:206.732417px;}
.y2f8{bottom:216.252048px;}
.y2e{bottom:217.618076px;}
.y1fa{bottom:218.473854px;}
.yfb{bottom:218.555676px;}
.y275{bottom:218.723638px;}
.y234{bottom:219.407156px;}
.y105{bottom:219.661528px;}
.y246{bottom:219.662996px;}
.y70{bottom:219.665082px;}
.y97{bottom:220.090686px;}
.y7a{bottom:220.599975px;}
.y2a6{bottom:222.216311px;}
.yb3{bottom:222.379318px;}
.y191{bottom:224.678336px;}
.y2f7{bottom:228.158085px;}
.yd4{bottom:228.582330px;}
.y2d{bottom:233.264976px;}
.y205{bottom:234.120754px;}
.yfa{bottom:234.202577px;}
.y26d{bottom:234.370538px;}
.y233{bottom:235.054057px;}
.y245{bottom:235.309897px;}
.yaf{bottom:235.311983px;}
.y96{bottom:235.822467px;}
.y79{bottom:236.332952px;}
.y124{bottom:237.434057px;}
.yb2{bottom:238.111100px;}
.y2f6{bottom:240.148284px;}
.y190{bottom:240.325236px;}
.yd3{bottom:240.529635px;}
.y2c{bottom:248.996758px;}
.y15a{bottom:249.594344px;}
.y1f9{bottom:249.852536px;}
.yf9{bottom:249.935554px;}
.y26c{bottom:250.103516px;}
.y232{bottom:250.787034px;}
.y104{bottom:251.040210px;}
.y244{bottom:251.041679px;}
.yae{bottom:251.043764px;}
.y95{bottom:251.469368px;}
.yd2{bottom:251.683650px;}
.y6f{bottom:251.979853px;}
.y2f5{bottom:252.053365px;}
.ycc{bottom:252.473100px;}
.yb1{bottom:253.758000px;}
.y2a5{bottom:255.550856px;}
.y18f{bottom:256.057018px;}
.y2f4{bottom:264.044520px;}
.y2b{bottom:264.643658px;}
.y159{bottom:265.327321px;}
.y1f8{bottom:265.499437px;}
.yf8{bottom:265.582454px;}
.y26b{bottom:265.750416px;}
.y231{bottom:266.518816px;}
.y243{bottom:266.688579px;}
.yad{bottom:266.691860px;}
.y94{bottom:267.201150px;}
.y6e{bottom:267.711635px;}
.ycd{bottom:268.401900px;}
.y123{bottom:268.812739px;}
.y2a4{bottom:271.283833px;}
.y18e{bottom:271.705114px;}
.y2f3{bottom:276.034718px;}
.y2a{bottom:280.376636px;}
.y158{bottom:280.974221px;}
.y1f7{bottom:281.232414px;}
.yf7{bottom:281.314236px;}
.y26a{bottom:281.482198px;}
.y230{bottom:282.165716px;}
.y242{bottom:282.420361px;}
.yac{bottom:282.423642px;}
.y93{bottom:282.848050px;}
.y1c5{bottom:283.355408px;}
.y6d{bottom:283.358535px;}
.y2a3{bottom:286.930734px;}
.ydf{bottom:287.433000px;}
.y18d{bottom:287.436896px;}
.y2f2{bottom:287.939799px;}
.y29{bottom:296.023536px;}
.y157{bottom:296.706003px;}
.y1f6{bottom:296.879314px;}
.yf6{bottom:296.961137px;}
.y269{bottom:297.129098px;}
.y22f{bottom:297.897498px;}
.y241{bottom:298.068457px;}
.yab{bottom:298.070543px;}
.y92{bottom:298.581027px;}
.y1c4{bottom:299.087190px;}
.y6c{bottom:299.091512px;}
.y2f1{bottom:299.929998px;}
.y18c{bottom:303.083796px;}
.y122{bottom:307.166055px;}
.ybf{bottom:310.224000px;}
.y28{bottom:311.755318px;}
.y2f0{bottom:311.836035px;}
.y156{bottom:312.352904px;}
.y1f5{bottom:312.611096px;}
.yf5{bottom:312.694114px;}
.y268{bottom:312.862076px;}
.y22e{bottom:313.545594px;}
.y240{bottom:313.800239px;}
.yaa{bottom:313.802324px;}
.y91{bottom:314.227928px;}
.y1c3{bottom:314.734090px;}
.y6b{bottom:314.738413px;}
.y2a2{bottom:318.309416px;}
.y18b{bottom:318.815578px;}
.y121{bottom:322.812956px;}
.y2ef{bottom:323.826233px;}
.y2f{bottom:327.402218px;}
.y155{bottom:328.085881px;}
.y1f4{bottom:328.257997px;}
.yf4{bottom:328.341014px;}
.y267{bottom:328.508976px;}
.y22d{bottom:329.277376px;}
.y23f{bottom:329.447139px;}
.ya9{bottom:329.449225px;}
.y90{bottom:329.959710px;}
.y1c2{bottom:330.465872px;}
.y6a{bottom:330.470195px;}
.y18a{bottom:334.462478px;}
.y2ee{bottom:335.731314px;}
.y120{bottom:338.544738px;}
.ydd{bottom:341.674695px;}
.y27{bottom:343.134000px;}
.y154{bottom:343.732781px;}
.y1f3{bottom:343.990974px;}
.yf3{bottom:344.072796px;}
.y266{bottom:344.240758px;}
.y22c{bottom:344.924276px;}
.y23e{bottom:345.178921px;}
.ya8{bottom:345.182202px;}
.y8f{bottom:345.606610px;}
.y1c1{bottom:346.112772px;}
.y69{bottom:346.117095px;}
.y2ed{bottom:347.721512px;}
.y189{bottom:350.195456px;}
.y2a1{bottom:351.645156px;}
.ydc{bottom:353.622000px;}
.y11f{bottom:354.191638px;}
.y153{bottom:359.464563px;}
.y1f2{bottom:359.637874px;}
.y2ec{bottom:359.712668px;}
.yf2{bottom:359.804578px;}
.y265{bottom:359.887658px;}
.y22b{bottom:360.656058px;}
.y8e{bottom:361.339587px;}
.y1c0{bottom:361.845749px;}
.y68{bottom:361.848877px;}
.y188{bottom:365.842356px;}
.y2a0{bottom:367.376938px;}
.y11e{bottom:369.924615px;}
.y2eb{bottom:371.617748px;}
.y152{bottom:375.111464px;}
.y1f1{bottom:375.369656px;}
.yf1{bottom:375.451478px;}
.y264{bottom:375.620636px;}
.y22a{bottom:376.302958px;}
.y23d{bottom:376.558798px;}
.ya7{bottom:376.560884px;}
.y8d{bottom:377.071369px;}
.y1bf{bottom:377.492650px;}
.y67{bottom:377.496973px;}
.y187{bottom:381.574138px;}
.y29f{bottom:383.023838px;}
.y2ea{bottom:383.607947px;}
.y11d{bottom:385.571516px;}
.y151{bottom:390.844441px;}
.y1f0{bottom:391.016557px;}
.yf0{bottom:391.184456px;}
.y263{bottom:391.267536px;}
.y229{bottom:392.035936px;}
.y8c{bottom:392.718270px;}
.y1be{bottom:393.224432px;}
.y66{bottom:393.228754px;}
.yd9{bottom:394.219905px;}
.y2e9{bottom:395.513984px;}
.ycb{bottom:395.833050px;}
.y186{bottom:397.221038px;}
.y29e{bottom:398.755620px;}
.y11c{bottom:401.303298px;}
.y26{bottom:402.664038px;}
.y150{bottom:406.576223px;}
.y1ef{bottom:406.749534px;}
.yef{bottom:406.831356px;}
.y262{bottom:406.999318px;}
.y2e8{bottom:407.504182px;}
.y228{bottom:407.682836px;}
.y8b{bottom:408.450051px;}
.ya6{bottom:408.705892px;}
.y1bd{bottom:408.871332px;}
.y65{bottom:408.875655px;}
.y185{bottom:412.954016px;}
.y11b{bottom:416.950198px;}
.y25{bottom:416.950502px;}
.y2e7{bottom:419.494381px;}
.y14f{bottom:422.223123px;}
.y1ee{bottom:422.396434px;}
.yee{bottom:422.563138px;}
.y261{bottom:422.646218px;}
.y227{bottom:423.414618px;}
.y8a{bottom:424.098147px;}
.ya5{bottom:424.437674px;}
.y1bc{bottom:424.604309px;}
.y64{bottom:424.607437px;}
.y184{bottom:428.600916px;}
.y29d{bottom:430.135498px;}
.y24{bottom:431.321966px;}
.y2e6{bottom:431.399462px;}
.y11a{bottom:432.681980px;}
.yca{bottom:437.248545px;}
.y1ed{bottom:438.128216px;}
.yed{bottom:438.210038px;}
.y260{bottom:438.378000px;}
.y226{bottom:439.061518px;}
.y89{bottom:439.829929px;}
.ya4{bottom:440.084574px;}
.y1bb{bottom:440.251210px;}
.y63{bottom:440.255532px;}
.y2e5{bottom:443.390617px;}
.y183{bottom:444.332698px;}
.y23{bottom:445.693430px;}
.y119{bottom:448.330076px;}
.yc9{bottom:449.195850px;}
.y14e{bottom:453.603001px;}
.y1ec{bottom:453.775116px;}
.yec{bottom:453.943016px;}
.y225{bottom:454.794496px;}
.y2e4{bottom:455.295697px;}
.y88{bottom:455.476829px;}
.ya3{bottom:455.817551px;}
.y1ba{bottom:455.982992px;}
.y62{bottom:455.987314px;}
.y182{bottom:459.979598px;}
.y22{bottom:459.979895px;}
.y29c{bottom:461.514180px;}
.y118{bottom:464.061858px;}
.y2e3{bottom:467.285896px;}
.y33a{bottom:467.297679px;}
.yc8{bottom:467.514450px;}
.y1eb{bottom:469.508094px;}
.yeb{bottom:469.589916px;}
.y224{bottom:470.441396px;}
.y87{bottom:471.208611px;}
.ya2{bottom:471.464452px;}
.y1b9{bottom:471.629892px;}
.y61{bottom:471.634215px;}
.y21{bottom:474.351359px;}
.y29b{bottom:477.162276px;}
.y2e2{bottom:479.276095px;}
.y339{bottom:479.288834px;}
.y117{bottom:479.708758px;}
.y14d{bottom:484.981683px;}
.y1ea{bottom:485.154994px;}
.yea{bottom:485.321698px;}
.y223{bottom:486.173178px;}
.y86{bottom:486.856707px;}
.ya1{bottom:487.196233px;}
.y1b8{bottom:487.362869px;}
.y60{bottom:487.365997px;}
.y20{bottom:488.722823px;}
.y2e1{bottom:491.182132px;}
.y338{bottom:491.193915px;}
.y181{bottom:491.359476px;}
.y29a{bottom:492.894058px;}
.y116{bottom:495.440540px;}
.y1e9{bottom:500.886776px;}
.ye9{bottom:500.968598px;}
.y222{bottom:501.820078px;}
.y85{bottom:502.588489px;}
.ya0{bottom:502.843134px;}
.y1b7{bottom:503.009770px;}
.y5f{bottom:503.014092px;}
.y27e{bottom:503.092500px;}
.y1f{bottom:503.094287px;}
.y2e0{bottom:503.172330px;}
.y337{bottom:503.184113px;}
.y180{bottom:507.091258px;}
.y115{bottom:511.088636px;}
.yc7{bottom:511.314030px;}
.y2df{bottom:515.077411px;}
.y336{bottom:515.089194px;}
.y14c{bottom:516.360365px;}
.y1e8{bottom:516.533676px;}
.ye8{bottom:516.701576px;}
.y1e{bottom:517.380751px;}
.y221{bottom:517.553055px;}
.y84{bottom:518.235389px;}
.y9f{bottom:518.576111px;}
.y1b6{bottom:518.741552px;}
.y5e{bottom:518.745874px;}
.y17f{bottom:522.738158px;}
.yc6{bottom:523.261335px;}
.y299{bottom:524.272740px;}
.y114{bottom:526.820417px;}
.y2de{bottom:527.067610px;}
.y335{bottom:527.080349px;}
.y1d{bottom:531.752215px;}
.y14b{bottom:532.093343px;}
.y1e7{bottom:532.265458px;}
.ye7{bottom:532.348476px;}
.y220{bottom:533.199956px;}
.y83{bottom:533.967171px;}
.y9e{bottom:534.223011px;}
.y1b5{bottom:534.388452px;}
.y5d{bottom:534.392775px;}
.yc5{bottom:534.415350px;}
.y17e{bottom:538.471136px;}
.y2dd{bottom:538.973646px;}
.y334{bottom:538.985429px;}
.y113{bottom:542.467318px;}
.y1c{bottom:546.123679px;}
.y14a{bottom:547.740243px;}
.y1e6{bottom:547.913554px;}
.ye6{bottom:548.080258px;}
.y21f{bottom:548.931738px;}
.y9d{bottom:549.954793px;}
.y1b4{bottom:550.121429px;}
.y5c{bottom:550.124557px;}
.y2dc{bottom:550.963845px;}
.y333{bottom:550.975628px;}
.y17d{bottom:554.118036px;}
.y16{bottom:555.052800px;}
.yc4{bottom:555.123000px;}
.y112{bottom:558.199100px;}
.y1b{bottom:560.410143px;}
.y2db{bottom:562.954044px;}
.y332{bottom:562.965827px;}
.y149{bottom:563.472025px;}
.y1e5{bottom:563.645336px;}
.ye5{bottom:563.727158px;}
.y298{bottom:563.815594px;}
.y21e{bottom:564.578638px;}
.y82{bottom:565.347049px;}
.y9c{bottom:565.601694px;}
.y1b3{bottom:565.768330px;}
.y5b{bottom:565.771457px;}
.y15{bottom:567.893225px;}
.y17c{bottom:569.849818px;}
.y111{bottom:573.846000px;}
.y1a{bottom:574.781608px;}
.y2da{bottom:574.860081px;}
.y331{bottom:574.871864px;}
.y148{bottom:579.118925px;}
.y1e4{bottom:579.292236px;}
.ye4{bottom:579.460136px;}
.y297{bottom:579.548572px;}
.y21d{bottom:580.311615px;}
.y14{bottom:580.733650px;}
.y9b{bottom:581.333476px;}
.y1b2{bottom:581.500111px;}
.y5a{bottom:581.504434px;}
.y17b{bottom:585.496718px;}
.y2d9{bottom:586.850280px;}
.y330{bottom:586.862062px;}
.y19{bottom:589.153072px;}
.y13{bottom:593.575032px;}
.y147{bottom:594.851903px;}
.y1e3{bottom:595.024018px;}
.ye3{bottom:595.107036px;}
.y296{bottom:595.195472px;}
.y21c{bottom:595.958516px;}
.y9a{bottom:596.981571px;}
.y1b1{bottom:597.147012px;}
.y59{bottom:597.151335px;}
.y2d8{bottom:598.755360px;}
.y32f{bottom:598.767143px;}
.y17a{bottom:601.228500px;}
.y179{bottom:601.229417px;}
.y18{bottom:603.439536px;}
.y12{bottom:606.500575px;}
.y15b{bottom:607.521000px;}
.y146{bottom:610.498803px;}
.y1e2{bottom:610.672114px;}
.y2d7{bottom:610.745559px;}
.y32e{bottom:610.757342px;}
.ye2{bottom:610.838818px;}
.y295{bottom:610.927254px;}
.y21b{bottom:611.690298px;}
.y1b0{bottom:612.877598px;}
.y58{bottom:612.883116px;}
.y178{bottom:616.876318px;}
.y17{bottom:617.811000px;}
.y11{bottom:619.341000px;}
.y2d6{bottom:622.736714px;}
.y32d{bottom:622.748497px;}
.y145{bottom:626.230585px;}
.y1e1{bottom:626.403896px;}
.ye1{bottom:626.485718px;}
.y294{bottom:626.659036px;}
.y21a{bottom:627.337198px;}
.y99{bottom:628.360254px;}
.y1af{bottom:628.525694px;}
.y57{bottom:628.530017px;}
.yd8{bottom:631.918200px;}
.y177{bottom:632.608100px;}
.y2d5{bottom:634.641794px;}
.y32c{bottom:634.653577px;}
.yc3{bottom:634.768050px;}
.y144{bottom:641.877485px;}
.y1e0{bottom:642.050796px;}
.ye0{bottom:642.217500px;}
.y293{bottom:642.307132px;}
.y219{bottom:643.068980px;}
.y1ae{bottom:644.257476px;}
.y56{bottom:644.262994px;}
.y2d4{bottom:646.631993px;}
.y32b{bottom:646.643776px;}
.y10{bottom:647.149500px;}
.y176{bottom:648.255000px;}
.y175{bottom:648.255218px;}
.y143{bottom:654.718091px;}
.y1df{bottom:657.782578px;}
.y292{bottom:658.038914px;}
.y2d3{bottom:658.537074px;}
.y32a{bottom:658.549813px;}
.y218{bottom:658.717076px;}
.y142{bottom:658.802783px;}
.y1ad{bottom:659.904376px;}
.y55{bottom:659.909894px;}
.y174{bottom:663.987000px;}
.y173{bottom:663.988658px;}
.y2d2{bottom:670.528229px;}
.y329{bottom:670.540012px;}
.y1de{bottom:673.429478px;}
.y291{bottom:673.685814px;}
.y217{bottom:674.448858px;}
.y1ac{bottom:675.636158px;}
.y141{bottom:675.640416px;}
.y54{bottom:675.641676px;}
.y110{bottom:675.808536px;}
.y172{bottom:679.721636px;}
.y2d1{bottom:682.433309px;}
.y328{bottom:682.445092px;}
.y1dd{bottom:689.162456px;}
.y290{bottom:689.417596px;}
.y216{bottom:690.095758px;}
.y10f{bottom:690.180000px;}
.y1ab{bottom:691.284254px;}
.y140{bottom:691.287316px;}
.y53{bottom:691.288577px;}
.y2d0{bottom:694.423508px;}
.y327{bottom:694.435291px;}
.y171{bottom:695.368536px;}
.yf{bottom:698.344066px;}
.yc2{bottom:698.483700px;}
.y1dc{bottom:704.894238px;}
.y28f{bottom:705.065692px;}
.y215{bottom:705.827540px;}
.y2cf{bottom:706.413707px;}
.y326{bottom:706.426446px;}
.y1aa{bottom:707.016036px;}
.y13f{bottom:707.019098px;}
.y52{bottom:707.021554px;}
.y170{bottom:711.100318px;}
.ye{bottom:713.480530px;}
.y2ce{bottom:718.319744px;}
.y325{bottom:718.331527px;}
.y1db{bottom:720.541138px;}
.y28e{bottom:720.797473px;}
.y214{bottom:721.475636px;}
.y1a9{bottom:722.747818px;}
.y13e{bottom:722.752076px;}
.y51{bottom:722.753336px;}
.y16f{bottom:726.747218px;}
.yd{bottom:728.533071px;}
.y2cd{bottom:730.309942px;}
.y324{bottom:730.321725px;}
.y1da{bottom:736.274115px;}
.y28d{bottom:736.444374px;}
.y213{bottom:737.207417px;}
.y1a8{bottom:738.394718px;}
.y13d{bottom:738.398976px;}
.y50{bottom:738.400236px;}
.y2cc{bottom:742.215023px;}
.y323{bottom:742.226806px;}
.y16e{bottom:742.479000px;}
.y16d{bottom:742.479917px;}
.yc{bottom:743.669535px;}
.y1d9{bottom:751.921016px;}
.y28c{bottom:752.176156px;}
.y212{bottom:752.854318px;}
.y1a7{bottom:754.127695px;}
.y13c{bottom:754.130758px;}
.y4f{bottom:754.132018px;}
.y2cb{bottom:754.206178px;}
.y322{bottom:754.217961px;}
.yc1{bottom:755.827845px;}
.y16c{bottom:758.126818px;}
.yb{bottom:758.721000px;}
.y2ca{bottom:766.196377px;}
.y321{bottom:766.208160px;}
.y1d8{bottom:767.652798px;}
.yc0{bottom:767.775150px;}
.y28b{bottom:767.824251px;}
.y211{bottom:768.586100px;}
.y1a6{bottom:769.774596px;}
.y13b{bottom:769.777658px;}
.y4e{bottom:769.780114px;}
.y16b{bottom:773.858600px;}
.y2c9{bottom:778.101457px;}
.y320{bottom:778.113240px;}
.y1d7{bottom:783.299698px;}
.y28a{bottom:783.556033px;}
.y210{bottom:784.233000px;}
.y13a{bottom:785.510636px;}
.y4d{bottom:785.511896px;}
.ya{bottom:788.145000px;}
.y16a{bottom:789.505500px;}
.y169{bottom:789.508503px;}
.y2c8{bottom:790.091656px;}
.y31f{bottom:790.104395px;}
.y1d6{bottom:799.031480px;}
.y289{bottom:799.202934px;}
.y1a5{bottom:801.153278px;}
.y139{bottom:801.157536px;}
.y4c{bottom:801.158796px;}
.y2c7{bottom:801.997693px;}
.y31e{bottom:802.009476px;}
.y168{bottom:805.240284px;}
.y2c6{bottom:813.987892px;}
.y31d{bottom:813.999674px;}
.y1d5{bottom:814.679576px;}
.y288{bottom:814.934716px;}
.y1a4{bottom:816.886255px;}
.y138{bottom:816.889318px;}
.y4b{bottom:816.890578px;}
.y167{bottom:820.887185px;}
.y25f{bottom:824.799963px;}
.y2c5{bottom:825.892972px;}
.y31c{bottom:825.904755px;}
.y1d4{bottom:830.411358px;}
.y287{bottom:830.581616px;}
.y1a3{bottom:832.533156px;}
.y137{bottom:832.536218px;}
.y4a{bottom:832.537478px;}
.y9{bottom:836.958000px;}
.y25e{bottom:837.640388px;}
.y2c4{bottom:837.883171px;}
.y31b{bottom:837.895910px;}
.y204{bottom:846.058258px;}
.y286{bottom:846.314593px;}
.y135{bottom:848.264513px;}
.y1a2{bottom:848.264938px;}
.y136{bottom:848.268000px;}
.y49{bottom:848.270456px;}
.y2c3{bottom:849.874326px;}
.y31a{bottom:849.886109px;}
.y25d{bottom:850.481769px;}
.y166{bottom:852.267062px;}
.y7{bottom:861.619500px;}
.y2c2{bottom:861.779406px;}
.y1d3{bottom:861.790040px;}
.y319{bottom:861.791189px;}
.y285{bottom:861.961494px;}
.y1a1{bottom:863.911838px;}
.y134{bottom:863.912609px;}
.y48{bottom:863.917356px;}
.y8{bottom:868.677000px;}
.y25c{bottom:870.210079px;}
.y2c1{bottom:873.769605px;}
.y318{bottom:873.781388px;}
.y1d2{bottom:877.438136px;}
.y284{bottom:877.693275px;}
.y133{bottom:879.644391px;}
.y1a0{bottom:879.644815px;}
.y47{bottom:879.649138px;}
.y2c0{bottom:885.675642px;}
.y317{bottom:885.687425px;}
.y25b{bottom:889.939345px;}
.y1d1{bottom:893.169917px;}
.y283{bottom:893.340176px;}
.y132{bottom:895.291291px;}
.y19f{bottom:895.291716px;}
.y46{bottom:895.296038px;}
.y2bf{bottom:897.665841px;}
.y316{bottom:897.677624px;}
.y6{bottom:899.122216px;}
.y25a{bottom:902.779770px;}
.y1d0{bottom:908.816818px;}
.y282{bottom:909.073153px;}
.y2be{bottom:909.656039px;}
.y315{bottom:909.667822px;}
.y131{bottom:911.023073px;}
.y19e{bottom:911.023497px;}
.y45{bottom:911.029016px;}
.y259{bottom:915.621152px;}
.y2bd{bottom:921.561120px;}
.y314{bottom:921.572903px;}
.y203{bottom:924.548600px;}
.y281{bottom:924.720054px;}
.y5{bottom:924.973500px;}
.y130{bottom:926.669973px;}
.y19d{bottom:926.670398px;}
.y44{bottom:926.675916px;}
.y258{bottom:928.546695px;}
.y2bc{bottom:933.552275px;}
.y313{bottom:933.564058px;}
.y1cf{bottom:940.195500px;}
.y280{bottom:940.451835px;}
.y257{bottom:941.388076px;}
.y19c{bottom:942.402180px;}
.y12f{bottom:942.402951px;}
.y43{bottom:942.407698px;}
.y2bb{bottom:945.457356px;}
.y312{bottom:945.469138px;}
.y2ba{bottom:957.447554px;}
.y311{bottom:957.459337px;}
.y12e{bottom:958.049851px;}
.y19b{bottom:958.050276px;}
.y42{bottom:958.054598px;}
.y256{bottom:961.116386px;}
.y2b9{bottom:969.352635px;}
.y310{bottom:969.365374px;}
.y27f{bottom:971.831713px;}
.y12d{bottom:973.781633px;}
.y19a{bottom:973.782057px;}
.y41{bottom:973.787576px;}
.y20e{bottom:980.760534px;}
.y255{bottom:980.845652px;}
.y2b8{bottom:981.343790px;}
.y30f{bottom:981.355573px;}
.y12c{bottom:989.428533px;}
.y199{bottom:989.428958px;}
.y40{bottom:989.434476px;}
.y2b7{bottom:993.333989px;}
.y30e{bottom:993.345772px;}
.y20d{bottom:993.600959px;}
.y254{bottom:993.686077px;}
.y34{bottom:1003.719000px;}
.y198{bottom:1005.160740px;}
.y12b{bottom:1005.161511px;}
.y3f{bottom:1005.166258px;}
.y2b6{bottom:1005.239069px;}
.y30d{bottom:1005.250852px;}
.y20c{bottom:1006.442341px;}
.y253{bottom:1006.527459px;}
.y2b5{bottom:1017.229268px;}
.y30c{bottom:1017.242007px;}
.y20b{bottom:1019.282766px;}
.y252{bottom:1019.367884px;}
.y12a{bottom:1020.808411px;}
.y197{bottom:1020.808835px;}
.y3e{bottom:1020.813158px;}
.y2b4{bottom:1029.135305px;}
.y30b{bottom:1029.147088px;}
.y20a{bottom:1032.124147px;}
.y251{bottom:1032.208309px;}
.y129{bottom:1036.540193px;}
.y196{bottom:1036.540617px;}
.y3d{bottom:1036.546136px;}
.y2b3{bottom:1041.125503px;}
.y30a{bottom:1041.137286px;}
.y250{bottom:1045.049690px;}
.y33{bottom:1045.474500px;}
.y209{bottom:1051.852457px;}
.y128{bottom:1052.187093px;}
.y195{bottom:1052.187518px;}
.y3c{bottom:1052.193036px;}
.y2b2{bottom:1053.115702px;}
.y309{bottom:1053.127485px;}
.y208{bottom:1064.778000px;}
.y2b1{bottom:1065.021739px;}
.y308{bottom:1065.033522px;}
.y194{bottom:1067.919300px;}
.y127{bottom:1067.920071px;}
.y3b{bottom:1067.924818px;}
.y2b0{bottom:1077.011938px;}
.y307{bottom:1077.023721px;}
.y193{bottom:1083.566200px;}
.y126{bottom:1083.566971px;}
.y3a{bottom:1083.571718px;}
.y207{bottom:1084.507536px;}
.y32{bottom:1087.312500px;}
.y2af{bottom:1088.917018px;}
.y306{bottom:1088.928801px;}
.y206{bottom:1098.879000px;}
.y125{bottom:1099.298753px;}
.y192{bottom:1099.299177px;}
.y39{bottom:1099.303500px;}
.y2ae{bottom:1100.907217px;}
.y305{bottom:1100.919000px;}
.y2{bottom:1127.505000px;}
.y37{bottom:1128.630000px;}
.y304{bottom:1128.631862px;}
.y1ce{bottom:1128.635365px;}
.y165{bottom:1128.636058px;}
.y33b{bottom:1128.640776px;}
.y20f{bottom:1128.641565px;}
.y81{bottom:1128.642000px;}
.h11{height:25.514009px;}
.hf{height:27.833505px;}
.h10{height:27.852172px;}
.h7{height:33.622910px;}
.hc{height:33.623438px;}
.hb{height:34.526473px;}
.h13{height:34.589568px;}
.h8{height:36.775371px;}
.h12{height:37.111485px;}
.h3{height:37.826367px;}
.h6{height:38.959629px;}
.h9{height:42.029824px;}
.hd{height:45.620852px;}
.h14{height:46.754322px;}
.h5{height:55.689609px;}
.h15{height:58.357461px;}
.h4{height:70.925098px;}
.ha{height:73.551270px;}
.he{height:797.158500px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w3{width:512.107500px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:24.690195px;}
.x2{left:56.276979px;}
.x8{left:63.949500px;}
.x15{left:65.308650px;}
.x6{left:74.323389px;}
.x28{left:88.015650px;}
.x29{left:93.968400px;}
.x2f{left:95.328138px;}
.x23{left:104.003100px;}
.x1a{left:124.245150px;}
.x2c{left:126.878700px;}
.x22{left:132.406200px;}
.x3{left:161.319000px;}
.x4{left:167.272500px;}
.x13{left:168.846750px;}
.x2e{left:170.592181px;}
.x30{left:186.914434px;}
.x11{left:190.402500px;}
.x1b{left:203.894220px;}
.x18{left:207.872250px;}
.x27{left:213.534000px;}
.x33{left:221.780235px;}
.x14{left:240.527400px;}
.x12{left:242.916450px;}
.x32{left:252.567000px;}
.x16{left:272.384700px;}
.xa{left:285.562500px;}
.x5{left:302.995500px;}
.x1{left:323.726979px;}
.x2a{left:329.527500px;}
.x2b{left:335.481000px;}
.x9{left:342.624000px;}
.x1d{left:344.580000px;}
.x10{left:351.039682px;}
.x19{left:375.922800px;}
.xd{left:380.972987px;}
.x17{left:384.436500px;}
.x25{left:423.751500px;}
.x26{left:429.703500px;}
.x31{left:441.626979px;}
.xc{left:444.311979px;}
.x2d{left:454.365000px;}
.x7{left:459.888932px;}
.x34{left:474.259180px;}
.xe{left:477.831221px;}
.x37{left:496.709361px;}
.x35{left:576.986406px;}
.x36{left:603.092847px;}
.x24{left:621.121426px;}
.xb{left:626.816979px;}
.x1f{left:649.105500px;}
.x20{left:660.670500px;}
.x21{left:754.468426px;}
.x1e{left:813.393697px;}
.xf{left:829.976142px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.720461pt;}
.v2{vertical-align:10.881843pt;}
.v4{vertical-align:14.513455pt;}
.v3{vertical-align:15.408772pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:9.296325pt;}
.lsb{letter-spacing:9.904178pt;}
.ls1{letter-spacing:10.803494pt;}
.ls9{letter-spacing:11.111382pt;}
.ls4{letter-spacing:12.322837pt;}
.ls6{letter-spacing:12.624638pt;}
.lsd{letter-spacing:13.530042pt;}
.ls3{letter-spacing:13.831843pt;}
.ls5{letter-spacing:14.435445pt;}
.lse{letter-spacing:14.741497pt;}
.lsf{letter-spacing:15.948701pt;}
.ls8{letter-spacing:16.250503pt;}
.ls0{letter-spacing:16.922845pt;}
.ls7{letter-spacing:17.763759pt;}
.lsc{letter-spacing:19.880617pt;}
.ws2{word-spacing:-21.538128pt;}
.wsb{word-spacing:-19.191072pt;}
.ws3{word-spacing:-17.932667pt;}
.ws7{word-spacing:-12.454610pt;}
.ws1{word-spacing:-11.859360pt;}
.ws5{word-spacing:-11.209008pt;}
.ws6{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsd{word-spacing:-9.963406pt;}
.ws4{word-spacing:-9.564000pt;}
.ws9{word-spacing:-8.943403pt;}
.wsa{word-spacing:-8.717805pt;}
.wsc{word-spacing:-8.501200pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-15.416526pt;}
._f{margin-left:-3.981251pt;}
._10{margin-left:-3.047766pt;}
._6{margin-left:-2.127034pt;}
._5{margin-left:-0.921970pt;}
._3{width:1.040604pt;}
._2{width:1.965420pt;}
._1{width:3.141803pt;}
._d{width:4.031197pt;}
._c{width:5.294630pt;}
._b{width:6.193646pt;}
._9{width:7.238035pt;}
._8{width:8.190610pt;}
._7{width:9.127882pt;}
._a{width:10.218178pt;}
._14{width:11.489696pt;}
._13{width:13.453529pt;}
._0{width:14.384256pt;}
._19{width:15.502737pt;}
._15{width:17.132357pt;}
._12{width:18.060658pt;}
._18{width:19.055978pt;}
._16{width:20.008139pt;}
._41{width:22.099493pt;}
._45{width:23.663758pt;}
._11{width:25.857130pt;}
._e{width:26.839046pt;}
._47{width:37.797402pt;}
._1d{width:50.422317pt;}
._43{width:54.043829pt;}
._46{width:56.160513pt;}
._1b{width:81.196661pt;}
._20{width:82.686072pt;}
._2b{width:87.167904pt;}
._25{width:92.948720pt;}
._44{width:99.678270pt;}
._28{width:102.918928pt;}
._27{width:105.088434pt;}
._26{width:109.577068pt;}
._42{width:112.260046pt;}
._29{width:113.334598pt;}
._31{width:123.661856pt;}
._2a{width:126.110201pt;}
._35{width:141.123320pt;}
._2f{width:146.020012pt;}
._34{width:150.797686pt;}
._2e{width:155.694377pt;}
._24{width:162.291308pt;}
._30{width:191.409619pt;}
._1f{width:205.861659pt;}
._23{width:214.464873pt;}
._17{width:230.249037pt;}
._32{width:253.067122pt;}
._2c{width:258.188245pt;}
._33{width:259.647051pt;}
._2d{width:264.543742pt;}
._3c{width:287.170536pt;}
._3f{width:292.359668pt;}
._3b{width:307.280975pt;}
._3a{width:312.422500pt;}
._38{width:317.944880pt;}
._21{width:337.776479pt;}
._37{width:353.459493pt;}
._36{width:358.601019pt;}
._40{width:378.623045pt;}
._1e{width:456.422456pt;}
._3e{width:485.228093pt;}
._3d{width:494.919461pt;}
._39{width:535.324022pt;}
._1c{width:656.731188pt;}
._22{width:1150.280370pt;}
._1a{width:1649.270205pt;}
.fsd{font-size:29.753600pt;}
.fsa{font-size:31.151467pt;}
.fs9{font-size:33.983467pt;}
.fs4{font-size:34.004800pt;}
.fs8{font-size:34.005333pt;}
.fs5{font-size:37.193067pt;}
.fs0{font-size:38.256000pt;}
.fs3{font-size:39.402133pt;}
.fs6{font-size:42.507200pt;}
.fsb{font-size:45.311467pt;}
.fsc{font-size:45.482667pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fs7{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.yd7{bottom:20.528573pt;}
.ydb{bottom:28.185200pt;}
.yd6{bottom:31.148400pt;}
.y38{bottom:42.160000pt;}
.yd5{bottom:68.670533pt;}
.y2ad{bottom:69.695397pt;}
.yba{bottom:69.697266pt;}
.y274{bottom:69.698511pt;}
.y10e{bottom:69.700112pt;}
.y24f{bottom:69.700355pt;}
.y78{bottom:69.703272pt;}
.ybe{bottom:72.115925pt;}
.y303{bottom:75.288337pt;}
.y1cd{bottom:75.818525pt;}
.y164{bottom:75.819141pt;}
.y2ac{bottom:80.353352pt;}
.y4{bottom:81.066667pt;}
.y202{bottom:82.552758pt;}
.y103{bottom:82.700939pt;}
.y27d{bottom:82.774788pt;}
.y23c{bottom:83.457810pt;}
.y273{bottom:83.682317pt;}
.y10d{bottom:83.683918pt;}
.y24e{bottom:83.685224pt;}
.y77{bottom:83.687078pt;}
.y302{bottom:85.946291pt;}
.ybd{bottom:86.099732pt;}
.y163{bottom:87.308513pt;}
.y1cc{bottom:87.308747pt;}
.y2ab{bottom:90.935646pt;}
.y3{bottom:93.893333pt;}
.yd0{bottom:94.860280pt;}
.y301{bottom:96.528585pt;}
.y201{bottom:96.536564pt;}
.y102{bottom:96.609295pt;}
.y27c{bottom:96.759657pt;}
.y23b{bottom:97.366166pt;}
.yb9{bottom:97.589428pt;}
.y272{bottom:97.590673pt;}
.y10c{bottom:97.592274pt;}
.y24d{bottom:97.593579pt;}
.y76{bottom:97.595434pt;}
.y1cb{bottom:98.722458pt;}
.y162{bottom:98.723074pt;}
.ybc{bottom:100.083538pt;}
.y2aa{bottom:101.593600pt;}
.ycf{bottom:104.065547pt;}
.yd1{bottom:104.069067pt;}
.y36{bottom:106.582787pt;}
.y300{bottom:107.185689pt;}
.y161{bottom:110.136786pt;}
.y1ca{bottom:110.137020pt;}
.y200{bottom:110.444920pt;}
.y101{bottom:110.594164pt;}
.y27b{bottom:110.743463pt;}
.y23a{bottom:111.351035pt;}
.y271{bottom:111.574479pt;}
.y10b{bottom:111.576080pt;}
.y24c{bottom:111.577386pt;}
.y75{bottom:111.579240pt;}
.y80{bottom:112.411318pt;}
.yce{bottom:113.270800pt;}
.ybb{bottom:113.992956pt;}
.y2ff{bottom:117.844494pt;}
.y35{bottom:119.281867pt;}
.y160{bottom:121.550497pt;}
.y1ff{bottom:124.429789pt;}
.y100{bottom:124.502520pt;}
.y27a{bottom:124.651819pt;}
.y239{bottom:125.259391pt;}
.y270{bottom:125.482835pt;}
.y10a{bottom:125.485499pt;}
.y24b{bottom:125.485741pt;}
.y74{bottom:125.488658pt;}
.y2a9{bottom:126.093323pt;}
.y7f{bottom:126.319674pt;}
.y1c9{bottom:127.673295pt;}
.yb8{bottom:127.976762pt;}
.y2fe{bottom:128.426788pt;}
.y15f{bottom:132.965058pt;}
.y1fe{bottom:138.338145pt;}
.yff{bottom:138.486326pt;}
.y279{bottom:138.635625pt;}
.y2fd{bottom:139.084742pt;}
.y1c8{bottom:139.162667pt;}
.y238{bottom:139.243197pt;}
.y26f{bottom:139.467703pt;}
.y109{bottom:139.469305pt;}
.y24a{bottom:139.470610pt;}
.y73{bottom:139.472464pt;}
.y7e{bottom:140.303480pt;}
.yb7{bottom:141.885118pt;}
.y31{bottom:141.958699pt;}
.y2fc{bottom:149.667036pt;}
.y15e{bottom:150.501333pt;}
.y1fd{bottom:152.321951pt;}
.yfe{bottom:152.394682pt;}
.y278{bottom:152.543981pt;}
.y237{bottom:153.151553pt;}
.y108{bottom:153.377661pt;}
.y249{bottom:153.378966pt;}
.y72{bottom:153.380820pt;}
.y7d{bottom:154.288349pt;}
.y30{bottom:154.733333pt;}
.y2a8{bottom:155.724030pt;}
.yda{bottom:155.838933pt;}
.yb6{bottom:155.868924pt;}
.y1c7{bottom:156.699587pt;}
.y2fb{bottom:160.325840pt;}
.y1fc{bottom:166.305757pt;}
.yfd{bottom:166.379550pt;}
.y277{bottom:166.528850pt;}
.y236{bottom:167.136421pt;}
.y26e{bottom:167.359865pt;}
.y107{bottom:167.361467pt;}
.y248{bottom:167.362772pt;}
.y71{bottom:167.364626pt;}
.yde{bottom:167.783867pt;}
.y15d{bottom:168.037365pt;}
.y7c{bottom:168.196705pt;}
.y1c6{bottom:169.398667pt;}
.y2a7{bottom:169.632385pt;}
.yb5{bottom:169.778343pt;}
.y2fa{bottom:170.908134pt;}
.y1fb{bottom:180.214113pt;}
.yfc{bottom:180.287906pt;}
.y276{bottom:180.437205pt;}
.y15c{bottom:180.812000pt;}
.y235{bottom:181.044777pt;}
.y106{bottom:181.270885pt;}
.y247{bottom:181.271128pt;}
.yb0{bottom:181.274045pt;}
.y2f9{bottom:181.566089pt;}
.y98{bottom:181.726746pt;}
.y7b{bottom:182.180511pt;}
.yb4{bottom:183.762149pt;}
.y2f8{bottom:192.224043pt;}
.y2e{bottom:193.438289pt;}
.y1fa{bottom:194.198981pt;}
.yfb{bottom:194.271712pt;}
.y275{bottom:194.421012pt;}
.y234{bottom:195.028583pt;}
.y105{bottom:195.254691pt;}
.y246{bottom:195.255997pt;}
.y70{bottom:195.257851pt;}
.y97{bottom:195.636165pt;}
.y7a{bottom:196.088867pt;}
.y2a6{bottom:197.525610pt;}
.yb3{bottom:197.670505pt;}
.y191{bottom:199.714076pt;}
.y2f7{bottom:202.807187pt;}
.yd4{bottom:203.184293pt;}
.y2d{bottom:207.346645pt;}
.y205{bottom:208.107337pt;}
.yfa{bottom:208.180068pt;}
.y26d{bottom:208.329367pt;}
.y233{bottom:208.936939pt;}
.y245{bottom:209.164353pt;}
.yaf{bottom:209.166207pt;}
.y96{bottom:209.619971pt;}
.y79{bottom:210.073735pt;}
.y124{bottom:211.052495pt;}
.yb2{bottom:211.654311pt;}
.y2f6{bottom:213.465141pt;}
.y190{bottom:213.622432pt;}
.yd3{bottom:213.804120pt;}
.y2c{bottom:221.330451pt;}
.y15a{bottom:221.861639pt;}
.y1f9{bottom:222.091143pt;}
.yf9{bottom:222.164937pt;}
.y26c{bottom:222.314236pt;}
.y232{bottom:222.921808pt;}
.y104{bottom:223.146853pt;}
.y244{bottom:223.148159pt;}
.yae{bottom:223.150013pt;}
.y95{bottom:223.528327pt;}
.yd2{bottom:223.718800pt;}
.y6f{bottom:223.982091pt;}
.y2f5{bottom:224.047435pt;}
.ycc{bottom:224.420533pt;}
.yb1{bottom:225.562667pt;}
.y2a5{bottom:227.156316pt;}
.y18f{bottom:227.606238pt;}
.y2f4{bottom:234.706240pt;}
.y2b{bottom:235.238807pt;}
.y159{bottom:235.846508pt;}
.y1f8{bottom:235.999499pt;}
.yf8{bottom:236.073293pt;}
.y26b{bottom:236.222592pt;}
.y231{bottom:236.905614pt;}
.y243{bottom:237.056515pt;}
.yad{bottom:237.059431pt;}
.y94{bottom:237.512133pt;}
.y6e{bottom:237.965897pt;}
.ycd{bottom:238.579467pt;}
.y123{bottom:238.944657pt;}
.y2a4{bottom:241.141185pt;}
.y18e{bottom:241.515657pt;}
.y2f3{bottom:245.364194pt;}
.y2a{bottom:249.223676pt;}
.y158{bottom:249.754864pt;}
.y1f7{bottom:249.984368pt;}
.yf7{bottom:250.057099pt;}
.y26a{bottom:250.206398pt;}
.y230{bottom:250.813970pt;}
.y242{bottom:251.040321pt;}
.yac{bottom:251.043238pt;}
.y93{bottom:251.420489pt;}
.y1c5{bottom:251.871473pt;}
.y6d{bottom:251.874253pt;}
.y2a3{bottom:255.049541pt;}
.ydf{bottom:255.496000pt;}
.y18d{bottom:255.499463pt;}
.y2f2{bottom:255.946488pt;}
.y29{bottom:263.132032pt;}
.y157{bottom:263.738670pt;}
.y1f6{bottom:263.892724pt;}
.yf6{bottom:263.965455pt;}
.y269{bottom:264.114754pt;}
.y22f{bottom:264.797776pt;}
.y241{bottom:264.949739pt;}
.yab{bottom:264.951593pt;}
.y92{bottom:265.405358pt;}
.y1c4{bottom:265.855280pt;}
.y6c{bottom:265.859122pt;}
.y2f1{bottom:266.604442pt;}
.y18c{bottom:269.407819pt;}
.y122{bottom:273.036494pt;}
.ybf{bottom:275.754667pt;}
.y28{bottom:277.115838pt;}
.y2f0{bottom:277.187586pt;}
.y156{bottom:277.647025pt;}
.y1f5{bottom:277.876530pt;}
.yf5{bottom:277.950324pt;}
.y268{bottom:278.099623pt;}
.y22e{bottom:278.707195pt;}
.y240{bottom:278.933545pt;}
.yaa{bottom:278.935399pt;}
.y91{bottom:279.313714pt;}
.y1c3{bottom:279.763635pt;}
.y6b{bottom:279.767478pt;}
.y2a2{bottom:282.941703pt;}
.y18b{bottom:283.391625pt;}
.y121{bottom:286.944850pt;}
.y2ef{bottom:287.845541pt;}
.y2f{bottom:291.024194pt;}
.y155{bottom:291.631894pt;}
.y1f4{bottom:291.784886pt;}
.yf4{bottom:291.858679pt;}
.y267{bottom:292.007979pt;}
.y22d{bottom:292.691001pt;}
.y23f{bottom:292.841901pt;}
.ya9{bottom:292.843755pt;}
.y90{bottom:293.297520pt;}
.y1c2{bottom:293.747442pt;}
.y6a{bottom:293.751284pt;}
.y18a{bottom:297.299981pt;}
.y2ee{bottom:298.427834pt;}
.y120{bottom:300.928656pt;}
.ydd{bottom:303.710840pt;}
.y27{bottom:305.008000pt;}
.y154{bottom:305.540250pt;}
.y1f3{bottom:305.769755pt;}
.yf3{bottom:305.842486pt;}
.y266{bottom:305.991785pt;}
.y22c{bottom:306.599356pt;}
.y23e{bottom:306.825707pt;}
.ya8{bottom:306.828624pt;}
.y8f{bottom:307.205876pt;}
.y1c1{bottom:307.655797pt;}
.y69{bottom:307.659640pt;}
.y2ed{bottom:309.085789pt;}
.y189{bottom:311.284850pt;}
.y2a1{bottom:312.573472pt;}
.ydc{bottom:314.330667pt;}
.y11f{bottom:314.837012pt;}
.y153{bottom:319.524056pt;}
.y1f2{bottom:319.678110pt;}
.y2ec{bottom:319.744593pt;}
.yf2{bottom:319.826292pt;}
.y265{bottom:319.900141pt;}
.y22b{bottom:320.583163pt;}
.y8e{bottom:321.190744pt;}
.y1c0{bottom:321.640666pt;}
.y68{bottom:321.643446pt;}
.y188{bottom:325.193205pt;}
.y2a0{bottom:326.557278pt;}
.y11e{bottom:328.821880pt;}
.y2eb{bottom:330.326887pt;}
.y152{bottom:333.432412pt;}
.y1f1{bottom:333.661917pt;}
.yf1{bottom:333.734647pt;}
.y264{bottom:333.885009pt;}
.y22a{bottom:334.491518pt;}
.y23d{bottom:334.718932pt;}
.ya7{bottom:334.720786pt;}
.y8d{bottom:335.174550pt;}
.y1bf{bottom:335.549022pt;}
.y67{bottom:335.552865pt;}
.y187{bottom:339.177012pt;}
.y29f{bottom:340.465634pt;}
.y2ea{bottom:340.984842pt;}
.y11d{bottom:342.730236pt;}
.y151{bottom:347.417281pt;}
.y1f0{bottom:347.570272pt;}
.yf0{bottom:347.719516pt;}
.y263{bottom:347.793365pt;}
.y229{bottom:348.476387pt;}
.y8c{bottom:349.082906pt;}
.y1be{bottom:349.532828pt;}
.y66{bottom:349.536671pt;}
.yd9{bottom:350.417693pt;}
.y2e9{bottom:351.567986pt;}
.ycb{bottom:351.851600pt;}
.y186{bottom:353.085367pt;}
.y29e{bottom:354.449440pt;}
.y11c{bottom:356.714042pt;}
.y26{bottom:357.923589pt;}
.y150{bottom:361.401087pt;}
.y1ef{bottom:361.555141pt;}
.yef{bottom:361.627872pt;}
.y262{bottom:361.777171pt;}
.y2e8{bottom:362.225940pt;}
.y228{bottom:362.384743pt;}
.y8b{bottom:363.066712pt;}
.ya6{bottom:363.294126pt;}
.y1bd{bottom:363.441184pt;}
.y65{bottom:363.445026pt;}
.y185{bottom:367.070236pt;}
.y11b{bottom:370.622398pt;}
.y25{bottom:370.622669pt;}
.y2e7{bottom:372.883894pt;}
.y14f{bottom:375.309443pt;}
.y1ee{bottom:375.463497pt;}
.yee{bottom:375.611678pt;}
.y261{bottom:375.685527pt;}
.y227{bottom:376.368549pt;}
.y8a{bottom:376.976131pt;}
.ya5{bottom:377.277932pt;}
.y1bc{bottom:377.426053pt;}
.y64{bottom:377.428833pt;}
.y184{bottom:380.978592pt;}
.y29d{bottom:382.342665pt;}
.y24{bottom:383.397303pt;}
.y2e6{bottom:383.466188pt;}
.y11a{bottom:384.606204pt;}
.yca{bottom:388.665373pt;}
.y1ed{bottom:389.447303pt;}
.yed{bottom:389.520034pt;}
.y260{bottom:389.669333pt;}
.y226{bottom:390.276905pt;}
.y89{bottom:390.959937pt;}
.ya4{bottom:391.186288pt;}
.y1bb{bottom:391.334409pt;}
.y63{bottom:391.338251pt;}
.y2e5{bottom:394.124993pt;}
.y183{bottom:394.962398pt;}
.y23{bottom:396.171938pt;}
.y119{bottom:398.515623pt;}
.yc9{bottom:399.285200pt;}
.y14e{bottom:403.202667pt;}
.y1ec{bottom:403.355659pt;}
.yec{bottom:403.504903pt;}
.y225{bottom:404.261774pt;}
.y2e4{bottom:404.707286pt;}
.y88{bottom:404.868293pt;}
.ya3{bottom:405.171157pt;}
.y1ba{bottom:405.318215pt;}
.y62{bottom:405.322057pt;}
.y182{bottom:408.870754pt;}
.y22{bottom:408.871017pt;}
.y29c{bottom:410.234827pt;}
.y118{bottom:412.499429pt;}
.y2e3{bottom:415.365241pt;}
.y33a{bottom:415.375715pt;}
.yc8{bottom:415.568400pt;}
.y1eb{bottom:417.340528pt;}
.yeb{bottom:417.413259pt;}
.y224{bottom:418.170130pt;}
.y87{bottom:418.852099pt;}
.ya2{bottom:419.079513pt;}
.y1b9{bottom:419.226571pt;}
.y61{bottom:419.230413pt;}
.y21{bottom:421.645652pt;}
.y29b{bottom:424.144245pt;}
.y2e2{bottom:426.023195pt;}
.y339{bottom:426.034519pt;}
.y117{bottom:426.407785pt;}
.y14d{bottom:431.094829pt;}
.y1ea{bottom:431.248884pt;}
.yea{bottom:431.397065pt;}
.y223{bottom:432.153936pt;}
.y86{bottom:432.761518pt;}
.ya1{bottom:433.063319pt;}
.y1b8{bottom:433.211439pt;}
.y60{bottom:433.214219pt;}
.y20{bottom:434.420287pt;}
.y2e1{bottom:436.606339pt;}
.y338{bottom:436.616813pt;}
.y181{bottom:436.763979pt;}
.y29a{bottom:438.128052pt;}
.y116{bottom:440.391591pt;}
.y1e9{bottom:445.232690pt;}
.ye9{bottom:445.305421pt;}
.y222{bottom:446.062292pt;}
.y85{bottom:446.745324pt;}
.ya0{bottom:446.971674pt;}
.y1b7{bottom:447.119795pt;}
.y5f{bottom:447.123638pt;}
.y27e{bottom:447.193333pt;}
.y1f{bottom:447.194922pt;}
.y2e0{bottom:447.264294pt;}
.y337{bottom:447.274767pt;}
.y180{bottom:450.747785pt;}
.y115{bottom:454.301009pt;}
.yc7{bottom:454.501360pt;}
.y2df{bottom:457.846587pt;}
.y336{bottom:457.857061pt;}
.y14c{bottom:458.986991pt;}
.y1e8{bottom:459.141046pt;}
.ye8{bottom:459.290289pt;}
.y1e{bottom:459.894001pt;}
.y221{bottom:460.047160pt;}
.y84{bottom:460.653679pt;}
.y9f{bottom:460.956543pt;}
.y1b6{bottom:461.103601pt;}
.y5e{bottom:461.107444pt;}
.y17f{bottom:464.656141pt;}
.yc6{bottom:465.121187pt;}
.y299{bottom:466.020213pt;}
.y114{bottom:468.284816pt;}
.y2de{bottom:468.504542pt;}
.y335{bottom:468.515866pt;}
.y1d{bottom:472.668636pt;}
.y14b{bottom:472.971860pt;}
.y1e7{bottom:473.124852pt;}
.ye7{bottom:473.198645pt;}
.y220{bottom:473.955516pt;}
.y83{bottom:474.637486pt;}
.y9e{bottom:474.864899pt;}
.y1b5{bottom:475.011957pt;}
.y5d{bottom:475.015800pt;}
.yc5{bottom:475.035867pt;}
.y17e{bottom:478.641009pt;}
.y2dd{bottom:479.087686pt;}
.y334{bottom:479.098159pt;}
.y113{bottom:482.193171pt;}
.y1c{bottom:485.443271pt;}
.y14a{bottom:486.880216pt;}
.y1e6{bottom:487.034270pt;}
.ye6{bottom:487.182451pt;}
.y21f{bottom:487.939322pt;}
.y9d{bottom:488.848705pt;}
.y1b4{bottom:488.996826pt;}
.y5c{bottom:488.999606pt;}
.y2dc{bottom:489.745640pt;}
.y333{bottom:489.756114pt;}
.y17d{bottom:492.549365pt;}
.y16{bottom:493.380267pt;}
.yc4{bottom:493.442667pt;}
.y112{bottom:496.176977pt;}
.y1b{bottom:498.142350pt;}
.y2db{bottom:500.403595pt;}
.y332{bottom:500.414068pt;}
.y149{bottom:500.864022pt;}
.y1e5{bottom:501.018076pt;}
.ye5{bottom:501.090807pt;}
.y298{bottom:501.169417pt;}
.y21e{bottom:501.847678pt;}
.y82{bottom:502.530710pt;}
.y9c{bottom:502.757061pt;}
.y1b3{bottom:502.905182pt;}
.y5b{bottom:502.907962pt;}
.y15{bottom:504.793978pt;}
.y17c{bottom:506.533171pt;}
.y111{bottom:510.085333pt;}
.y1a{bottom:510.916985pt;}
.y2da{bottom:510.986739pt;}
.y331{bottom:510.997212pt;}
.y148{bottom:514.772378pt;}
.y1e4{bottom:514.926432pt;}
.ye4{bottom:515.075676pt;}
.y297{bottom:515.154286pt;}
.y21d{bottom:515.832547pt;}
.y14{bottom:516.207689pt;}
.y9b{bottom:516.740867pt;}
.y1b2{bottom:516.888988pt;}
.y5a{bottom:516.892830pt;}
.y17b{bottom:520.441527pt;}
.y2d9{bottom:521.644693pt;}
.y330{bottom:521.655167pt;}
.y19{bottom:523.691619pt;}
.y13{bottom:527.622250pt;}
.y147{bottom:528.757247pt;}
.y1e3{bottom:528.910238pt;}
.ye3{bottom:528.984032pt;}
.y296{bottom:529.062642pt;}
.y21c{bottom:529.740903pt;}
.y9a{bottom:530.650286pt;}
.y1b1{bottom:530.797344pt;}
.y59{bottom:530.801186pt;}
.y2d8{bottom:532.226987pt;}
.y32f{bottom:532.237460pt;}
.y17a{bottom:534.425333pt;}
.y179{bottom:534.426149pt;}
.y18{bottom:536.390699pt;}
.y12{bottom:539.111622pt;}
.y15b{bottom:540.018667pt;}
.y146{bottom:542.665603pt;}
.y1e2{bottom:542.819657pt;}
.y2d7{bottom:542.884941pt;}
.y32e{bottom:542.895415pt;}
.ye2{bottom:542.967838pt;}
.y295{bottom:543.046448pt;}
.y21b{bottom:543.724709pt;}
.y1b0{bottom:544.780087pt;}
.y58{bottom:544.784992pt;}
.y178{bottom:548.334505pt;}
.y17{bottom:549.165333pt;}
.y11{bottom:550.525333pt;}
.y2d6{bottom:553.543746pt;}
.y32d{bottom:553.554219pt;}
.y145{bottom:556.649409pt;}
.y1e1{bottom:556.803463pt;}
.ye1{bottom:556.876194pt;}
.y294{bottom:557.030254pt;}
.y21a{bottom:557.633065pt;}
.y99{bottom:558.542448pt;}
.y1af{bottom:558.689506pt;}
.y57{bottom:558.693348pt;}
.yd8{bottom:561.705067pt;}
.y177{bottom:562.318311pt;}
.y2d5{bottom:564.126039pt;}
.y32c{bottom:564.136513pt;}
.yc3{bottom:564.238267pt;}
.y144{bottom:570.557765pt;}
.y1e0{bottom:570.711819pt;}
.ye0{bottom:570.860000pt;}
.y293{bottom:570.939673pt;}
.y219{bottom:571.616871pt;}
.y1ae{bottom:572.673312pt;}
.y56{bottom:572.678217pt;}
.y2d4{bottom:574.783994pt;}
.y32b{bottom:574.794468pt;}
.y10{bottom:575.244000pt;}
.y176{bottom:576.226667pt;}
.y175{bottom:576.226861pt;}
.y143{bottom:581.971636pt;}
.y1df{bottom:584.695625pt;}
.y292{bottom:584.923479pt;}
.y2d3{bottom:585.366288pt;}
.y32a{bottom:585.377612pt;}
.y218{bottom:585.526289pt;}
.y142{bottom:585.602474pt;}
.y1ad{bottom:586.581668pt;}
.y55{bottom:586.586573pt;}
.y174{bottom:590.210667pt;}
.y173{bottom:590.212141pt;}
.y2d2{bottom:596.025092pt;}
.y329{bottom:596.035566pt;}
.y1de{bottom:598.603981pt;}
.y291{bottom:598.831835pt;}
.y217{bottom:599.510096pt;}
.y1ac{bottom:600.565474pt;}
.y141{bottom:600.569259pt;}
.y54{bottom:600.570379pt;}
.y110{bottom:600.718699pt;}
.y172{bottom:604.197009pt;}
.y2d1{bottom:606.607386pt;}
.y328{bottom:606.617860pt;}
.y1dd{bottom:612.588850pt;}
.y290{bottom:612.815641pt;}
.y216{bottom:613.418451pt;}
.y10f{bottom:613.493333pt;}
.y1ab{bottom:614.474892pt;}
.y140{bottom:614.477615pt;}
.y53{bottom:614.478735pt;}
.y2d0{bottom:617.265340pt;}
.y327{bottom:617.275814pt;}
.y171{bottom:618.105365pt;}
.yf{bottom:620.750281pt;}
.yc2{bottom:620.874400pt;}
.y1dc{bottom:626.572656pt;}
.y28f{bottom:626.725059pt;}
.y215{bottom:627.402258pt;}
.y2cf{bottom:627.923295pt;}
.y326{bottom:627.934619pt;}
.y1aa{bottom:628.458698pt;}
.y13f{bottom:628.461421pt;}
.y52{bottom:628.463604pt;}
.y170{bottom:632.089171pt;}
.ye{bottom:634.204916pt;}
.y2ce{bottom:638.506439pt;}
.y325{bottom:638.516912pt;}
.y1db{bottom:640.481012pt;}
.y28e{bottom:640.708865pt;}
.y214{bottom:641.311676pt;}
.y1a9{bottom:642.442505pt;}
.y13e{bottom:642.446289pt;}
.y51{bottom:642.447410pt;}
.y16f{bottom:645.997527pt;}
.yd{bottom:647.584952pt;}
.y2cd{bottom:649.164393pt;}
.y324{bottom:649.174867pt;}
.y1da{bottom:654.465880pt;}
.y28d{bottom:654.617221pt;}
.y213{bottom:655.295482pt;}
.y1a8{bottom:656.350860pt;}
.y13d{bottom:656.354645pt;}
.y50{bottom:656.355766pt;}
.y2cc{bottom:659.746687pt;}
.y323{bottom:659.757161pt;}
.y16e{bottom:659.981333pt;}
.y16d{bottom:659.982149pt;}
.yc{bottom:661.039587pt;}
.y1d9{bottom:668.374236pt;}
.y28c{bottom:668.601027pt;}
.y212{bottom:669.203838pt;}
.y1a7{bottom:670.335729pt;}
.y13c{bottom:670.338451pt;}
.y4f{bottom:670.339572pt;}
.y2cb{bottom:670.405492pt;}
.y322{bottom:670.415965pt;}
.yc1{bottom:671.846973pt;}
.y16c{bottom:673.890505pt;}
.yb{bottom:674.418667pt;}
.y2ca{bottom:681.063446pt;}
.y321{bottom:681.073920pt;}
.y1d8{bottom:682.358042pt;}
.yc0{bottom:682.466800pt;}
.y28b{bottom:682.510446pt;}
.y211{bottom:683.187644pt;}
.y1a6{bottom:684.244085pt;}
.y13b{bottom:684.246807pt;}
.y4e{bottom:684.248990pt;}
.y16b{bottom:687.874311pt;}
.y2c9{bottom:691.645740pt;}
.y320{bottom:691.656213pt;}
.y1d7{bottom:696.266398pt;}
.y28a{bottom:696.494252pt;}
.y210{bottom:697.096000pt;}
.y13a{bottom:698.231676pt;}
.y4d{bottom:698.232796pt;}
.ya{bottom:700.573333pt;}
.y16a{bottom:701.782667pt;}
.y169{bottom:701.785336pt;}
.y2c8{bottom:702.303694pt;}
.y31f{bottom:702.315018pt;}
.y1d6{bottom:710.250204pt;}
.y289{bottom:710.402608pt;}
.y1a5{bottom:712.136247pt;}
.y139{bottom:712.140032pt;}
.y4c{bottom:712.141152pt;}
.y2c7{bottom:712.886838pt;}
.y31e{bottom:712.897312pt;}
.y168{bottom:715.769142pt;}
.y2c6{bottom:723.544792pt;}
.y31d{bottom:723.555266pt;}
.y1d5{bottom:724.159623pt;}
.y288{bottom:724.386414pt;}
.y1a4{bottom:726.121116pt;}
.y138{bottom:726.123838pt;}
.y4b{bottom:726.124958pt;}
.y167{bottom:729.677498pt;}
.y25f{bottom:733.155523pt;}
.y2c5{bottom:734.127086pt;}
.y31c{bottom:734.137560pt;}
.y1d4{bottom:738.143429pt;}
.y287{bottom:738.294770pt;}
.y1a3{bottom:740.029472pt;}
.y137{bottom:740.032194pt;}
.y4a{bottom:740.033314pt;}
.y9{bottom:743.962667pt;}
.y25e{bottom:744.569234pt;}
.y2c4{bottom:744.785041pt;}
.y31b{bottom:744.796365pt;}
.y204{bottom:752.051785pt;}
.y286{bottom:752.279638pt;}
.y135{bottom:754.012901pt;}
.y1a2{bottom:754.013278pt;}
.y136{bottom:754.016000pt;}
.y49{bottom:754.018183pt;}
.y2c3{bottom:755.443845pt;}
.y31a{bottom:755.454319pt;}
.y25d{bottom:755.983795pt;}
.y166{bottom:757.570722pt;}
.y7{bottom:765.884000pt;}
.y2c2{bottom:766.026139pt;}
.y1d3{bottom:766.035591pt;}
.y319{bottom:766.036613pt;}
.y285{bottom:766.187994pt;}
.y1a1{bottom:767.921634pt;}
.y134{bottom:767.922319pt;}
.y48{bottom:767.926539pt;}
.y8{bottom:772.157333pt;}
.y25c{bottom:773.520070pt;}
.y2c1{bottom:776.684093pt;}
.y318{bottom:776.694567pt;}
.y1d2{bottom:779.945009pt;}
.y284{bottom:780.171800pt;}
.y133{bottom:781.906125pt;}
.y1a0{bottom:781.906502pt;}
.y47{bottom:781.910345pt;}
.y2c0{bottom:787.267237pt;}
.y317{bottom:787.277711pt;}
.y25b{bottom:791.057196pt;}
.y1d1{bottom:793.928816pt;}
.y283{bottom:794.080156pt;}
.y132{bottom:795.814481pt;}
.y19f{bottom:795.814858pt;}
.y46{bottom:795.818701pt;}
.y2bf{bottom:797.925192pt;}
.y316{bottom:797.935665pt;}
.y6{bottom:799.219748pt;}
.y25a{bottom:802.470907pt;}
.y1d0{bottom:807.837171pt;}
.y282{bottom:808.065025pt;}
.y2be{bottom:808.583146pt;}
.y315{bottom:808.593620pt;}
.y131{bottom:809.798287pt;}
.y19e{bottom:809.798664pt;}
.y45{bottom:809.803570pt;}
.y259{bottom:813.885468pt;}
.y2bd{bottom:819.165440pt;}
.y314{bottom:819.175914pt;}
.y203{bottom:821.820977pt;}
.y281{bottom:821.973381pt;}
.y5{bottom:822.198667pt;}
.y130{bottom:823.706643pt;}
.y19d{bottom:823.707020pt;}
.y44{bottom:823.711925pt;}
.y258{bottom:825.374840pt;}
.y2bc{bottom:829.824245pt;}
.y313{bottom:829.834718pt;}
.y1cf{bottom:835.729333pt;}
.y280{bottom:835.957187pt;}
.y257{bottom:836.789401pt;}
.y19c{bottom:837.690826pt;}
.y12f{bottom:837.691512pt;}
.y43{bottom:837.695732pt;}
.y2bb{bottom:840.406538pt;}
.y312{bottom:840.417012pt;}
.y2ba{bottom:851.064493pt;}
.y311{bottom:851.074966pt;}
.y12e{bottom:851.599868pt;}
.y19b{bottom:851.600245pt;}
.y42{bottom:851.604087pt;}
.y256{bottom:854.325677pt;}
.y2b9{bottom:861.646786pt;}
.y310{bottom:861.658110pt;}
.y27f{bottom:863.850412pt;}
.y12d{bottom:865.583674pt;}
.y19a{bottom:865.584051pt;}
.y41{bottom:865.588956pt;}
.y20e{bottom:871.787141pt;}
.y255{bottom:871.862802pt;}
.y2b8{bottom:872.305591pt;}
.y30f{bottom:872.316065pt;}
.y12c{bottom:879.492030pt;}
.y199{bottom:879.492407pt;}
.y40{bottom:879.497312pt;}
.y2b7{bottom:882.963545pt;}
.y30e{bottom:882.974019pt;}
.y20d{bottom:883.200853pt;}
.y254{bottom:883.276513pt;}
.y34{bottom:892.194667pt;}
.y198{bottom:893.476213pt;}
.y12b{bottom:893.476898pt;}
.y3f{bottom:893.481118pt;}
.y2b6{bottom:893.545839pt;}
.y30d{bottom:893.556313pt;}
.y20c{bottom:894.615414pt;}
.y253{bottom:894.691074pt;}
.y2b5{bottom:904.203794pt;}
.y30c{bottom:904.215118pt;}
.y20b{bottom:906.029125pt;}
.y252{bottom:906.104786pt;}
.y12a{bottom:907.385254pt;}
.y197{bottom:907.385631pt;}
.y3e{bottom:907.389474pt;}
.y2b4{bottom:914.786938pt;}
.y30b{bottom:914.797411pt;}
.y20a{bottom:917.443686pt;}
.y251{bottom:917.518497pt;}
.y129{bottom:921.369060pt;}
.y196{bottom:921.369438pt;}
.y3d{bottom:921.374343pt;}
.y2b3{bottom:925.444892pt;}
.y30a{bottom:925.455366pt;}
.y250{bottom:928.933058pt;}
.y33{bottom:929.310667pt;}
.y209{bottom:934.979962pt;}
.y128{bottom:935.277416pt;}
.y195{bottom:935.277793pt;}
.y3c{bottom:935.282699pt;}
.y2b2{bottom:936.102846pt;}
.y309{bottom:936.113320pt;}
.y208{bottom:946.469333pt;}
.y2b1{bottom:946.685990pt;}
.y308{bottom:946.696464pt;}
.y194{bottom:949.261600pt;}
.y127{bottom:949.262285pt;}
.y3b{bottom:949.266505pt;}
.y2b0{bottom:957.343945pt;}
.y307{bottom:957.354418pt;}
.y193{bottom:963.169955pt;}
.y126{bottom:963.170641pt;}
.y3a{bottom:963.174861pt;}
.y207{bottom:964.006699pt;}
.y32{bottom:966.500000pt;}
.y2af{bottom:967.926239pt;}
.y306{bottom:967.936712pt;}
.y206{bottom:976.781333pt;}
.y125{bottom:977.154447pt;}
.y192{bottom:977.154824pt;}
.y39{bottom:977.158667pt;}
.y2ae{bottom:978.584193pt;}
.y305{bottom:978.594667pt;}
.y2{bottom:1002.226667pt;}
.y37{bottom:1003.226667pt;}
.y304{bottom:1003.228322pt;}
.y1ce{bottom:1003.231436pt;}
.y165{bottom:1003.232052pt;}
.y33b{bottom:1003.236245pt;}
.y20f{bottom:1003.236946pt;}
.y81{bottom:1003.237333pt;}
.h11{height:22.679120pt;}
.hf{height:24.740893pt;}
.h10{height:24.757486pt;}
.h7{height:29.887031pt;}
.hc{height:29.887500pt;}
.hb{height:30.690198pt;}
.h13{height:30.746283pt;}
.h8{height:32.689219pt;}
.h12{height:32.987987pt;}
.h3{height:33.623437pt;}
.h6{height:34.630781pt;}
.h9{height:37.359844pt;}
.hd{height:40.551869pt;}
.h14{height:41.559397pt;}
.h5{height:49.501875pt;}
.h15{height:51.873299pt;}
.h4{height:63.044531pt;}
.ha{height:65.378906pt;}
.he{height:708.585333pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w3{width:455.206667pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:21.946840pt;}
.x2{left:50.023981pt;}
.x8{left:56.844000pt;}
.x15{left:58.052133pt;}
.x6{left:66.065235pt;}
.x28{left:78.236133pt;}
.x29{left:83.527467pt;}
.x2f{left:84.736122pt;}
.x23{left:92.447200pt;}
.x1a{left:110.440133pt;}
.x2c{left:112.781067pt;}
.x22{left:117.694400pt;}
.x3{left:143.394667pt;}
.x4{left:148.686667pt;}
.x13{left:150.086000pt;}
.x2e{left:151.637494pt;}
.x30{left:166.146164pt;}
.x11{left:169.246667pt;}
.x1b{left:181.239307pt;}
.x18{left:184.775333pt;}
.x27{left:189.808000pt;}
.x33{left:197.137986pt;}
.x14{left:213.802133pt;}
.x12{left:215.925733pt;}
.x32{left:224.504000pt;}
.x16{left:242.119733pt;}
.xa{left:253.833333pt;}
.x5{left:269.329333pt;}
.x1{left:287.757314pt;}
.x2a{left:292.913333pt;}
.x2b{left:298.205333pt;}
.x9{left:304.554667pt;}
.x1d{left:306.293333pt;}
.x10{left:312.035273pt;}
.x19{left:334.153600pt;}
.xd{left:338.642655pt;}
.x17{left:341.721333pt;}
.x25{left:376.668000pt;}
.x26{left:381.958667pt;}
.x31{left:392.557314pt;}
.xc{left:394.943981pt;}
.x2d{left:403.880000pt;}
.x7{left:408.790162pt;}
.x34{left:421.563716pt;}
.xe{left:424.738863pt;}
.x37{left:441.519432pt;}
.x35{left:512.876805pt;}
.x36{left:536.082531pt;}
.x24{left:552.107934pt;}
.xb{left:557.170648pt;}
.x1f{left:576.982667pt;}
.x20{left:587.262667pt;}
.x21{left:670.638601pt;}
.x1e{left:723.016620pt;}
.xf{left:737.756570pt;}
}




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