
    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_3c3267bad64dc3916bb0d656.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_b150b2f10ff84ce02418a92d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_117a12c236db3a8310b2e359.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_56cd19bed8f1c006b685251f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_125274016727d9798cc71636.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dbedf5268344335586e648f3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_b934dd487bde509871fe4907.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_fc63036006bf9469f7e077e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.799805;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_ee14d097f07ccf2288feda45.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.688965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.559993px;}
.v4{vertical-align:22.319991px;}
.v2{vertical-align:38.159985px;}
.v3{vertical-align:48.959980px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.015820px;}
.ls6{letter-spacing:0.057600px;}
.ls14{letter-spacing:0.205920px;}
.ls5{letter-spacing:0.207422px;}
.ls15{letter-spacing:0.208800px;}
.lsb{letter-spacing:0.217968px;}
.ls4{letter-spacing:0.218672px;}
.lsc{letter-spacing:1.378079px;}
.ls10{letter-spacing:19.439992px;}
.ls7{letter-spacing:31.967987px;}
.lsd{letter-spacing:38.015985px;}
.ls1{letter-spacing:43.379983px;}
.ls2{letter-spacing:47.159981px;}
.ls3{letter-spacing:50.939980px;}
.ls8{letter-spacing:51.193420px;}
.ls11{letter-spacing:54.467978px;}
.ls9{letter-spacing:58.247977px;}
.ls12{letter-spacing:60.011976px;}
.lsa{letter-spacing:61.775975px;}
.ls13{letter-spacing:65.555974px;}
.lse{letter-spacing:92.375963px;}
.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:-33.357587px;}
.ws4{word-spacing:-30.916788px;}
.ws2e{word-spacing:-30.695890px;}
.ws2f{word-spacing:-28.491809px;}
.ws8{word-spacing:-28.475989px;}
.ws30{word-spacing:-26.197910px;}
.ws3{word-spacing:-23.757110px;}
.wsd{word-spacing:-23.418711px;}
.ws31{word-spacing:-22.618071px;}
.ws0{word-spacing:-21.479031px;}
.wsb{word-spacing:-20.416312px;}
.wse{word-spacing:-20.177272px;}
.ws9{word-spacing:-19.038232px;}
.ws13{word-spacing:-16.815402px;}
.ws11{word-spacing:-16.597433px;}
.ws34{word-spacing:-15.458394px;}
.wsf{word-spacing:-13.017595px;}
.wsa{word-spacing:-12.529435px;}
.ws6{word-spacing:-11.878555px;}
.ws33{word-spacing:-11.064956px;}
.ws5{word-spacing:-10.739516px;}
.ws27{word-spacing:-1.568043px;}
.ws10{word-spacing:-1.368900px;}
.wsc{word-spacing:-0.488882px;}
.ws23{word-spacing:-0.330454px;}
.ws2d{word-spacing:-0.206761px;}
.ws2c{word-spacing:-0.163173px;}
.ws1{word-spacing:0.000000px;}
.ws32{word-spacing:3.070378px;}
.ws1c{word-spacing:3.353846px;}
.ws28{word-spacing:4.542135px;}
.ws1a{word-spacing:4.956258px;}
.ws26{word-spacing:7.836254px;}
.ws2a{word-spacing:9.276252px;}
.ws35{word-spacing:13.967617px;}
.ws19{word-spacing:15.696517px;}
.ws29{word-spacing:15.756243px;}
.ws22{word-spacing:15.796402px;}
.ws24{word-spacing:16.062119px;}
.ws15{word-spacing:17.024563px;}
.ws25{word-spacing:17.033827px;}
.ws21{word-spacing:17.956470px;}
.ws1d{word-spacing:18.556801px;}
.ws20{word-spacing:18.601871px;}
.ws16{word-spacing:21.024844px;}
.ws1f{word-spacing:22.236234px;}
.ws18{word-spacing:25.302906px;}
.ws1e{word-spacing:30.111913px;}
.ws1b{word-spacing:46.656474px;}
.ws2b{word-spacing:48.076760px;}
.ws17{word-spacing:54.464554px;}
.ws14{word-spacing:92.340481px;}
.ws12{word-spacing:298.173368px;}
.ws7{word-spacing:1405.735396px;}
._1{margin-left:-17.156234px;}
._3b{margin-left:-15.539592px;}
._35{margin-left:-13.492691px;}
._25{margin-left:-11.228196px;}
._6{margin-left:-9.434154px;}
._4{margin-left:-7.958163px;}
._e{margin-left:-6.356053px;}
._8{margin-left:-5.261118px;}
._5{margin-left:-3.925270px;}
._0{margin-left:-2.078095px;}
._3{margin-left:-1.072969px;}
._2{width:1.140127px;}
._7{width:2.187087px;}
._29{width:3.223146px;}
._14{width:9.537896px;}
._f{width:10.757781px;}
._2a{width:12.176038px;}
._3f{width:14.027143px;}
._34{width:16.625022px;}
._b{width:18.335991px;}
._9{width:20.508776px;}
._c{width:22.158970px;}
._2c{width:23.392390px;}
._31{width:24.856091px;}
._33{width:27.266127px;}
._3a{width:30.616409px;}
._30{width:33.992207px;}
._32{width:36.341687px;}
._2f{width:38.548729px;}
._2e{width:40.444890px;}
._36{width:42.065231px;}
._2b{width:45.468103px;}
._2d{width:47.940886px;}
._15{width:70.737847px;}
._24{width:80.986746px;}
._16{width:84.078891px;}
._17{width:108.177838px;}
._37{width:128.086827px;}
._11{width:141.489588px;}
._10{width:174.850587px;}
._13{width:181.033441px;}
._3e{width:188.293959px;}
._22{width:292.551059px;}
._18{width:312.102251px;}
._d{width:326.063708px;}
._12{width:351.577703px;}
._38{width:405.527580px;}
._26{width:415.670967px;}
._1e{width:419.487214px;}
._39{width:424.317937px;}
._20{width:433.651670px;}
._1d{width:559.553888px;}
._3c{width:647.090095px;}
._27{width:688.433692px;}
._1b{width:814.788734px;}
._1a{width:866.456293px;}
._28{width:914.125979px;}
._21{width:920.528108px;}
._1f{width:958.093537px;}
._19{width:998.411361px;}
._1c{width:1073.753324px;}
._23{width:1125.285448px;}
._3d{width:1458.181862px;}
._a{width:2212.594203px;}
.fcd{color:rgb(255,51,204);}
.fc0{color:rgb(56,87,35);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc5{color:rgb(64,64,64);}
.fcc{color:rgb(127,127,127);}
.fc2{color:rgb(192,0,0);}
.fc9{color:rgb(237,124,49);}
.fc3{color:transparent;}
.fc6{color:rgb(143,170,220);}
.fc7{color:rgb(255,0,0);}
.fc8{color:rgb(84,130,53);}
.fca{color:rgb(153,0,0);}
.fcb{color:rgb(5,99,193);}
.fs8{font-size:47.519981px;}
.fs13{font-size:48.959980px;}
.fs7{font-size:52.559979px;}
.fsb{font-size:55.439978px;}
.fse{font-size:57.599977px;}
.fsf{font-size:63.359975px;}
.fs14{font-size:68.399973px;}
.fsc{font-size:73.439971px;}
.fs11{font-size:79.199968px;}
.fsa{font-size:84.239966px;}
.fsd{font-size:89.279964px;}
.fs1{font-size:95.039962px;}
.fs12{font-size:100.079960px;}
.fs10{font-size:100.444735px;}
.fs4{font-size:105.119958px;}
.fs6{font-size:115.919954px;}
.fs9{font-size:125.999950px;}
.fs5{font-size:136.799945px;}
.fs3{font-size:147.599941px;}
.fs0{font-size:189.359924px;}
.fs2{font-size:210.239916px;}
.y1b8{bottom:-34.019808px;}
.y21{bottom:-22.499813px;}
.y1d4{bottom:-20.879813px;}
.y6f{bottom:-19.799814px;}
.y196{bottom:-17.459815px;}
.y1e6{bottom:-16.379815px;}
.y1a4{bottom:-16.019815px;}
.y77{bottom:-14.399816px;}
.y240{bottom:-13.499816px;}
.y17e{bottom:-12.419817px;}
.ya8{bottom:-11.519817px;}
.y164{bottom:-10.079817px;}
.yed{bottom:-9.899818px;}
.y209{bottom:-9.359818px;}
.ya9{bottom:-8.819818px;}
.yd8{bottom:-8.459818px;}
.y5c{bottom:-5.939819px;}
.yf6{bottom:-5.219819px;}
.y12a{bottom:-4.859820px;}
.y22c{bottom:-4.679820px;}
.y112{bottom:-2.519821px;}
.y170{bottom:-1.979821px;}
.y225{bottom:-1.439821px;}
.ye{bottom:-1.259821px;}
.y40{bottom:-1.079821px;}
.y0{bottom:0.000000px;}
.y14e{bottom:1.080178px;}
.y3f{bottom:3.240170px;}
.y37{bottom:3.240177px;}
.y45{bottom:3.240179px;}
.y50{bottom:3.240287px;}
.y208{bottom:3.780319px;}
.yae{bottom:3.960182px;}
.yb0{bottom:4.140182px;}
.yab{bottom:4.680183px;}
.y150{bottom:4.860178px;}
.y114{bottom:4.860179px;}
.y166{bottom:4.860183px;}
.y1dc{bottom:5.580099px;}
.y1e2{bottom:5.580142px;}
.y227{bottom:5.580179px;}
.yff{bottom:5.580181px;}
.yda{bottom:5.580182px;}
.y1a6{bottom:5.580185px;}
.y71{bottom:5.580186px;}
.y1b7{bottom:5.760176px;}
.y172{bottom:6.300179px;}
.y1c9{bottom:6.300182px;}
.y5e{bottom:6.660181px;}
.y19c{bottom:7.020045px;}
.y232{bottom:7.740180px;}
.y25{bottom:7.740187px;}
.y1ba{bottom:7.920176px;}
.y79{bottom:7.920184px;}
.y80{bottom:7.920186px;}
.y23{bottom:7.920187px;}
.y60{bottom:8.460181px;}
.y20d{bottom:8.460182px;}
.y20b{bottom:8.640182px;}
.y1bc{bottom:9.900176px;}
.y10{bottom:9.900179px;}
.y7b{bottom:9.900184px;}
.y82{bottom:9.900186px;}
.y1be{bottom:9.900192px;}
.y8{bottom:14.040051px;}
.y207{bottom:91.140000px;}
.y206{bottom:118.500310px;}
.y49{bottom:137.580302px;}
.y189{bottom:150.000297px;}
.y51{bottom:151.800296px;}
.y10c{bottom:152.160296px;}
.y205{bottom:165.840291px;}
.y10b{bottom:169.440289px;}
.y140{bottom:170.160289px;}
.y4f{bottom:170.880000px;}
.y1d2{bottom:172.680288px;}
.y188{bottom:173.760287px;}
.yde{bottom:176.100287px;}
.y16{bottom:180.240285px;}
.y1fb{bottom:186.720282px;}
.y10a{bottom:186.900282px;}
.yb9{bottom:188.880281px;}
.y204{bottom:189.420281px;}
.ydd{bottom:191.760280px;}
.y109{bottom:191.940280px;}
.y13f{bottom:192.300280px;}
.y1d1{bottom:192.480280px;}
.y4e{bottom:196.260278px;}
.y187{bottom:197.340278px;}
.y48{bottom:198.420278px;}
.y55{bottom:198.600278px;}
.y88{bottom:201.300276px;}
.yc1{bottom:201.480276px;}
.y76{bottom:204.180275px;}
.y24a{bottom:206.160275px;}
.ydc{bottom:207.600274px;}
.yb8{bottom:210.840273px;}
.y1d0{bottom:212.460272px;}
.y203{bottom:213.000272px;}
.y1fa{bottom:213.900271px;}
.y13e{bottom:214.440271px;}
.y108{bottom:214.980271px;}
.y4a{bottom:215.160271px;}
.y214{bottom:218.220270px;}
.y4d{bottom:218.400270px;}
.y15{bottom:220.020269px;}
.y75{bottom:220.740269px;}
.y186{bottom:220.920269px;}
.ydb{bottom:223.440268px;}
.yb5{bottom:224.160267px;}
.y47{bottom:226.500266px;}
.y54{bottom:226.860266px;}
.y2c{bottom:228.300266px;}
.y1ab{bottom:231.000265px;}
.y1cf{bottom:232.260264px;}
.yb7{bottom:232.980264px;}
.y159{bottom:234.600263px;}
.yc0{bottom:235.500263px;}
.y87{bottom:236.580262px;}
.y107{bottom:238.200262px;}
.y249{bottom:238.380262px;}
.y1f9{bottom:240.900261px;}
.y185{bottom:244.680259px;}
.y66{bottom:245.400259px;}
.y213{bottom:248.460258px;}
.ye6{bottom:249.540257px;}
.yb4{bottom:250.620257px;}
.yc8{bottom:252.240256px;}
.yb6{bottom:255.120255px;}
.y53{bottom:255.300255px;}
.y2b{bottom:257.100254px;}
.y158{bottom:258.180254px;}
.y13d{bottom:258.540254px;}
.y1aa{bottom:259.260253px;}
.y14{bottom:259.620253px;}
.y202{bottom:260.340253px;}
.y236{bottom:263.400252px;}
.yc7{bottom:264.660251px;}
.y1f8{bottom:267.900250px;}
.y184{bottom:268.260250px;}
.y106{bottom:270.240249px;}
.y248{bottom:270.600249px;}
.y86{bottom:272.040248px;}
.y21b{bottom:273.300248px;}
.ybf{bottom:274.740247px;}
.yb3{bottom:277.260246px;}
.y212{bottom:278.880245px;}
.y157{bottom:281.940244px;}
.y65{bottom:282.300244px;}
.y52{bottom:283.740244px;}
.y201{bottom:283.920243px;}
.y1ce{bottom:285.180243px;}
.y2a{bottom:285.720243px;}
.y247{bottom:286.980242px;}
.y1a9{bottom:287.700242px;}
.y183{bottom:291.840240px;}
.y18f{bottom:292.020240px;}
.y1c0{bottom:293.100240px;}
.y105{bottom:293.280240px;}
.y1f7{bottom:294.900239px;}
.yfd{bottom:297.780238px;}
.y7c{bottom:299.400237px;}
.y118{bottom:300.660237px;}
.y13c{bottom:302.820236px;}
.y4c{bottom:304.080235px;}
.y1cd{bottom:305.160235px;}
.y156{bottom:305.520235px;}
.y21a{bottom:307.320234px;}
.y200{bottom:307.500234px;}
.y211{bottom:309.120233px;}
.ybe{bottom:309.840233px;}
.y13{bottom:312.540232px;}
.y64{bottom:312.720232px;}
.y182{bottom:315.420231px;}
.y18e{bottom:315.600231px;}
.y1a8{bottom:316.140231px;}
.y104{bottom:316.500230px;}
.ye5{bottom:317.760230px;}
.y16a{bottom:317.940230px;}
.y246{bottom:319.200229px;}
.y6{bottom:320.100229px;}
.y85{bottom:320.460229px;}
.yfc{bottom:320.820229px;}
.y1f6{bottom:321.900228px;}
.y117{bottom:322.620228px;}
.y13b{bottom:324.960227px;}
.y29{bottom:326.580226px;}
.y155{bottom:329.100225px;}
.y1bf{bottom:332.880224px;}
.y4b{bottom:333.060224px;}
.y97{bottom:333.240224px;}
.y245{bottom:335.580223px;}
.y181{bottom:339.180221px;}
.y210{bottom:339.360221px;}
.y103{bottom:339.540221px;}
.y235{bottom:340.260221px;}
.y169{bottom:341.520220px;}
.y63{bottom:342.960220px;}
.yfb{bottom:343.860219px;}
.ybd{bottom:344.760219px;}
.y74{bottom:345.300219px;}
.y1b1{bottom:346.200219px;}
.y138{bottom:346.920218px;}
.y219{bottom:348.000218px;}
.y5{bottom:348.540218px;}
.y1f5{bottom:348.900217px;}
.y28{bottom:350.880217px;}
.ye4{bottom:351.780216px;}
.y12{bottom:352.320216px;}
.y154{bottom:352.860216px;}
.y1ff{bottom:354.840215px;}
.y84{bottom:355.740215px;}
.y96{bottom:355.920215px;}
.y234{bottom:361.320212px;}
.y102{bottom:362.580212px;}
.y18d{bottom:362.940212px;}
.yfa{bottom:367.080210px;}
.y244{bottom:367.800210px;}
.y73{bottom:367.980210px;}
.y13a{bottom:369.060209px;}
.y137{bottom:370.500209px;}
.y142{bottom:372.660208px;}
.y62{bottom:373.200208px;}
.y116{bottom:374.100207px;}
.y27{bottom:375.180207px;}
.y1f4{bottom:375.900207px;}
.y20f{bottom:376.260206px;}
.y153{bottom:376.440206px;}
.y4{bottom:376.980206px;}
.y1cc{bottom:377.880206px;}
.y1fe{bottom:378.420206px;}
.y95{bottom:378.600206px;}
.y1b0{bottom:380.220205px;}
.ybc{bottom:381.120205px;}
.y218{bottom:382.020204px;}
.y243{bottom:384.180203px;}
.y101{bottom:385.800203px;}
.y180{bottom:386.520202px;}
.y41{bottom:387.060202px;}
.y168{bottom:388.860201px;}
.yf9{bottom:390.120201px;}
.ye3{bottom:390.480201px;}
.y83{bottom:391.200201px;}
.y11{bottom:392.100200px;}
.yb2{bottom:393.180200px;}
.y136{bottom:394.260199px;}
.y141{bottom:394.620199px;}
.y1cb{bottom:397.680198px;}
.yca{bottom:398.400198px;}
.y26{bottom:399.480197px;}
.y152{bottom:400.020197px;}
.y94{bottom:401.280196px;}
.y1fd{bottom:402.180196px;}
.y1bd{bottom:402.360000px;}
.y1f3{bottom:402.900196px;}
.y72{bottom:403.800195px;}
.y1a7{bottom:404.880195px;}
.y43{bottom:405.240195px;}
.y3{bottom:405.420195px;}
.y20e{bottom:406.500194px;}
.yac{bottom:409.560193px;}
.y61{bottom:410.100193px;}
.y167{bottom:412.440192px;}
.y139{bottom:413.160192px;}
.yf8{bottom:413.340192px;}
.y1af{bottom:414.420191px;}
.yb1{bottom:415.320191px;}
.y1d5{bottom:415.500000px;}
.y22{bottom:415.860000px;}
.y24{bottom:416.040000px;}
.y217{bottom:416.220191px;}
.y242{bottom:416.400190px;}
.y81{bottom:416.580000px;}
.y233{bottom:417.300190px;}
.y1ca{bottom:417.660190px;}
.y100{bottom:417.840190px;}
.y7f{bottom:418.560000px;}
.y115{bottom:419.280189px;}
.ybb{bottom:420.360189px;}
.y70{bottom:420.900000px;}
.y7a{bottom:421.980000px;}
.ye2{bottom:422.520188px;}
.yc9{bottom:422.880188px;}
.y46{bottom:423.060188px;}
.y19a{bottom:423.240000px;}
.y151{bottom:423.780187px;}
.y78{bottom:423.960000px;}
.y93{bottom:424.140187px;}
.y1f2{bottom:424.320000px;}
.y1a5{bottom:424.680000px;}
.y1fc{bottom:425.760187px;}
.y42{bottom:427.380186px;}
.y241{bottom:428.100000px;}
.y20a{bottom:428.280000px;}
.y20c{bottom:428.460000px;}
.y17f{bottom:429.000000px;}
.yaa{bottom:430.080000px;}
.yf7{bottom:430.800000px;}
.y1c8{bottom:431.160000px;}
.y165{bottom:431.340000px;}
.y5f{bottom:431.880000px;}
.yd9{bottom:432.240000px;}
.yaf{bottom:433.320000px;}
.yad{bottom:433.500000px;}
.y5d{bottom:433.680000px;}
.y231{bottom:433.860000px;}
.yf{bottom:435.120000px;}
.yfe{bottom:435.480000px;}
.y135{bottom:436.560000px;}
.y171{bottom:438.000000px;}
.y113{bottom:438.900000px;}
.y226{bottom:439.260000px;}
.y44{bottom:441.960000px;}
.y1bb{bottom:442.140000px;}
.y14f{bottom:442.500000px;}
.y1b9{bottom:444.120000px;}
.yd{bottom:446.280000px;}
.y36{bottom:446.460000px;}
.y1ac{bottom:455.100175px;}
.yba{bottom:455.460175px;}
.y1a3{bottom:455.640175px;}
.y20{bottom:455.820175px;}
.yc6{bottom:456.900174px;}
.y134{bottom:457.440174px;}
.y216{bottom:458.160174px;}
.yec{bottom:459.420173px;}
.yd7{bottom:460.680173px;}
.y11e{bottom:462.120172px;}
.y32{bottom:462.300172px;}
.yf5{bottom:464.100171px;}
.y3e{bottom:464.280000px;}
.y23f{bottom:465.000171px;}
.y129{bottom:465.180171px;}
.y22b{bottom:465.900171px;}
.y111{bottom:468.420170px;}
.y14d{bottom:470.940169px;}
.y35{bottom:471.840168px;}
.y16f{bottom:472.740168px;}
.y1f1{bottom:473.100168px;}
.y7e{bottom:475.080167px;}
.y39{bottom:476.880166px;}
.y5b{bottom:477.240166px;}
.y133{bottom:479.580165px;}
.y1a2{bottom:480.840165px;}
.y17d{bottom:481.020165px;}
.y23e{bottom:481.380164px;}
.yc5{bottom:481.560164px;}
.yeb{bottom:482.640164px;}
.y195{bottom:482.820164px;}
.yd6{bottom:483.360164px;}
.y1e4{bottom:483.900163px;}
.yc{bottom:484.800163px;}
.y31{bottom:485.340163px;}
.yf4{bottom:487.140162px;}
.y128{bottom:488.760161px;}
.y33{bottom:489.120161px;}
.y3d{bottom:489.660161px;}
.ye1{bottom:490.380161px;}
.y110{bottom:490.560161px;}
.y9d{bottom:493.080160px;}
.y14c{bottom:494.700159px;}
.y92{bottom:495.780159px;}
.y38{bottom:495.960159px;}
.y11d{bottom:496.320158px;}
.y1f{bottom:496.500158px;}
.y1f0{bottom:496.680158px;}
.y3a{bottom:497.040158px;}
.y23d{bottom:497.760158px;}
.y215{bottom:497.940158px;}
.y6e{bottom:498.300158px;}
.y224{bottom:498.840157px;}
.y16e{bottom:501.180157px;}
.y132{bottom:501.540156px;}
.y22a{bottom:503.340156px;}
.y17c{bottom:504.780155px;}
.y1b6{bottom:504.960155px;}
.yea{bottom:505.680155px;}
.yd5{bottom:506.040155px;}
.y5a{bottom:507.480154px;}
.y194{bottom:509.820153px;}
.y7d{bottom:510.360153px;}
.y1e3{bottom:511.080153px;}
.y127{bottom:512.340152px;}
.y10f{bottom:512.520152px;}
.y14b{bottom:518.280150px;}
.y91{bottom:518.460150px;}
.ye0{bottom:518.820149px;}
.y1ef{bottom:520.260149px;}
.y1e{bottom:520.800149px;}
.y6d{bottom:520.980149px;}
.y131{bottom:523.680148px;}
.y223{bottom:525.840147px;}
.y229{bottom:527.640146px;}
.y18c{bottom:528.360146px;}
.y11c{bottom:528.540146px;}
.ye9{bottom:528.900145px;}
.y16d{bottom:529.440145px;}
.y23c{bottom:529.980145px;}
.y1c7{bottom:530.160145px;}
.y163{bottom:530.700145px;}
.y1a1{bottom:531.420144px;}
.y1e1{bottom:532.500000px;}
.y9c{bottom:532.860144px;}
.yf3{bottom:533.400144px;}
.y126{bottom:536.100143px;}
.y193{bottom:536.820142px;}
.yb{bottom:537.720142px;}
.y1e5{bottom:538.080142px;}
.y90{bottom:541.320140px;}
.yd4{bottom:541.860140px;}
.y6c{bottom:543.660140px;}
.y1ee{bottom:544.020139px;}
.y1b5{bottom:544.740139px;}
.y1d{bottom:545.100139px;}
.y59{bottom:545.640139px;}
.y130{bottom:545.820139px;}
.y23b{bottom:546.360138px;}
.y1c6{bottom:550.140137px;}
.y17b{bottom:551.940136px;}
.y222{bottom:552.840136px;}
.y162{bottom:554.280135px;}
.ydf{bottom:555.180135px;}
.yf2{bottom:556.620134px;}
.y16c{bottom:557.880134px;}
.y125{bottom:559.680133px;}
.ya5{bottom:560.040133px;}
.y11b{bottom:560.580133px;}
.ye8{bottom:560.940133px;}
.y23a{bottom:562.740132px;}
.y8f{bottom:564.000131px;}
.yd3{bottom:564.720131px;}
.y1df{bottom:565.080131px;}
.y14a{bottom:565.620131px;}
.y6b{bottom:566.520130px;}
.y1ed{bottom:567.600130px;}
.y1c{bottom:569.400129px;}
.y34{bottom:572.100128px;}
.y9b{bottom:572.640128px;}
.y3c{bottom:575.340127px;}
.y17a{bottom:575.700127px;}
.ya{bottom:577.500126px;}
.y161{bottom:578.040126px;}
.y199{bottom:579.300125px;}
.yf1{bottom:579.660125px;}
.y221{bottom:579.840125px;}
.y58{bottom:581.100125px;}
.ya4{bottom:582.180124px;}
.y1c5{bottom:583.080124px;}
.y124{bottom:583.260124px;}
.y1b4{bottom:584.520123px;}
.y16b{bottom:586.320122px;}
.y8e{bottom:586.680122px;}
.yd2{bottom:587.400122px;}
.y149{bottom:589.200121px;}
.y228{bottom:589.380121px;}
.y12f{bottom:589.920121px;}
.yc4{bottom:590.820121px;}
.y1de{bottom:592.080120px;}
.y11a{bottom:593.520120px;}
.y239{bottom:595.320119px;}
.ycc{bottom:595.860119px;}
.y179{bottom:599.280117px;}
.y6a{bottom:600.000117px;}
.y160{bottom:601.620116px;}
.yf0{bottom:602.700116px;}
.y1c4{bottom:603.060116px;}
.y3b{bottom:604.320115px;}
.y220{bottom:606.840114px;}
.y123{bottom:607.020114px;}
.y198{bottom:607.740114px;}
.y1b{bottom:607.920114px;}
.y8d{bottom:609.360113px;}
.y12e{bottom:612.060112px;}
.y148{bottom:612.780112px;}
.y238{bottom:612.960112px;}
.y1a0{bottom:614.400111px;}
.y1ec{bottom:614.940111px;}
.yc2{bottom:615.300111px;}
.y1dd{bottom:619.080109px;}
.y178{bottom:622.860108px;}
.yd1{bottom:623.220108px;}
.y1d3{bottom:624.300107px;}
.y15f{bottom:625.200107px;}
.y9a{bottom:625.560107px;}
.ya3{bottom:626.460106px;}
.y30{bottom:627.720106px;}
.y69{bottom:628.440106px;}
.ycb{bottom:629.880105px;}
.y122{bottom:630.600105px;}
.y8c{bottom:632.220104px;}
.y21f{bottom:633.840103px;}
.y12d{bottom:634.200103px;}
.yef{bottom:634.920103px;}
.y197{bottom:636.180103px;}
.y147{bottom:636.540102px;}
.y1a{bottom:636.720102px;}
.y1b3{bottom:637.440102px;}
.y2{bottom:638.880101px;}
.y19f{bottom:639.600101px;}
.yc3{bottom:639.960101px;}
.y230{bottom:640.140101px;}
.y1db{bottom:640.500000px;}
.y1c3{bottom:642.840100px;}
.yd0{bottom:645.900099px;}
.y1e0{bottom:646.080099px;}
.y177{bottom:646.620098px;}
.ya2{bottom:648.420098px;}
.y15e{bottom:648.960097px;}
.y121{bottom:654.180095px;}
.y12c{bottom:656.340094px;}
.y68{bottom:656.880094px;}
.y146{bottom:660.120093px;}
.y1eb{bottom:662.100092px;}
.y1c2{bottom:662.640092px;}
.y19e{bottom:664.980091px;}
.y19{bottom:665.340091px;}
.y8b{bottom:665.700091px;}
.yee{bottom:666.960090px;}
.y2f{bottom:667.500090px;}
.y1ae{bottom:668.040090px;}
.y22f{bottom:668.400090px;}
.ycf{bottom:668.760089px;}
.y21e{bottom:670.020089px;}
.y176{bottom:670.200089px;}
.y15d{bottom:672.540088px;}
.y1da{bottom:673.080088px;}
.y57{bottom:673.440088px;}
.ya1{bottom:675.060087px;}
.y1b2{bottom:677.220086px;}
.y120{bottom:677.760086px;}
.y12b{bottom:678.300086px;}
.ya7{bottom:679.380085px;}
.y145{bottom:683.700084px;}
.y67{bottom:685.320083px;}
.y1ea{bottom:685.860083px;}
.y18a{bottom:686.220083px;}
.y18b{bottom:687.660082px;}
.y10e{bottom:688.920081px;}
.y175{bottom:693.780079px;}
.y8a{bottom:694.140079px;}
.y1c1{bottom:694.860079px;}
.y1{bottom:695.580079px;}
.y15c{bottom:696.120079px;}
.y22e{bottom:696.840078px;}
.ya0{bottom:697.020078px;}
.y1d9{bottom:700.080077px;}
.ya6{bottom:701.520076px;}
.y11f{bottom:701.700076px;}
.y56{bottom:701.880076px;}
.y18{bottom:706.200075px;}
.y144{bottom:707.280074px;}
.y9{bottom:708.900073px;}
.y1e9{bottom:709.440073px;}
.yce{bottom:710.160073px;}
.y10d{bottom:711.780072px;}
.y174{bottom:717.360070px;}
.y15b{bottom:719.700069px;}
.y19d{bottom:721.500068px;}
.y89{bottom:722.580068px;}
.y9f{bottom:723.660068px;}
.y21d{bottom:724.020067px;}
.y22d{bottom:725.280067px;}
.y237{bottom:726.900066px;}
.y1d8{bottom:727.080066px;}
.y192{bottom:728.880065px;}
.ye7{bottom:729.060065px;}
.y2e{bottom:729.780065px;}
.y143{bottom:730.860065px;}
.y99{bottom:731.760064px;}
.y1e8{bottom:733.020064px;}
.y17{bottom:734.640063px;}
.ycd{bottom:735.720063px;}
.y1ad{bottom:736.800062px;}
.y173{bottom:741.120061px;}
.y191{bottom:745.980059px;}
.y119{bottom:746.160059px;}
.y15a{bottom:747.600058px;}
.y7{bottom:751.740000px;}
.y21c{bottom:752.280056px;}
.y1d7{bottom:754.080055px;}
.y1e7{bottom:756.600054px;}
.y2d{bottom:758.220054px;}
.y98{bottom:760.200053px;}
.y190{bottom:765.780051px;}
.y19b{bottom:773.160000px;}
.y9e{bottom:776.220047px;}
.y1d6{bottom:781.080045px;}
.h1f{height:0.180000px;}
.hd{height:0.720000px;}
.h4e{height:1.080000px;}
.h4f{height:2.160000px;}
.h46{height:2.520000px;}
.h67{height:2.700000px;}
.h58{height:3.600000px;}
.h43{height:3.780000px;}
.h4a{height:3.960000px;}
.h50{height:4.140000px;}
.h17{height:4.320000px;}
.hf{height:5.040000px;}
.h5f{height:7.020000px;}
.h2b{height:7.380000px;}
.h2f{height:7.740000px;}
.h2e{height:8.280000px;}
.h2c{height:9.720000px;}
.h3a{height:10.080000px;}
.h15{height:10.260000px;}
.h3d{height:10.800000px;}
.h8{height:11.160000px;}
.h36{height:11.520000px;}
.h62{height:12.420000px;}
.h1c{height:12.600000px;}
.h31{height:12.780000px;}
.h32{height:12.960000px;}
.h25{height:13.320000px;}
.h53{height:13.860000px;}
.h37{height:14.040000px;}
.h55{height:14.220000px;}
.h14{height:14.400000px;}
.h3b{height:14.760000px;}
.h40{height:14.940000px;}
.h54{height:15.120000px;}
.h26{height:15.300000px;}
.h3c{height:15.480000px;}
.h5b{height:15.660000px;}
.h30{height:16.200000px;}
.h44{height:17.280000px;}
.h5e{height:17.820000px;}
.h5d{height:18.000000px;}
.h68{height:18.180000px;}
.h42{height:18.540000px;}
.h22{height:18.720000px;}
.h23{height:20.700000px;}
.h5a{height:21.240000px;}
.h4b{height:21.600000px;}
.h59{height:21.960000px;}
.h1a{height:22.320000px;}
.h61{height:22.860000px;}
.h47{height:23.040000px;}
.h1b{height:24.120000px;}
.h24{height:24.300000px;}
.h20{height:25.380000px;}
.h57{height:25.560000px;}
.h27{height:27.720000px;}
.h48{height:28.260000px;}
.h28{height:29.700000px;}
.h11{height:30.240000px;}
.h10{height:30.420000px;}
.h56{height:30.780000px;}
.h7{height:33.840000px;}
.h4c{height:38.880000px;}
.h13{height:39.190062px;}
.h4d{height:40.860000px;}
.h12{height:43.346584px;}
.h51{height:43.920000px;}
.h21{height:45.721740px;}
.h3e{height:47.503106px;}
.h3{height:49.680000px;}
.h45{height:52.253417px;}
.h66{height:56.409938px;}
.h16{height:59.906578px;}
.h3f{height:60.566460px;}
.h65{height:62.697631px;}
.h52{height:65.316771px;}
.h2d{height:68.025207px;}
.h1e{height:69.473293px;}
.h34{height:73.629814px;}
.h2a{height:76.595594px;}
.h2{height:78.380125px;}
.h49{height:80.336170px;}
.h64{height:82.536647px;}
.h9{height:86.693168px;}
.h29{height:87.859652px;}
.h41{height:93.230119px;}
.hc{height:95.600001px;}
.h39{height:99.123710px;}
.h33{height:103.118162px;}
.h19{height:103.913044px;}
.h63{height:104.380271px;}
.h1d{height:107.633277px;}
.h38{height:109.636831px;}
.hb{height:112.819877px;}
.he{height:113.712494px;}
.h60{height:120.900889px;}
.h6{height:121.726709px;}
.h35{height:122.589795px;}
.h5c{height:123.600536px;}
.h18{height:131.414010px;}
.ha{height:142.678068px;}
.h5{height:153.942126px;}
.h1{height:156.166461px;}
.h4{height:173.386337px;}
.h0{height:892.500000px;}
.w44{width:5.580000px;}
.w14{width:6.120000px;}
.w12{width:8.460000px;}
.w38{width:9.900000px;}
.w8{width:10.980000px;}
.wb{width:12.780000px;}
.w4{width:17.460000px;}
.w47{width:18.900000px;}
.w3b{width:19.620000px;}
.w19{width:20.520000px;}
.w51{width:21.240000px;}
.w36{width:25.020000px;}
.w35{width:31.320000px;}
.w1e{width:32.580000px;}
.w3a{width:39.240000px;}
.w7{width:43.920000px;}
.w6{width:44.640000px;}
.w1b{width:46.800000px;}
.w4f{width:56.880000px;}
.w1a{width:65.880000px;}
.w1c{width:70.020000px;}
.w2a{width:72.540000px;}
.w37{width:72.720000px;}
.w52{width:77.400000px;}
.w1d{width:79.380000px;}
.w41{width:80.460000px;}
.w27{width:84.780000px;}
.w20{width:85.140000px;}
.w28{width:91.800000px;}
.wf{width:92.519640px;}
.w29{width:94.860000px;}
.w25{width:96.660000px;}
.w2e{width:102.960000px;}
.w3c{width:103.500000px;}
.w39{width:106.740000px;}
.w4c{width:107.460000px;}
.w26{width:107.640000px;}
.w23{width:109.080000px;}
.w10{width:109.800000px;}
.w34{width:112.500000px;}
.w45{width:114.300000px;}
.w2b{width:119.880000px;}
.w30{width:124.019640px;}
.w31{width:124.020000px;}
.we{width:127.260018px;}
.w22{width:128.160000px;}
.w3{width:131.220000px;}
.w49{width:151.560000px;}
.w42{width:152.459640px;}
.w40{width:155.699640px;}
.w4a{width:158.940000px;}
.w2d{width:160.200000px;}
.w43{width:160.380000px;}
.w15{width:188.640000px;}
.w21{width:210.959640px;}
.w18{width:214.560000px;}
.w48{width:226.799640px;}
.w13{width:228.960000px;}
.w17{width:238.680000px;}
.w1f{width:243.179640px;}
.w46{width:248.400000px;}
.w32{width:271.259640px;}
.w24{width:286.020000px;}
.w2f{width:286.380000px;}
.w2{width:294.839640px;}
.w4b{width:303.120000px;}
.w2c{width:326.880000px;}
.w16{width:358.199640px;}
.wa{width:370.079640px;}
.w4d{width:383.040000px;}
.w11{width:427.860000px;}
.w33{width:581.040000px;}
.w50{width:886.859640px;}
.w5{width:891.539640px;}
.wd{width:907.559640px;}
.w3e{width:936.359640px;}
.w3d{width:943.200000px;}
.wc{width:976.139640px;}
.w9{width:979.919640px;}
.w3f{width:1009.799640px;}
.w4e{width:1022.939640px;}
.w1{width:1041.479640px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2d{left:9.705941px;}
.x83{left:33.285887px;}
.x5e{left:36.525885px;}
.x12{left:38.685885px;}
.x98{left:45.525882px;}
.x7f{left:54.345960px;}
.x2e{left:57.045922px;}
.x13{left:62.445875px;}
.x67{left:67.125873px;}
.x84{left:74.685870px;}
.x2b{left:77.025869px;}
.xa2{left:84.225866px;}
.xb{left:88.185865px;}
.x73{left:90.705864px;}
.x6c{left:92.685863px;}
.x2{left:96.465960px;}
.xe{left:98.265861px;}
.x2a{left:104.385858px;}
.x6{left:107.265857px;}
.x64{left:109.065856px;}
.x5{left:110.325856px;}
.xc{left:111.945855px;}
.x41{left:118.605853px;}
.x3{left:120.225852px;}
.x91{left:123.106451px;}
.x7c{left:128.865848px;}
.x8{left:130.845848px;}
.xd{left:133.005847px;}
.x10{left:135.525960px;}
.x30{left:136.965960px;}
.x27{left:143.805842px;}
.x8c{left:155.326438px;}
.x11{left:159.285960px;}
.x8e{left:161.266435px;}
.x28{left:167.565833px;}
.x1e{left:168.826432px;}
.x90{left:173.146431px;}
.x16{left:176.566429px;}
.x93{left:178.905960px;}
.x92{left:183.945600px;}
.x36{left:191.145824px;}
.x9{left:200.685820px;}
.x94{left:203.566419px;}
.x74{left:208.426417px;}
.x14{left:211.486415px;}
.x43{left:214.905814px;}
.x78{left:225.886410px;}
.xa4{left:228.765808px;}
.x31{left:235.245600px;}
.x15{left:238.126405px;}
.x81{left:240.826404px;}
.x47{left:245.866402px;}
.x55{left:250.366400px;}
.x8d{left:252.706399px;}
.x56{left:254.506398px;}
.x45{left:256.486397px;}
.x54{left:259.186396px;}
.x3d{left:261.526395px;}
.x7e{left:272.686391px;}
.xa3{left:274.846390px;}
.x48{left:277.906389px;}
.x97{left:280.246388px;}
.x99{left:283.665787px;}
.x46{left:285.826386px;}
.x44{left:288.346385px;}
.x53{left:290.686384px;}
.x95{left:297.166381px;}
.x96{left:299.506380px;}
.x7{left:310.125776px;}
.x80{left:325.605600px;}
.x37{left:335.146366px;}
.x75{left:342.886363px;}
.x32{left:345.045600px;}
.x85{left:368.805752px;}
.x57{left:372.586351px;}
.x2c{left:375.465750px;}
.x17{left:378.886348px;}
.x68{left:380.146348px;}
.xf{left:390.585744px;}
.x9e{left:394.365600px;}
.x4{left:415.065600px;}
.x79{left:444.406322px;}
.x9a{left:464.566314px;}
.xa{left:468.885712px;}
.x9c{left:470.145600px;}
.x23{left:471.946311px;}
.x9b{left:494.086302px;}
.x7d{left:496.966301px;}
.x6d{left:499.846300px;}
.x22{left:501.466299px;}
.x1{left:516.766293px;}
.x8f{left:534.046286px;}
.x21{left:536.026286px;}
.x3b{left:549.346280px;}
.x86{left:550.785600px;}
.x9f{left:553.665600px;}
.x1f{left:554.926278px;}
.x42{left:557.446277px;}
.x3f{left:563.206275px;}
.x24{left:567.346273px;}
.x20{left:580.126268px;}
.x40{left:582.286267px;}
.x9d{left:584.445600px;}
.x3c{left:593.626263px;}
.x87{left:594.705600px;}
.x65{left:640.786244px;}
.x38{left:648.166241px;}
.x39{left:661.306235px;}
.x82{left:674.446230px;}
.x88{left:686.505600px;}
.x76{left:689.566224px;}
.x3e{left:710.086216px;}
.x89{left:715.485600px;}
.xa0{left:720.345600px;}
.x4c{left:723.046211px;}
.x77{left:725.026210px;}
.x25{left:727.546209px;}
.x5d{left:730.606208px;}
.x5a{left:732.226207px;}
.x4d{left:733.306207px;}
.x4f{left:735.826206px;}
.x7a{left:738.166205px;}
.x69{left:740.506204px;}
.x50{left:743.746203px;}
.x5c{left:746.626201px;}
.x59{left:749.506200px;}
.x3a{left:751.846199px;}
.x4e{left:753.286199px;}
.x51{left:754.905600px;}
.x62{left:759.405600px;}
.x4b{left:761.206196px;}
.x7b{left:767.686193px;}
.x6e{left:772.186191px;}
.x1b{left:790.906184px;}
.x2f{left:795.586182px;}
.x49{left:799.366180px;}
.x33{left:804.045600px;}
.x1c{left:809.986176px;}
.x5b{left:812.506175px;}
.x58{left:828.166169px;}
.x4a{left:829.246168px;}
.x1a{left:835.546166px;}
.x8a{left:841.305600px;}
.x29{left:866.146154px;}
.x5f{left:871.906151px;}
.x18{left:878.026149px;}
.x6f{left:879.825600px;}
.x26{left:886.126146px;}
.x66{left:891.166144px;}
.x19{left:900.166140px;}
.x8b{left:938.325600px;}
.x60{left:953.806118px;}
.x70{left:964.605600px;}
.x52{left:969.465600px;}
.xa5{left:1020.045600px;}
.x6a{left:1022.565600px;}
.x72{left:1029.046088px;}
.xa1{left:1031.025600px;}
.x34{left:1033.005600px;}
.xa6{left:1041.285600px;}
.x35{left:1044.165600px;}
.x1d{left:1047.226081px;}
.x63{left:1051.005600px;}
.x71{left:1056.405600px;}
.x6b{left:1092.585600px;}
.x61{left:1148.206041px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.719994pt;}
.v4{vertical-align:19.839992pt;}
.v2{vertical-align:33.919986pt;}
.v3{vertical-align:43.519983pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.014062pt;}
.ls6{letter-spacing:0.051200pt;}
.ls14{letter-spacing:0.183040pt;}
.ls5{letter-spacing:0.184375pt;}
.ls15{letter-spacing:0.185600pt;}
.lsb{letter-spacing:0.193750pt;}
.ls4{letter-spacing:0.194375pt;}
.lsc{letter-spacing:1.224960pt;}
.ls10{letter-spacing:17.279993pt;}
.ls7{letter-spacing:28.415989pt;}
.lsd{letter-spacing:33.791986pt;}
.ls1{letter-spacing:38.559985pt;}
.ls2{letter-spacing:41.919983pt;}
.ls3{letter-spacing:45.279982pt;}
.ls8{letter-spacing:45.505262pt;}
.ls11{letter-spacing:48.415981pt;}
.ls9{letter-spacing:51.775979pt;}
.ls12{letter-spacing:53.343979pt;}
.lsa{letter-spacing:54.911978pt;}
.ls13{letter-spacing:58.271977pt;}
.lse{letter-spacing:82.111967pt;}
.ws2{word-spacing:-29.651188pt;}
.ws4{word-spacing:-27.481589pt;}
.ws2e{word-spacing:-27.285236pt;}
.ws2f{word-spacing:-25.326052pt;}
.ws8{word-spacing:-25.311990pt;}
.ws30{word-spacing:-23.287031pt;}
.ws3{word-spacing:-21.117432pt;}
.wsd{word-spacing:-20.816632pt;}
.ws31{word-spacing:-20.104952pt;}
.ws0{word-spacing:-19.092472pt;}
.wsb{word-spacing:-18.147833pt;}
.wse{word-spacing:-17.935353pt;}
.ws9{word-spacing:-16.922873pt;}
.ws13{word-spacing:-14.947024pt;}
.ws11{word-spacing:-14.753274pt;}
.ws34{word-spacing:-13.740795pt;}
.wsf{word-spacing:-11.571195pt;}
.wsa{word-spacing:-11.137276pt;}
.ws6{word-spacing:-10.558716pt;}
.ws33{word-spacing:-9.835516pt;}
.ws5{word-spacing:-9.546236pt;}
.ws27{word-spacing:-1.393816pt;}
.ws10{word-spacing:-1.216800pt;}
.wsc{word-spacing:-0.434562pt;}
.ws23{word-spacing:-0.293737pt;}
.ws2d{word-spacing:-0.183788pt;}
.ws2c{word-spacing:-0.145043pt;}
.ws1{word-spacing:0.000000pt;}
.ws32{word-spacing:2.729225pt;}
.ws1c{word-spacing:2.981196pt;}
.ws28{word-spacing:4.037453pt;}
.ws1a{word-spacing:4.405563pt;}
.ws26{word-spacing:6.965559pt;}
.ws2a{word-spacing:8.245558pt;}
.ws35{word-spacing:12.415660pt;}
.ws19{word-spacing:13.952460pt;}
.ws29{word-spacing:14.005550pt;}
.ws22{word-spacing:14.041246pt;}
.ws24{word-spacing:14.277439pt;}
.ws15{word-spacing:15.132945pt;}
.ws25{word-spacing:15.141179pt;}
.ws21{word-spacing:15.961307pt;}
.ws1d{word-spacing:16.494934pt;}
.ws20{word-spacing:16.534997pt;}
.ws16{word-spacing:18.688750pt;}
.ws1f{word-spacing:19.765542pt;}
.ws18{word-spacing:22.491472pt;}
.ws1e{word-spacing:26.766145pt;}
.ws1b{word-spacing:41.472421pt;}
.ws2b{word-spacing:42.734897pt;}
.ws17{word-spacing:48.412937pt;}
.ws14{word-spacing:82.080428pt;}
.ws12{word-spacing:265.042994pt;}
.ws7{word-spacing:1249.542574pt;}
._1{margin-left:-15.249986pt;}
._3b{margin-left:-13.812971pt;}
._35{margin-left:-11.993503pt;}
._25{margin-left:-9.980618pt;}
._6{margin-left:-8.385914pt;}
._4{margin-left:-7.073923pt;}
._e{margin-left:-5.649825pt;}
._8{margin-left:-4.676549pt;}
._5{margin-left:-3.489129pt;}
._0{margin-left:-1.847195pt;}
._3{margin-left:-0.953750pt;}
._2{width:1.013447pt;}
._7{width:1.944077pt;}
._29{width:2.865019pt;}
._14{width:8.478130pt;}
._f{width:9.562472pt;}
._2a{width:10.823145pt;}
._3f{width:12.468571pt;}
._34{width:14.777797pt;}
._b{width:16.298659pt;}
._9{width:18.230023pt;}
._c{width:19.696862pt;}
._2c{width:20.793236pt;}
._31{width:22.094303pt;}
._33{width:24.236558pt;}
._3a{width:27.214586pt;}
._30{width:30.215295pt;}
._32{width:32.303722pt;}
._2f{width:34.265537pt;}
._2e{width:35.951013pt;}
._36{width:37.391317pt;}
._2b{width:40.416092pt;}
._2d{width:42.614121pt;}
._15{width:62.878086pt;}
._24{width:71.988218pt;}
._16{width:74.736792pt;}
._17{width:96.158078pt;}
._37{width:113.854957pt;}
._11{width:125.768523pt;}
._10{width:155.422744pt;}
._13{width:160.918614pt;}
._3e{width:167.372408pt;}
._22{width:260.045386pt;}
._18{width:277.424223pt;}
._d{width:289.834407pt;}
._12{width:312.513513pt;}
._38{width:360.468960pt;}
._26{width:369.485304pt;}
._1e{width:372.877523pt;}
._39{width:377.171500pt;}
._20{width:385.468151pt;}
._1d{width:497.381234pt;}
._3c{width:575.191196pt;}
._27{width:611.941060pt;}
._1b{width:724.256653pt;}
._1a{width:770.183372pt;}
._28{width:812.556426pt;}
._21{width:818.247207pt;}
._1f{width:851.638699pt;}
._19{width:887.476765pt;}
._1c{width:954.447399pt;}
._23{width:1000.253732pt;}
._3d{width:1296.161656pt;}
._a{width:1966.750402pt;}
.fs8{font-size:42.239983pt;}
.fs13{font-size:43.519983pt;}
.fs7{font-size:46.719981pt;}
.fsb{font-size:49.279980pt;}
.fse{font-size:51.199980pt;}
.fsf{font-size:56.319977pt;}
.fs14{font-size:60.799976pt;}
.fsc{font-size:65.279974pt;}
.fs11{font-size:70.399972pt;}
.fsa{font-size:74.879970pt;}
.fsd{font-size:79.359968pt;}
.fs1{font-size:84.479966pt;}
.fs12{font-size:88.959964pt;}
.fs10{font-size:89.284208pt;}
.fs4{font-size:93.439963pt;}
.fs6{font-size:103.039959pt;}
.fs9{font-size:111.999955pt;}
.fs5{font-size:121.599951pt;}
.fs3{font-size:131.199948pt;}
.fs0{font-size:168.319933pt;}
.fs2{font-size:186.879925pt;}
.y1b8{bottom:-30.239829pt;}
.y21{bottom:-19.999833pt;}
.y1d4{bottom:-18.559834pt;}
.y6f{bottom:-17.599834pt;}
.y196{bottom:-15.519835pt;}
.y1e6{bottom:-14.559836pt;}
.y1a4{bottom:-14.239836pt;}
.y77{bottom:-12.799836pt;}
.y240{bottom:-11.999837pt;}
.y17e{bottom:-11.039837pt;}
.ya8{bottom:-10.239837pt;}
.y164{bottom:-8.959838pt;}
.yed{bottom:-8.799838pt;}
.y209{bottom:-8.319838pt;}
.ya9{bottom:-7.839838pt;}
.yd8{bottom:-7.519838pt;}
.y5c{bottom:-5.279839pt;}
.yf6{bottom:-4.639839pt;}
.y12a{bottom:-4.319840pt;}
.y22c{bottom:-4.159840pt;}
.y112{bottom:-2.239840pt;}
.y170{bottom:-1.759841pt;}
.y225{bottom:-1.279841pt;}
.ye{bottom:-1.119841pt;}
.y40{bottom:-0.959841pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:0.960158pt;}
.y3f{bottom:2.880151pt;}
.y37{bottom:2.880157pt;}
.y45{bottom:2.880159pt;}
.y50{bottom:2.880255pt;}
.y208{bottom:3.360284pt;}
.yae{bottom:3.520162pt;}
.yb0{bottom:3.680162pt;}
.yab{bottom:4.160163pt;}
.y150{bottom:4.320158pt;}
.y114{bottom:4.320160pt;}
.y166{bottom:4.320162pt;}
.y1dc{bottom:4.960088pt;}
.y1e2{bottom:4.960126pt;}
.y227{bottom:4.960159pt;}
.yff{bottom:4.960161pt;}
.yda{bottom:4.960162pt;}
.y1a6{bottom:4.960164pt;}
.y71{bottom:4.960166pt;}
.y1b7{bottom:5.120157pt;}
.y172{bottom:5.600159pt;}
.y1c9{bottom:5.600162pt;}
.y5e{bottom:5.920161pt;}
.y19c{bottom:6.240040pt;}
.y232{bottom:6.880160pt;}
.y25{bottom:6.880167pt;}
.y1ba{bottom:7.040157pt;}
.y79{bottom:7.040164pt;}
.y80{bottom:7.040166pt;}
.y23{bottom:7.040167pt;}
.y60{bottom:7.520161pt;}
.y20d{bottom:7.520162pt;}
.y20b{bottom:7.680162pt;}
.y1bc{bottom:8.800157pt;}
.y10{bottom:8.800159pt;}
.y7b{bottom:8.800164pt;}
.y82{bottom:8.800166pt;}
.y1be{bottom:8.800171pt;}
.y8{bottom:12.480045pt;}
.y207{bottom:81.013333pt;}
.y206{bottom:105.333609pt;}
.y49{bottom:122.293602pt;}
.y189{bottom:133.333597pt;}
.y51{bottom:134.933597pt;}
.y10c{bottom:135.253597pt;}
.y205{bottom:147.413592pt;}
.y10b{bottom:150.613590pt;}
.y140{bottom:151.253590pt;}
.y4f{bottom:151.893333pt;}
.y1d2{bottom:153.493589pt;}
.y188{bottom:154.453589pt;}
.yde{bottom:156.533588pt;}
.y16{bottom:160.213587pt;}
.y1fb{bottom:165.973584pt;}
.y10a{bottom:166.133584pt;}
.yb9{bottom:167.893584pt;}
.y204{bottom:168.373583pt;}
.ydd{bottom:170.453582pt;}
.y109{bottom:170.613582pt;}
.y13f{bottom:170.933582pt;}
.y1d1{bottom:171.093582pt;}
.y4e{bottom:174.453581pt;}
.y187{bottom:175.413581pt;}
.y48{bottom:176.373580pt;}
.y55{bottom:176.533580pt;}
.y88{bottom:178.933579pt;}
.yc1{bottom:179.093579pt;}
.y76{bottom:181.493578pt;}
.y24a{bottom:183.253577pt;}
.ydc{bottom:184.533577pt;}
.yb8{bottom:187.413576pt;}
.y1d0{bottom:188.853575pt;}
.y203{bottom:189.333575pt;}
.y1fa{bottom:190.133575pt;}
.y13e{bottom:190.613574pt;}
.y108{bottom:191.093574pt;}
.y4a{bottom:191.253574pt;}
.y214{bottom:193.973573pt;}
.y4d{bottom:194.133573pt;}
.y15{bottom:195.573572pt;}
.y75{bottom:196.213572pt;}
.y186{bottom:196.373572pt;}
.ydb{bottom:198.613571pt;}
.yb5{bottom:199.253571pt;}
.y47{bottom:201.333570pt;}
.y54{bottom:201.653570pt;}
.y2c{bottom:202.933569pt;}
.y1ab{bottom:205.333569pt;}
.y1cf{bottom:206.453568pt;}
.yb7{bottom:207.093568pt;}
.y159{bottom:208.533567pt;}
.yc0{bottom:209.333567pt;}
.y87{bottom:210.293567pt;}
.y107{bottom:211.733566pt;}
.y249{bottom:211.893566pt;}
.y1f9{bottom:214.133565pt;}
.y185{bottom:217.493564pt;}
.y66{bottom:218.133563pt;}
.y213{bottom:220.853562pt;}
.ye6{bottom:221.813562pt;}
.yb4{bottom:222.773562pt;}
.yc8{bottom:224.213561pt;}
.yb6{bottom:226.773560pt;}
.y53{bottom:226.933560pt;}
.y2b{bottom:228.533559pt;}
.y158{bottom:229.493559pt;}
.y13d{bottom:229.813559pt;}
.y1aa{bottom:230.453558pt;}
.y14{bottom:230.773558pt;}
.y202{bottom:231.413558pt;}
.y236{bottom:234.133557pt;}
.yc7{bottom:235.253557pt;}
.y1f8{bottom:238.133555pt;}
.y184{bottom:238.453555pt;}
.y106{bottom:240.213555pt;}
.y248{bottom:240.533554pt;}
.y86{bottom:241.813554pt;}
.y21b{bottom:242.933553pt;}
.ybf{bottom:244.213553pt;}
.yb3{bottom:246.453552pt;}
.y212{bottom:247.893552pt;}
.y157{bottom:250.613550pt;}
.y65{bottom:250.933550pt;}
.y52{bottom:252.213550pt;}
.y201{bottom:252.373550pt;}
.y1ce{bottom:253.493549pt;}
.y2a{bottom:253.973549pt;}
.y247{bottom:255.093549pt;}
.y1a9{bottom:255.733548pt;}
.y183{bottom:259.413547pt;}
.y18f{bottom:259.573547pt;}
.y1c0{bottom:260.533546pt;}
.y105{bottom:260.693546pt;}
.y1f7{bottom:262.133546pt;}
.yfd{bottom:264.693545pt;}
.y7c{bottom:266.133544pt;}
.y118{bottom:267.253544pt;}
.y13c{bottom:269.173543pt;}
.y4c{bottom:270.293543pt;}
.y1cd{bottom:271.253542pt;}
.y156{bottom:271.573542pt;}
.y21a{bottom:273.173541pt;}
.y200{bottom:273.333541pt;}
.y211{bottom:274.773541pt;}
.ybe{bottom:275.413541pt;}
.y13{bottom:277.813540pt;}
.y64{bottom:277.973539pt;}
.y182{bottom:280.373539pt;}
.y18e{bottom:280.533538pt;}
.y1a8{bottom:281.013538pt;}
.y104{bottom:281.333538pt;}
.ye5{bottom:282.453538pt;}
.y16a{bottom:282.613538pt;}
.y246{bottom:283.733537pt;}
.y6{bottom:284.533537pt;}
.y85{bottom:284.853537pt;}
.yfc{bottom:285.173537pt;}
.y1f6{bottom:286.133536pt;}
.y117{bottom:286.773536pt;}
.y13b{bottom:288.853535pt;}
.y29{bottom:290.293535pt;}
.y155{bottom:292.533534pt;}
.y1bf{bottom:295.893532pt;}
.y4b{bottom:296.053532pt;}
.y97{bottom:296.213532pt;}
.y245{bottom:298.293531pt;}
.y181{bottom:301.493530pt;}
.y210{bottom:301.653530pt;}
.y103{bottom:301.813530pt;}
.y235{bottom:302.453530pt;}
.y169{bottom:303.573529pt;}
.y63{bottom:304.853529pt;}
.yfb{bottom:305.653528pt;}
.ybd{bottom:306.453528pt;}
.y74{bottom:306.933528pt;}
.y1b1{bottom:307.733528pt;}
.y138{bottom:308.373527pt;}
.y219{bottom:309.333527pt;}
.y5{bottom:309.813527pt;}
.y1f5{bottom:310.133527pt;}
.y28{bottom:311.893526pt;}
.ye4{bottom:312.693526pt;}
.y12{bottom:313.173525pt;}
.y154{bottom:313.653525pt;}
.y1ff{bottom:315.413525pt;}
.y84{bottom:316.213524pt;}
.y96{bottom:316.373524pt;}
.y234{bottom:321.173522pt;}
.y102{bottom:322.293522pt;}
.y18d{bottom:322.613522pt;}
.yfa{bottom:326.293520pt;}
.y244{bottom:326.933520pt;}
.y73{bottom:327.093520pt;}
.y13a{bottom:328.053519pt;}
.y137{bottom:329.333519pt;}
.y142{bottom:331.253518pt;}
.y62{bottom:331.733518pt;}
.y116{bottom:332.533518pt;}
.y27{bottom:333.493517pt;}
.y1f4{bottom:334.133517pt;}
.y20f{bottom:334.453517pt;}
.y153{bottom:334.613517pt;}
.y4{bottom:335.093517pt;}
.y1cc{bottom:335.893516pt;}
.y1fe{bottom:336.373516pt;}
.y95{bottom:336.533516pt;}
.y1b0{bottom:337.973515pt;}
.ybc{bottom:338.773515pt;}
.y218{bottom:339.573515pt;}
.y243{bottom:341.493514pt;}
.y101{bottom:342.933513pt;}
.y180{bottom:343.573513pt;}
.y41{bottom:344.053513pt;}
.y168{bottom:345.653512pt;}
.yf9{bottom:346.773512pt;}
.ye3{bottom:347.093512pt;}
.y83{bottom:347.733512pt;}
.y11{bottom:348.533511pt;}
.yb2{bottom:349.493511pt;}
.y136{bottom:350.453510pt;}
.y141{bottom:350.773510pt;}
.y1cb{bottom:353.493509pt;}
.yca{bottom:354.133509pt;}
.y26{bottom:355.093509pt;}
.y152{bottom:355.573508pt;}
.y94{bottom:356.693508pt;}
.y1fd{bottom:357.493508pt;}
.y1bd{bottom:357.653333pt;}
.y1f3{bottom:358.133507pt;}
.y72{bottom:358.933507pt;}
.y1a7{bottom:359.893507pt;}
.y43{bottom:360.213507pt;}
.y3{bottom:360.373507pt;}
.y20e{bottom:361.333506pt;}
.yac{bottom:364.053505pt;}
.y61{bottom:364.533505pt;}
.y167{bottom:366.613504pt;}
.y139{bottom:367.253504pt;}
.yf8{bottom:367.413504pt;}
.y1af{bottom:368.373503pt;}
.yb1{bottom:369.173503pt;}
.y1d5{bottom:369.333333pt;}
.y22{bottom:369.653333pt;}
.y24{bottom:369.813333pt;}
.y217{bottom:369.973503pt;}
.y242{bottom:370.133503pt;}
.y81{bottom:370.293333pt;}
.y233{bottom:370.933502pt;}
.y1ca{bottom:371.253502pt;}
.y100{bottom:371.413502pt;}
.y7f{bottom:372.053333pt;}
.y115{bottom:372.693502pt;}
.ybb{bottom:373.653501pt;}
.y70{bottom:374.133333pt;}
.y7a{bottom:375.093333pt;}
.ye2{bottom:375.573500pt;}
.yc9{bottom:375.893500pt;}
.y46{bottom:376.053500pt;}
.y19a{bottom:376.213333pt;}
.y151{bottom:376.693500pt;}
.y78{bottom:376.853333pt;}
.y93{bottom:377.013500pt;}
.y1f2{bottom:377.173333pt;}
.y1a5{bottom:377.493333pt;}
.y1fc{bottom:378.453499pt;}
.y42{bottom:379.893499pt;}
.y241{bottom:380.533333pt;}
.y20a{bottom:380.693333pt;}
.y20c{bottom:380.853333pt;}
.y17f{bottom:381.333333pt;}
.yaa{bottom:382.293333pt;}
.yf7{bottom:382.933333pt;}
.y1c8{bottom:383.253333pt;}
.y165{bottom:383.413333pt;}
.y5f{bottom:383.893333pt;}
.yd9{bottom:384.213333pt;}
.yaf{bottom:385.173333pt;}
.yad{bottom:385.333333pt;}
.y5d{bottom:385.493333pt;}
.y231{bottom:385.653333pt;}
.yf{bottom:386.773333pt;}
.yfe{bottom:387.093333pt;}
.y135{bottom:388.053333pt;}
.y171{bottom:389.333333pt;}
.y113{bottom:390.133333pt;}
.y226{bottom:390.453333pt;}
.y44{bottom:392.853333pt;}
.y1bb{bottom:393.013333pt;}
.y14f{bottom:393.333333pt;}
.y1b9{bottom:394.773333pt;}
.yd{bottom:396.693333pt;}
.y36{bottom:396.853333pt;}
.y1ac{bottom:404.533489pt;}
.yba{bottom:404.853489pt;}
.y1a3{bottom:405.013489pt;}
.y20{bottom:405.173489pt;}
.yc6{bottom:406.133488pt;}
.y134{bottom:406.613488pt;}
.y216{bottom:407.253488pt;}
.yec{bottom:408.373487pt;}
.yd7{bottom:409.493487pt;}
.y11e{bottom:410.773486pt;}
.y32{bottom:410.933486pt;}
.yf5{bottom:412.533486pt;}
.y3e{bottom:412.693333pt;}
.y23f{bottom:413.333485pt;}
.y129{bottom:413.493485pt;}
.y22b{bottom:414.133485pt;}
.y111{bottom:416.373484pt;}
.y14d{bottom:418.613483pt;}
.y35{bottom:419.413483pt;}
.y16f{bottom:420.213483pt;}
.y1f1{bottom:420.533482pt;}
.y7e{bottom:422.293482pt;}
.y39{bottom:423.893481pt;}
.y5b{bottom:424.213481pt;}
.y133{bottom:426.293480pt;}
.y1a2{bottom:427.413480pt;}
.y17d{bottom:427.573480pt;}
.y23e{bottom:427.893480pt;}
.yc5{bottom:428.053479pt;}
.yeb{bottom:429.013479pt;}
.y195{bottom:429.173479pt;}
.yd6{bottom:429.653479pt;}
.y1e4{bottom:430.133479pt;}
.yc{bottom:430.933478pt;}
.y31{bottom:431.413478pt;}
.yf4{bottom:433.013477pt;}
.y128{bottom:434.453477pt;}
.y33{bottom:434.773477pt;}
.y3d{bottom:435.253477pt;}
.ye1{bottom:435.893476pt;}
.y110{bottom:436.053476pt;}
.y9d{bottom:438.293475pt;}
.y14c{bottom:439.733475pt;}
.y92{bottom:440.693474pt;}
.y38{bottom:440.853474pt;}
.y11d{bottom:441.173474pt;}
.y1f{bottom:441.333474pt;}
.y1f0{bottom:441.493474pt;}
.y3a{bottom:441.813474pt;}
.y23d{bottom:442.453474pt;}
.y215{bottom:442.613474pt;}
.y6e{bottom:442.933473pt;}
.y224{bottom:443.413473pt;}
.y16e{bottom:445.493472pt;}
.y132{bottom:445.813472pt;}
.y22a{bottom:447.413472pt;}
.y17c{bottom:448.693471pt;}
.y1b6{bottom:448.853471pt;}
.yea{bottom:449.493471pt;}
.yd5{bottom:449.813471pt;}
.y5a{bottom:451.093470pt;}
.y194{bottom:453.173469pt;}
.y7d{bottom:453.653469pt;}
.y1e3{bottom:454.293469pt;}
.y127{bottom:455.413469pt;}
.y10f{bottom:455.573468pt;}
.y14b{bottom:460.693466pt;}
.y91{bottom:460.853466pt;}
.ye0{bottom:461.173466pt;}
.y1ef{bottom:462.453466pt;}
.y1e{bottom:462.933465pt;}
.y6d{bottom:463.093465pt;}
.y131{bottom:465.493464pt;}
.y223{bottom:467.413464pt;}
.y229{bottom:469.013463pt;}
.y18c{bottom:469.653463pt;}
.y11c{bottom:469.813463pt;}
.ye9{bottom:470.133463pt;}
.y16d{bottom:470.613462pt;}
.y23c{bottom:471.093462pt;}
.y1c7{bottom:471.253462pt;}
.y163{bottom:471.733462pt;}
.y1a1{bottom:472.373462pt;}
.y1e1{bottom:473.333333pt;}
.y9c{bottom:473.653461pt;}
.yf3{bottom:474.133461pt;}
.y126{bottom:476.533460pt;}
.y193{bottom:477.173460pt;}
.yb{bottom:477.973459pt;}
.y1e5{bottom:478.293459pt;}
.y90{bottom:481.173458pt;}
.yd4{bottom:481.653458pt;}
.y6c{bottom:483.253457pt;}
.y1ee{bottom:483.573457pt;}
.y1b5{bottom:484.213457pt;}
.y1d{bottom:484.533457pt;}
.y59{bottom:485.013457pt;}
.y130{bottom:485.173457pt;}
.y23b{bottom:485.653456pt;}
.y1c6{bottom:489.013455pt;}
.y17b{bottom:490.613454pt;}
.y222{bottom:491.413454pt;}
.y162{bottom:492.693454pt;}
.ydf{bottom:493.493453pt;}
.yf2{bottom:494.773453pt;}
.y16c{bottom:495.893452pt;}
.y125{bottom:497.493452pt;}
.ya5{bottom:497.813452pt;}
.y11b{bottom:498.293451pt;}
.ye8{bottom:498.613451pt;}
.y23a{bottom:500.213451pt;}
.y8f{bottom:501.333450pt;}
.yd3{bottom:501.973450pt;}
.y1df{bottom:502.293450pt;}
.y14a{bottom:502.773450pt;}
.y6b{bottom:503.573449pt;}
.y1ed{bottom:504.533449pt;}
.y1c{bottom:506.133448pt;}
.y34{bottom:508.533447pt;}
.y9b{bottom:509.013447pt;}
.y3c{bottom:511.413446pt;}
.y17a{bottom:511.733446pt;}
.ya{bottom:513.333445pt;}
.y161{bottom:513.813445pt;}
.y199{bottom:514.933445pt;}
.yf1{bottom:515.253445pt;}
.y221{bottom:515.413445pt;}
.y58{bottom:516.533444pt;}
.ya4{bottom:517.493444pt;}
.y1c5{bottom:518.293443pt;}
.y124{bottom:518.453443pt;}
.y1b4{bottom:519.573443pt;}
.y16b{bottom:521.173442pt;}
.y8e{bottom:521.493442pt;}
.yd2{bottom:522.133442pt;}
.y149{bottom:523.733441pt;}
.y228{bottom:523.893441pt;}
.y12f{bottom:524.373441pt;}
.yc4{bottom:525.173441pt;}
.y1de{bottom:526.293440pt;}
.y11a{bottom:527.573440pt;}
.y239{bottom:529.173439pt;}
.ycc{bottom:529.653439pt;}
.y179{bottom:532.693438pt;}
.y6a{bottom:533.333437pt;}
.y160{bottom:534.773437pt;}
.yf0{bottom:535.733436pt;}
.y1c4{bottom:536.053436pt;}
.y3b{bottom:537.173436pt;}
.y220{bottom:539.413435pt;}
.y123{bottom:539.573435pt;}
.y198{bottom:540.213435pt;}
.y1b{bottom:540.373435pt;}
.y8d{bottom:541.653434pt;}
.y12e{bottom:544.053433pt;}
.y148{bottom:544.693433pt;}
.y238{bottom:544.853433pt;}
.y1a0{bottom:546.133432pt;}
.y1ec{bottom:546.613432pt;}
.yc2{bottom:546.933432pt;}
.y1dd{bottom:550.293431pt;}
.y178{bottom:553.653429pt;}
.yd1{bottom:553.973429pt;}
.y1d3{bottom:554.933429pt;}
.y15f{bottom:555.733428pt;}
.y9a{bottom:556.053428pt;}
.ya3{bottom:556.853428pt;}
.y30{bottom:557.973427pt;}
.y69{bottom:558.613427pt;}
.ycb{bottom:559.893427pt;}
.y122{bottom:560.533426pt;}
.y8c{bottom:561.973426pt;}
.y21f{bottom:563.413425pt;}
.y12d{bottom:563.733425pt;}
.yef{bottom:564.373425pt;}
.y197{bottom:565.493424pt;}
.y147{bottom:565.813424pt;}
.y1a{bottom:565.973424pt;}
.y1b3{bottom:566.613424pt;}
.y2{bottom:567.893424pt;}
.y19f{bottom:568.533423pt;}
.yc3{bottom:568.853423pt;}
.y230{bottom:569.013423pt;}
.y1db{bottom:569.333333pt;}
.y1c3{bottom:571.413422pt;}
.yd0{bottom:574.133421pt;}
.y1e0{bottom:574.293421pt;}
.y177{bottom:574.773421pt;}
.ya2{bottom:576.373420pt;}
.y15e{bottom:576.853420pt;}
.y121{bottom:581.493418pt;}
.y12c{bottom:583.413417pt;}
.y68{bottom:583.893417pt;}
.y146{bottom:586.773416pt;}
.y1eb{bottom:588.533415pt;}
.y1c2{bottom:589.013415pt;}
.y19e{bottom:591.093414pt;}
.y19{bottom:591.413414pt;}
.y8b{bottom:591.733414pt;}
.yee{bottom:592.853414pt;}
.y2f{bottom:593.333413pt;}
.y1ae{bottom:593.813413pt;}
.y22f{bottom:594.133413pt;}
.ycf{bottom:594.453413pt;}
.y21e{bottom:595.573412pt;}
.y176{bottom:595.733412pt;}
.y15d{bottom:597.813412pt;}
.y1da{bottom:598.293411pt;}
.y57{bottom:598.613411pt;}
.ya1{bottom:600.053411pt;}
.y1b2{bottom:601.973410pt;}
.y120{bottom:602.453410pt;}
.y12b{bottom:602.933409pt;}
.ya7{bottom:603.893409pt;}
.y145{bottom:607.733408pt;}
.y67{bottom:609.173407pt;}
.y1ea{bottom:609.653407pt;}
.y18a{bottom:609.973407pt;}
.y18b{bottom:611.253406pt;}
.y10e{bottom:612.373406pt;}
.y175{bottom:616.693404pt;}
.y8a{bottom:617.013404pt;}
.y1c1{bottom:617.653404pt;}
.y1{bottom:618.293403pt;}
.y15c{bottom:618.773403pt;}
.y22e{bottom:619.413403pt;}
.ya0{bottom:619.573403pt;}
.y1d9{bottom:622.293402pt;}
.ya6{bottom:623.573401pt;}
.y11f{bottom:623.733401pt;}
.y56{bottom:623.893401pt;}
.y18{bottom:627.733400pt;}
.y144{bottom:628.693399pt;}
.y9{bottom:630.133399pt;}
.y1e9{bottom:630.613398pt;}
.yce{bottom:631.253398pt;}
.y10d{bottom:632.693398pt;}
.y174{bottom:637.653396pt;}
.y15b{bottom:639.733395pt;}
.y19d{bottom:641.333394pt;}
.y89{bottom:642.293394pt;}
.y9f{bottom:643.253393pt;}
.y21d{bottom:643.573393pt;}
.y22d{bottom:644.693393pt;}
.y237{bottom:646.133392pt;}
.y1d8{bottom:646.293392pt;}
.y192{bottom:647.893392pt;}
.ye7{bottom:648.053391pt;}
.y2e{bottom:648.693391pt;}
.y143{bottom:649.653391pt;}
.y99{bottom:650.453390pt;}
.y1e8{bottom:651.573390pt;}
.y17{bottom:653.013389pt;}
.ycd{bottom:653.973389pt;}
.y1ad{bottom:654.933389pt;}
.y173{bottom:658.773387pt;}
.y191{bottom:663.093385pt;}
.y119{bottom:663.253385pt;}
.y15a{bottom:664.533385pt;}
.y7{bottom:668.213333pt;}
.y21c{bottom:668.693383pt;}
.y1d7{bottom:670.293383pt;}
.y1e7{bottom:672.533382pt;}
.y2d{bottom:673.973381pt;}
.y98{bottom:675.733380pt;}
.y190{bottom:680.693378pt;}
.y19b{bottom:687.253333pt;}
.y9e{bottom:689.973375pt;}
.y1d6{bottom:694.293373pt;}
.h1f{height:0.160000pt;}
.hd{height:0.640000pt;}
.h4e{height:0.960000pt;}
.h4f{height:1.920000pt;}
.h46{height:2.240000pt;}
.h67{height:2.400000pt;}
.h58{height:3.200000pt;}
.h43{height:3.360000pt;}
.h4a{height:3.520000pt;}
.h50{height:3.680000pt;}
.h17{height:3.840000pt;}
.hf{height:4.480000pt;}
.h5f{height:6.240000pt;}
.h2b{height:6.560000pt;}
.h2f{height:6.880000pt;}
.h2e{height:7.360000pt;}
.h2c{height:8.640000pt;}
.h3a{height:8.960000pt;}
.h15{height:9.120000pt;}
.h3d{height:9.600000pt;}
.h8{height:9.920000pt;}
.h36{height:10.240000pt;}
.h62{height:11.040000pt;}
.h1c{height:11.200000pt;}
.h31{height:11.360000pt;}
.h32{height:11.520000pt;}
.h25{height:11.840000pt;}
.h53{height:12.320000pt;}
.h37{height:12.480000pt;}
.h55{height:12.640000pt;}
.h14{height:12.800000pt;}
.h3b{height:13.120000pt;}
.h40{height:13.280000pt;}
.h54{height:13.440000pt;}
.h26{height:13.600000pt;}
.h3c{height:13.760000pt;}
.h5b{height:13.920000pt;}
.h30{height:14.400000pt;}
.h44{height:15.360000pt;}
.h5e{height:15.840000pt;}
.h5d{height:16.000000pt;}
.h68{height:16.160000pt;}
.h42{height:16.480000pt;}
.h22{height:16.640000pt;}
.h23{height:18.400000pt;}
.h5a{height:18.880000pt;}
.h4b{height:19.200000pt;}
.h59{height:19.520000pt;}
.h1a{height:19.840000pt;}
.h61{height:20.320000pt;}
.h47{height:20.480000pt;}
.h1b{height:21.440000pt;}
.h24{height:21.600000pt;}
.h20{height:22.560000pt;}
.h57{height:22.720000pt;}
.h27{height:24.640000pt;}
.h48{height:25.120000pt;}
.h28{height:26.400000pt;}
.h11{height:26.880000pt;}
.h10{height:27.040000pt;}
.h56{height:27.360000pt;}
.h7{height:30.080000pt;}
.h4c{height:34.560000pt;}
.h13{height:34.835611pt;}
.h4d{height:36.320000pt;}
.h12{height:38.530297pt;}
.h51{height:39.040000pt;}
.h21{height:40.641546pt;}
.h3e{height:42.224983pt;}
.h3{height:44.160000pt;}
.h45{height:46.447481pt;}
.h66{height:50.142167pt;}
.h16{height:53.250291pt;}
.h3f{height:53.836853pt;}
.h65{height:55.731228pt;}
.h52{height:58.059352pt;}
.h2d{height:60.466851pt;}
.h1e{height:61.754038pt;}
.h34{height:65.448724pt;}
.h2a{height:68.084973pt;}
.h2{height:69.671222pt;}
.h49{height:71.409928pt;}
.h64{height:73.365908pt;}
.h9{height:77.060594pt;}
.h29{height:78.097469pt;}
.h41{height:82.871217pt;}
.hc{height:84.977779pt;}
.h39{height:88.109965pt;}
.h33{height:91.660588pt;}
.h19{height:92.367151pt;}
.h63{height:92.782463pt;}
.h1d{height:95.674024pt;}
.h38{height:97.454961pt;}
.hb{height:100.284335pt;}
.he{height:101.077772pt;}
.h60{height:107.467457pt;}
.h6{height:108.201519pt;}
.h35{height:108.968706pt;}
.h5c{height:109.867144pt;}
.h18{height:116.812453pt;}
.ha{height:126.824949pt;}
.h5{height:136.837445pt;}
.h1{height:138.814632pt;}
.h4{height:154.121188pt;}
.h0{height:793.333333pt;}
.w44{width:4.960000pt;}
.w14{width:5.440000pt;}
.w12{width:7.520000pt;}
.w38{width:8.800000pt;}
.w8{width:9.760000pt;}
.wb{width:11.360000pt;}
.w4{width:15.520000pt;}
.w47{width:16.800000pt;}
.w3b{width:17.440000pt;}
.w19{width:18.240000pt;}
.w51{width:18.880000pt;}
.w36{width:22.240000pt;}
.w35{width:27.840000pt;}
.w1e{width:28.960000pt;}
.w3a{width:34.880000pt;}
.w7{width:39.040000pt;}
.w6{width:39.680000pt;}
.w1b{width:41.600000pt;}
.w4f{width:50.560000pt;}
.w1a{width:58.560000pt;}
.w1c{width:62.240000pt;}
.w2a{width:64.480000pt;}
.w37{width:64.640000pt;}
.w52{width:68.800000pt;}
.w1d{width:70.560000pt;}
.w41{width:71.520000pt;}
.w27{width:75.360000pt;}
.w20{width:75.680000pt;}
.w28{width:81.600000pt;}
.wf{width:82.239680pt;}
.w29{width:84.320000pt;}
.w25{width:85.920000pt;}
.w2e{width:91.520000pt;}
.w3c{width:92.000000pt;}
.w39{width:94.880000pt;}
.w4c{width:95.520000pt;}
.w26{width:95.680000pt;}
.w23{width:96.960000pt;}
.w10{width:97.600000pt;}
.w34{width:100.000000pt;}
.w45{width:101.600000pt;}
.w2b{width:106.560000pt;}
.w30{width:110.239680pt;}
.w31{width:110.240000pt;}
.we{width:113.120016pt;}
.w22{width:113.920000pt;}
.w3{width:116.640000pt;}
.w49{width:134.720000pt;}
.w42{width:135.519680pt;}
.w40{width:138.399680pt;}
.w4a{width:141.280000pt;}
.w2d{width:142.400000pt;}
.w43{width:142.560000pt;}
.w15{width:167.680000pt;}
.w21{width:187.519680pt;}
.w18{width:190.720000pt;}
.w48{width:201.599680pt;}
.w13{width:203.520000pt;}
.w17{width:212.160000pt;}
.w1f{width:216.159680pt;}
.w46{width:220.800000pt;}
.w32{width:241.119680pt;}
.w24{width:254.240000pt;}
.w2f{width:254.560000pt;}
.w2{width:262.079680pt;}
.w4b{width:269.440000pt;}
.w2c{width:290.560000pt;}
.w16{width:318.399680pt;}
.wa{width:328.959680pt;}
.w4d{width:340.480000pt;}
.w11{width:380.320000pt;}
.w33{width:516.480000pt;}
.w50{width:788.319680pt;}
.w5{width:792.479680pt;}
.wd{width:806.719680pt;}
.w3e{width:832.319680pt;}
.w3d{width:838.400000pt;}
.wc{width:867.679680pt;}
.w9{width:871.039680pt;}
.w3f{width:897.599680pt;}
.w4e{width:909.279680pt;}
.w1{width:925.759680pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2d{left:8.627503pt;}
.x83{left:29.587455pt;}
.x5e{left:32.467454pt;}
.x12{left:34.387453pt;}
.x98{left:40.467450pt;}
.x7f{left:48.307520pt;}
.x2e{left:50.707486pt;}
.x13{left:55.507444pt;}
.x67{left:59.667443pt;}
.x84{left:66.387440pt;}
.x2b{left:68.467439pt;}
.xa2{left:74.867437pt;}
.xb{left:78.387435pt;}
.x73{left:80.627434pt;}
.x6c{left:82.387434pt;}
.x2{left:85.747520pt;}
.xe{left:87.347432pt;}
.x2a{left:92.787430pt;}
.x6{left:95.347429pt;}
.x64{left:96.947428pt;}
.x5{left:98.067427pt;}
.xc{left:99.507427pt;}
.x41{left:105.427424pt;}
.x3{left:106.867424pt;}
.x91{left:109.427956pt;}
.x7c{left:114.547421pt;}
.x8{left:116.307420pt;}
.xd{left:118.227419pt;}
.x10{left:120.467520pt;}
.x30{left:121.747520pt;}
.x27{left:127.827416pt;}
.x8c{left:138.067945pt;}
.x11{left:141.587520pt;}
.x8e{left:143.347943pt;}
.x28{left:148.947407pt;}
.x1e{left:150.067940pt;}
.x90{left:153.907938pt;}
.x16{left:156.947937pt;}
.x93{left:159.027520pt;}
.x92{left:163.507200pt;}
.x36{left:169.907399pt;}
.x9{left:178.387395pt;}
.x94{left:180.947928pt;}
.x74{left:185.267926pt;}
.x14{left:187.987925pt;}
.x43{left:191.027390pt;}
.x78{left:200.787920pt;}
.xa4{left:203.347385pt;}
.x31{left:209.107200pt;}
.x15{left:211.667915pt;}
.x81{left:214.067914pt;}
.x47{left:218.547913pt;}
.x55{left:222.547911pt;}
.x8d{left:224.627910pt;}
.x56{left:226.227910pt;}
.x45{left:227.987909pt;}
.x54{left:230.387908pt;}
.x3d{left:232.467907pt;}
.x7e{left:242.387903pt;}
.xa3{left:244.307902pt;}
.x48{left:247.027901pt;}
.x97{left:249.107900pt;}
.x99{left:252.147366pt;}
.x46{left:254.067898pt;}
.x44{left:256.307897pt;}
.x53{left:258.387897pt;}
.x95{left:264.147894pt;}
.x96{left:266.227894pt;}
.x7{left:275.667356pt;}
.x80{left:289.427200pt;}
.x37{left:297.907881pt;}
.x75{left:304.787878pt;}
.x32{left:306.707200pt;}
.x85{left:327.827336pt;}
.x57{left:331.187868pt;}
.x2c{left:333.747333pt;}
.x17{left:336.787865pt;}
.x68{left:337.907865pt;}
.xf{left:347.187328pt;}
.x9e{left:350.547200pt;}
.x4{left:368.947200pt;}
.x79{left:395.027842pt;}
.x9a{left:412.947835pt;}
.xa{left:416.787300pt;}
.x9c{left:417.907200pt;}
.x23{left:419.507832pt;}
.x9b{left:439.187824pt;}
.x7d{left:441.747823pt;}
.x6d{left:444.307822pt;}
.x22{left:445.747822pt;}
.x1{left:459.347816pt;}
.x8f{left:474.707810pt;}
.x21{left:476.467809pt;}
.x3b{left:488.307805pt;}
.x86{left:489.587200pt;}
.x9f{left:492.147200pt;}
.x1f{left:493.267803pt;}
.x42{left:495.507802pt;}
.x3f{left:500.627800pt;}
.x24{left:504.307798pt;}
.x20{left:515.667794pt;}
.x40{left:517.587793pt;}
.x9d{left:519.507200pt;}
.x3c{left:527.667789pt;}
.x87{left:528.627200pt;}
.x65{left:569.587772pt;}
.x38{left:576.147770pt;}
.x39{left:587.827765pt;}
.x82{left:599.507760pt;}
.x88{left:610.227200pt;}
.x76{left:612.947755pt;}
.x3e{left:631.187748pt;}
.x89{left:635.987200pt;}
.xa0{left:640.307200pt;}
.x4c{left:642.707743pt;}
.x77{left:644.467742pt;}
.x25{left:646.707741pt;}
.x5d{left:649.427740pt;}
.x5a{left:650.867740pt;}
.x4d{left:651.827739pt;}
.x4f{left:654.067738pt;}
.x7a{left:656.147738pt;}
.x69{left:658.227737pt;}
.x50{left:661.107736pt;}
.x5c{left:663.667735pt;}
.x59{left:666.227734pt;}
.x3a{left:668.307733pt;}
.x4e{left:669.587732pt;}
.x51{left:671.027200pt;}
.x62{left:675.027200pt;}
.x4b{left:676.627729pt;}
.x7b{left:682.387727pt;}
.x6e{left:686.387725pt;}
.x1b{left:703.027719pt;}
.x2f{left:707.187717pt;}
.x49{left:710.547716pt;}
.x33{left:714.707200pt;}
.x1c{left:719.987712pt;}
.x5b{left:722.227711pt;}
.x58{left:736.147706pt;}
.x4a{left:737.107705pt;}
.x1a{left:742.707703pt;}
.x8a{left:747.827200pt;}
.x29{left:769.907692pt;}
.x5f{left:775.027690pt;}
.x18{left:780.467688pt;}
.x6f{left:782.067200pt;}
.x26{left:787.667685pt;}
.x66{left:792.147683pt;}
.x19{left:800.147680pt;}
.x8b{left:834.067200pt;}
.x60{left:847.827661pt;}
.x70{left:857.427200pt;}
.x52{left:861.747200pt;}
.xa5{left:906.707200pt;}
.x6a{left:908.947200pt;}
.x72{left:914.707634pt;}
.xa1{left:916.467200pt;}
.x34{left:918.227200pt;}
.xa6{left:925.587200pt;}
.x35{left:928.147200pt;}
.x1d{left:930.867628pt;}
.x63{left:934.227200pt;}
.x71{left:939.027200pt;}
.x6b{left:971.187200pt;}
.x61{left:1020.627592pt;}
}




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