
    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_0a0dca6211b59e8670bc4594.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.012000;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_45d1111b8d151c38b3bfdb5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_dbaeecc18989c3150135c7e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2c80f5f329ca6438d4ca0173.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_038275fe5a2dd46289a0d352.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_427cb4765a2e18582c837f72.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_f7a9a41082677c6f6b281666.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_7a00c659ba77d1d7845b42ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.079102;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:18.000000px;}
.ls4{letter-spacing:22.500000px;}
.ls2{letter-spacing:31.500000px;}
.ls5{letter-spacing:36.000000px;}
.ls1{letter-spacing:64.511718px;}
.ls3{letter-spacing:84.023438px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-51.986013px;}
.wse{word-spacing:-48.000002px;}
.ws1{word-spacing:-47.951861px;}
.ws22{word-spacing:-45.000000px;}
.ws24{word-spacing:-41.999999px;}
.ws2{word-spacing:-41.438096px;}
.ws3{word-spacing:-41.437467px;}
.ws4{word-spacing:-41.436432px;}
.ws61{word-spacing:-40.605468px;}
.ws46{word-spacing:-39.533205px;}
.ws5d{word-spacing:-39.000002px;}
.wsc{word-spacing:-37.710935px;}
.wsd{word-spacing:-37.708305px;}
.ws86{word-spacing:-36.000000px;}
.ws6{word-spacing:-33.137785px;}
.ws5{word-spacing:-33.137782px;}
.ws2d{word-spacing:-27.000000px;}
.ws57{word-spacing:-26.408197px;}
.ws54{word-spacing:-26.405569px;}
.ws50{word-spacing:-26.397787px;}
.ws7{word-spacing:-24.840024px;}
.ws8{word-spacing:-24.840002px;}
.ws37{word-spacing:-24.017583px;}
.ws34{word-spacing:-22.605503px;}
.ws18{word-spacing:-22.605492px;}
.ws56{word-spacing:-22.605490px;}
.ws71{word-spacing:-22.605483px;}
.ws89{word-spacing:-22.605482px;}
.ws29{word-spacing:-22.605480px;}
.ws6a{word-spacing:-22.605472px;}
.ws2b{word-spacing:-22.605471px;}
.ws10{word-spacing:-22.605470px;}
.ws16{word-spacing:-22.605468px;}
.ws47{word-spacing:-22.605467px;}
.ws2f{word-spacing:-22.605458px;}
.ws1c{word-spacing:-22.605457px;}
.ws6b{word-spacing:-22.605446px;}
.ws40{word-spacing:-22.605435px;}
.ws23{word-spacing:-22.500000px;}
.ws5e{word-spacing:-21.037787px;}
.ws36{word-spacing:-21.037785px;}
.ws4e{word-spacing:-21.035156px;}
.ws27{word-spacing:-21.035153px;}
.ws5b{word-spacing:-21.032520px;}
.ws5f{word-spacing:-21.029961px;}
.ws60{word-spacing:-21.027324px;}
.ws2a{word-spacing:-21.023435px;}
.ws48{word-spacing:-19.518960px;}
.ws4b{word-spacing:-19.518938px;}
.ws4f{word-spacing:-19.518865px;}
.ws38{word-spacing:-19.518862px;}
.ws59{word-spacing:-19.518861px;}
.ws5c{word-spacing:-19.517580px;}
.ws33{word-spacing:-18.105503px;}
.ws2e{word-spacing:-18.105491px;}
.ws31{word-spacing:-18.105480px;}
.ws8b{word-spacing:-18.105471px;}
.ws32{word-spacing:-18.105469px;}
.ws1b{word-spacing:-18.105457px;}
.ws35{word-spacing:-18.105446px;}
.ws4d{word-spacing:-18.105435px;}
.ws85{word-spacing:-18.000034px;}
.ws88{word-spacing:-18.000023px;}
.ws83{word-spacing:-18.000013px;}
.ws8a{word-spacing:-18.000011px;}
.ws28{word-spacing:-18.000003px;}
.ws52{word-spacing:-18.000000px;}
.ws5a{word-spacing:-17.999998px;}
.ws87{word-spacing:-17.999989px;}
.wsb{word-spacing:-16.535159px;}
.wsa{word-spacing:-16.532537px;}
.ws9{word-spacing:-16.523440px;}
.ws1a{word-spacing:-13.605492px;}
.ws53{word-spacing:-13.605481px;}
.wsf{word-spacing:-13.605480px;}
.ws13{word-spacing:-13.605470px;}
.ws1e{word-spacing:-13.605469px;}
.ws49{word-spacing:-13.605458px;}
.ws1d{word-spacing:-13.605457px;}
.ws51{word-spacing:-13.605446px;}
.ws69{word-spacing:-13.500013px;}
.ws66{word-spacing:-13.500000px;}
.ws81{word-spacing:-13.499991px;}
.ws3d{word-spacing:-9.105491px;}
.ws12{word-spacing:-9.105480px;}
.ws11{word-spacing:-9.105469px;}
.ws4a{word-spacing:-9.105458px;}
.ws43{word-spacing:-9.105457px;}
.ws42{word-spacing:-9.105446px;}
.ws73{word-spacing:-9.000013px;}
.ws58{word-spacing:-9.000000px;}
.ws6c{word-spacing:-8.999988px;}
.ws68{word-spacing:-4.605502px;}
.ws4c{word-spacing:-4.605492px;}
.ws1f{word-spacing:-4.605480px;}
.ws30{word-spacing:-4.605469px;}
.ws3c{word-spacing:-4.605458px;}
.ws41{word-spacing:-4.605446px;}
.ws6e{word-spacing:-4.500013px;}
.ws78{word-spacing:-4.499999px;}
.ws45{word-spacing:-0.105492px;}
.ws3a{word-spacing:-0.105480px;}
.ws15{word-spacing:-0.105469px;}
.ws20{word-spacing:-0.105447px;}
.ws19{word-spacing:-0.096000px;}
.ws21{word-spacing:0.000000px;}
.ws3e{word-spacing:4.394520px;}
.ws14{word-spacing:4.394531px;}
.ws55{word-spacing:4.394553px;}
.ws82{word-spacing:4.499967px;}
.ws67{word-spacing:4.500000px;}
.ws39{word-spacing:8.894520px;}
.ws62{word-spacing:8.894529px;}
.ws7d{word-spacing:8.894530px;}
.ws3b{word-spacing:8.894532px;}
.ws44{word-spacing:8.894542px;}
.ws72{word-spacing:8.999967px;}
.ws7a{word-spacing:8.999987px;}
.ws7b{word-spacing:9.000000px;}
.ws84{word-spacing:13.394520px;}
.ws70{word-spacing:13.394531px;}
.ws7c{word-spacing:13.394534px;}
.ws79{word-spacing:13.500000px;}
.ws6d{word-spacing:18.000000px;}
.ws6f{word-spacing:18.000009px;}
.ws17{word-spacing:21.592545px;}
.ws3f{word-spacing:31.394520px;}
.ws77{word-spacing:40.394532px;}
.ws2c{word-spacing:41.906242px;}
.ws26{word-spacing:49.394532px;}
.ws63{word-spacing:67.394551px;}
.ws74{word-spacing:71.894533px;}
.ws7e{word-spacing:71.894551px;}
.ws65{word-spacing:89.894534px;}
.ws76{word-spacing:94.394531px;}
.ws80{word-spacing:94.394534px;}
.ws25{word-spacing:111.061201px;}
.ws64{word-spacing:247.394533px;}
.ws75{word-spacing:251.894533px;}
.ws7f{word-spacing:256.394533px;}
._0{margin-left:-13.756595px;}
._5{margin-left:-9.945960px;}
._6{margin-left:-8.714436px;}
._4{margin-left:-6.911172px;}
._7{margin-left:-5.270675px;}
._2{margin-left:-4.108862px;}
._1{margin-left:-2.477736px;}
._3{margin-left:-1.151649px;}
._1b{width:17.027040px;}
._d{width:18.243219px;}
._9{width:22.500000px;}
._a{width:26.999991px;}
._8{width:31.500000px;}
._b{width:36.000003px;}
._1d{width:38.935541px;}
._1a{width:40.500000px;}
._19{width:42.222654px;}
._e{width:45.000002px;}
._c{width:49.500001px;}
._1e{width:54.000000px;}
._22{width:58.500002px;}
._14{width:68.203122px;}
._11{width:70.453120px;}
._21{width:76.500020px;}
._1c{width:84.023438px;}
._f{width:90.000000px;}
._15{width:104.343795px;}
._1f{width:112.500002px;}
._23{width:117.000002px;}
._20{width:135.000000px;}
._24{width:139.500000px;}
._13{width:143.850884px;}
._10{width:159.548210px;}
._18{width:168.328122px;}
._17{width:186.117196px;}
._12{width:190.546965px;}
._16{width:212.735705px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,5,5);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:78.000003px;}
.fs8{font-size:83.999997px;}
.fs7{font-size:90.000000px;}
.fs3{font-size:96.000003px;}
.fs9{font-size:108.000000px;}
.fs2{font-size:119.999997px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y180{bottom:11.768543px;}
.y19d{bottom:11.768544px;}
.y177{bottom:11.768549px;}
.y173{bottom:11.768552px;}
.y179{bottom:11.768554px;}
.y191{bottom:11.768558px;}
.y170{bottom:12.092286px;}
.y239{bottom:14.244141px;}
.y1f5{bottom:32.241204px;}
.y1b5{bottom:32.241208px;}
.y1b0{bottom:32.241211px;}
.y15f{bottom:32.242676px;}
.y1b8{bottom:32.244134px;}
.y1fe{bottom:32.244140px;}
.y1b2{bottom:32.244141px;}
.y232{bottom:32.244149px;}
.y1f9{bottom:32.244154px;}
.y17f{bottom:32.466788px;}
.y19c{bottom:32.466789px;}
.y176{bottom:32.466794px;}
.y172{bottom:32.466797px;}
.y190{bottom:32.466802px;}
.y196{bottom:34.192377px;}
.y18f{bottom:53.165032px;}
.y19b{bottom:53.165034px;}
.y175{bottom:53.165039px;}
.y195{bottom:54.890622px;}
.y1f4{bottom:63.287109px;}
.y1b4{bottom:63.290039px;}
.y1f8{bottom:63.292969px;}
.yd{bottom:65.148925px;}
.y1a7{bottom:65.150391px;}
.y18e{bottom:73.863277px;}
.y19a{bottom:73.863279px;}
.y194{bottom:75.588867px;}
.y26d{bottom:77.916033px;}
.y29{bottom:77.917503px;}
.y131{bottom:77.918958px;}
.y9{bottom:81.840975px;}
.y26e{bottom:84.120118px;}
.yc{bottom:84.122315px;}
.ycf{bottom:84.123047px;}
.y23a{bottom:94.031252px;}
.y199{bottom:94.561524px;}
.yb5{bottom:98.179688px;}
.y1ec{bottom:100.608398px;}
.yce{bottom:100.687492px;}
.y174{bottom:100.967289px;}
.yb{bottom:103.095703px;}
.y14f{bottom:104.816888px;}
.ye7{bottom:105.640133px;}
.y119{bottom:107.973637px;}
.y288{bottom:109.195312px;}
.y5f{bottom:110.031743px;}
.y111{bottom:110.364262px;}
.y101{bottom:111.227048px;}
.y2b8{bottom:111.228517px;}
.y238{bottom:112.031252px;}
.y17e{bottom:115.259753px;}
.y18d{bottom:115.259767px;}
.y99{bottom:117.073238px;}
.y214{bottom:119.170898px;}
.y1d1{bottom:119.408197px;}
.y171{bottom:121.665531px;}
.y2a3{bottom:121.798823px;}
.y228{bottom:125.249992px;}
.y254{bottom:126.093751px;}
.yb4{bottom:129.227048px;}
.y7c{bottom:131.450677px;}
.y1eb{bottom:131.657227px;}
.y1a6{bottom:132.670898px;}
.y14e{bottom:135.864262px;}
.y18c{bottom:135.958012px;}
.ye6{bottom:136.687492px;}
.y118{bottom:139.020998px;}
.y2e3{bottom:140.466803px;}
.y5e{bottom:141.079102px;}
.y110{bottom:141.413092px;}
.y100{bottom:142.274408px;}
.y2b7{bottom:142.277348px;}
.y2cf{bottom:142.939447px;}
.y28{bottom:144.339847px;}
.y130{bottom:145.740228px;}
.y1ba{bottom:147.240227px;}
.ycd{bottom:149.734867px;}
.y213{bottom:150.257806px;}
.y2a2{bottom:152.844727px;}
.y200{bottom:156.128908px;}
.y227{bottom:156.295898px;}
.y18b{bottom:156.656242px;}
.y253{bottom:157.218742px;}
.y287{bottom:158.241217px;}
.yb3{bottom:160.274408px;}
.y236{bottom:161.080074px;}
.y7b{bottom:162.498053px;}
.y1a5{bottom:163.719727px;}
.y8{bottom:165.468990px;}
.y98{bottom:166.120612px;}
.y14d{bottom:166.911623px;}
.ye5{bottom:167.734867px;}
.y1d0{bottom:168.457028px;}
.y117{bottom:170.068358px;}
.y2e2{bottom:171.512692px;}
.y5d{bottom:172.126463px;}
.y10f{bottom:172.458983px;}
.yff{bottom:173.321783px;}
.y2b6{bottom:173.323238px;}
.y2ce{bottom:173.988278px;}
.y27{bottom:175.387207px;}
.y16f{bottom:179.937012px;}
.y1ea{bottom:180.703117px;}
.ycc{bottom:180.782227px;}
.y212{bottom:181.385738px;}
.y2a1{bottom:183.890617px;}
.y201{bottom:187.174806px;}
.y226{bottom:187.344727px;}
.y252{bottom:188.267572px;}
.yb2{bottom:191.321783px;}
.y237{bottom:192.128901px;}
.y7a{bottom:193.584961px;}
.y26c{bottom:194.343742px;}
.y1a4{bottom:194.765617px;}
.y97{bottom:197.167973px;}
.y14c{bottom:197.958983px;}
.y17d{bottom:198.052733px;}
.ye4{bottom:198.782227px;}
.y1cf{bottom:199.502933px;}
.y116{bottom:201.115717px;}
.y5c{bottom:203.173823px;}
.y10e{bottom:203.507812px;}
.yfe{bottom:204.369142px;}
.y26{bottom:206.434567px;}
.y286{bottom:207.287107px;}
.y1e9{bottom:211.790041px;}
.ycb{bottom:211.829588px;}
.y211{bottom:212.472661px;}
.y1b7{bottom:214.289064px;}
.y2a0{bottom:214.939447px;}
.y18a{bottom:218.750977px;}
.y251{bottom:219.313477px;}
.y2e1{bottom:220.558598px;}
.yb1{bottom:222.369142px;}
.y2cd{bottom:223.034183px;}
.y79{bottom:224.750971px;}
.y26b{bottom:225.392573px;}
.y1a3{bottom:225.814447px;}
.y96{bottom:228.215332px;}
.y14b{bottom:229.006342px;}
.ye3{bottom:229.829588px;}
.y1ce{bottom:230.551762px;}
.y115{bottom:232.163092px;}
.y5b{bottom:234.221198px;}
.y10d{bottom:234.553717px;}
.yfd{bottom:235.416503px;}
.y2b5{bottom:235.417973px;}
.y25{bottom:237.481927px;}
.y285{bottom:238.335938px;}
.y189{bottom:239.449222px;}
.yca{bottom:242.876947px;}
.y1e8{bottom:242.917973px;}
.y1b9{bottom:245.337891px;}
.y250{bottom:250.362307px;}
.y2e0{bottom:251.607428px;}
.y16e{bottom:252.663573px;}
.yb0{bottom:253.416503px;}
.y2cc{bottom:254.080073px;}
.y1fd{bottom:254.220708px;}
.y225{bottom:254.390617px;}
.y78{bottom:255.877448px;}
.y26a{bottom:256.438478px;}
.y1a2{bottom:256.860353px;}
.y235{bottom:259.174806px;}
.y95{bottom:259.262693px;}
.y14a{bottom:260.053717px;}
.ye2{bottom:260.876947px;}
.y114{bottom:263.210453px;}
.y29f{bottom:263.988278px;}
.y5a{bottom:265.268558px;}
.y10c{bottom:265.602533px;}
.yfc{bottom:266.463863px;}
.y24{bottom:268.529302px;}
.y7{bottom:268.752945px;}
.y284{bottom:269.384767px;}
.yc9{bottom:273.924323px;}
.y1e7{bottom:273.963863px;}
.y1cd{bottom:279.597652px;}
.y17c{bottom:280.845696px;}
.y188{bottom:280.845697px;}
.y24f{bottom:281.408197px;}
.yaf{bottom:284.463863px;}
.y2b4{bottom:284.466803px;}
.y1ff{bottom:285.269537px;}
.y224{bottom:285.439447px;}
.y77{bottom:286.964356px;}
.y269{bottom:287.487307px;}
.y1a1{bottom:287.909183px;}
.y94{bottom:290.310052px;}
.y149{bottom:291.101077px;}
.ye1{bottom:291.924323px;}
.y113{bottom:294.257812px;}
.y29e{bottom:295.034183px;}
.y59{bottom:296.315918px;}
.y10b{bottom:296.648438px;}
.yfb{bottom:297.511238px;}
.y23{bottom:299.576662px;}
.y283{bottom:300.430657px;}
.y2df{bottom:300.656242px;}
.y187{bottom:301.543942px;}
.y16d{bottom:303.111323px;}
.y2cb{bottom:303.128902px;}
.yc8{bottom:304.971683px;}
.y1e6{bottom:305.050786px;}
.y3f{bottom:309.900881px;}
.y1cc{bottom:310.646483px;}
.y1b3{bottom:312.383784px;}
.y24e{bottom:312.457028px;}
.yae{bottom:315.511238px;}
.y2b3{bottom:315.512693px;}
.y223{bottom:316.526371px;}
.y76{bottom:318.130366px;}
.y1a0{bottom:318.955073px;}
.y93{bottom:321.357428px;}
.y148{bottom:322.148438px;}
.y186{bottom:322.242186px;}
.ye0{bottom:322.971683px;}
.y29d{bottom:326.080073px;}
.y234{bottom:326.220707px;}
.y10a{bottom:327.697268px;}
.y6{bottom:327.774905px;}
.y22{bottom:330.624023px;}
.y282{bottom:331.476563px;}
.y2de{bottom:331.702148px;}
.y16c{bottom:334.158698px;}
.y2ca{bottom:334.177733px;}
.yc7{bottom:336.019042px;}
.y1e5{bottom:336.178717px;}
.y12f{bottom:336.430657px;}
.y268{bottom:336.533198px;}
.y1cb{bottom:341.692387px;}
.y1b6{bottom:343.429682px;}
.y24d{bottom:343.502932px;}
.y112{bottom:345.678220px;}
.yb8{bottom:346.558598px;}
.y222{bottom:347.651363px;}
.y75{bottom:349.256842px;}
.y19f{bottom:350.003903px;}
.y1fc{bottom:352.318356px;}
.y92{bottom:352.404788px;}
.y147{bottom:353.195798px;}
.ydf{bottom:354.019042px;}
.y29c{bottom:357.128902px;}
.y58{bottom:358.410638px;}
.y21{bottom:361.671383px;}
.y281{bottom:362.525392px;}
.y185{bottom:363.638671px;}
.yad{bottom:364.558598px;}
.y162{bottom:364.810542px;}
.y16b{bottom:365.206058px;}
.y2c9{bottom:365.223637px;}
.y109{bottom:367.042961px;}
.yc6{bottom:367.066402px;}
.y1e4{bottom:367.265626px;}
.y267{bottom:367.582028px;}
.y1ca{bottom:372.741217px;}
.y24c{bottom:374.551762px;}
.yfa{bottom:377.605957px;}
.y2b2{bottom:377.607428px;}
.y210{bottom:377.692387px;}
.y221{bottom:378.700193px;}
.y74{bottom:380.304202px;}
.y2dd{bottom:380.748053px;}
.y3e{bottom:382.344731px;}
.y91{bottom:383.452148px;}
.y146{bottom:384.243157px;}
.y17b{bottom:384.336908px;}
.y184{bottom:384.336913px;}
.yde{bottom:385.066402px;}
.y12e{bottom:385.478033px;}
.y29b{bottom:388.177733px;}
.y57{bottom:389.458012px;}
.y20{bottom:392.718742px;}
.y231{bottom:393.269529px;}
.yac{bottom:395.605957px;}
.y16a{bottom:396.253418px;}
.y2c8{bottom:396.269528px;}
.yc5{bottom:398.113763px;}
.y1e3{bottom:398.390617px;}
.y266{bottom:398.627933px;}
.y108{bottom:400.892573px;}
.y19e{bottom:401.425781px;}
.y183{bottom:405.035155px;}
.y24b{bottom:405.597652px;}
.yf9{bottom:408.653318px;}
.y2b1{bottom:408.656242px;}
.y20f{bottom:408.741217px;}
.y5{bottom:408.971295px;}
.y220{bottom:409.787116px;}
.y1b1{bottom:410.478511px;}
.y73{bottom:411.351563px;}
.y280{bottom:411.574223px;}
.y2dc{bottom:411.796867px;}
.y90{bottom:414.499507px;}
.y145{bottom:415.290533px;}
.ydd{bottom:416.113763px;}
.y12d{bottom:416.525392px;}
.y29a{bottom:419.223637px;}
.y1fb{bottom:419.364261px;}
.y56{bottom:420.505373px;}
.y1c9{bottom:421.787107px;}
.y1f{bottom:423.766117px;}
.y233{bottom:424.318356px;}
.y182{bottom:425.733397px;}
.yab{bottom:426.653318px;}
.y2c7{bottom:427.318358px;}
.yc4{bottom:429.161137px;}
.y1e2{bottom:429.439447px;}
.y265{bottom:429.676762px;}
.y161{bottom:431.857917px;}
.y107{bottom:431.938478px;}
.y24a{bottom:436.646483px;}
.yf8{bottom:439.700677px;}
.y2b0{bottom:439.702148px;}
.y2db{bottom:442.845698px;}
.y72{bottom:444.772706px;}
.y4{bottom:445.331370px;}
.y3d{bottom:447.240233px;}
.y12c{bottom:447.572752px;}
.y169{bottom:447.673826px;}
.y299{bottom:450.269528px;}
.y55{bottom:451.552733px;}
.y1c8{bottom:452.835938px;}
.y1e{bottom:454.813477px;}
.yaa{bottom:457.700677px;}
.yc3{bottom:460.208498px;}
.y141{bottom:460.397468px;}
.y1e1{bottom:460.485353px;}
.y27f{bottom:460.620113px;}
.y106{bottom:462.987307px;}
.y8f{bottom:463.546867px;}
.ydc{bottom:465.161137px;}
.y144{bottom:466.710940px;}
.y249{bottom:467.692387px;}
.yf7{bottom:470.748053px;}
.y198{bottom:471.202154px;}
.y20e{bottom:475.787107px;}
.y2c6{bottom:476.367187px;}
.y21f{bottom:476.912108px;}
.y3c{bottom:478.287968px;}
.y12b{bottom:478.620113px;}
.y1af{bottom:478.652346px;}
.y264{bottom:478.722652px;}
.y298{bottom:481.318358px;}
.y3{bottom:481.691355px;}
.y54{bottom:482.600092px;}
.y1c7{bottom:483.881842px;}
.y1f7{bottom:486.410148px;}
.ya9{bottom:488.748052px;}
.y22f{bottom:491.364264px;}
.y140{bottom:491.446283px;}
.y1e0{bottom:491.534182px;}
.y27e{bottom:491.666018px;}
.y2da{bottom:491.891602px;}
.y105{bottom:494.033198px;}
.y8e{bottom:494.594242px;}
.ydb{bottom:496.208498px;}
.y71{bottom:496.620848px;}
.y248{bottom:498.741217px;}
.y160{bottom:498.905277px;}
.y168{bottom:499.523438px;}
.yf6{bottom:501.795412px;}
.y2af{bottom:501.796867px;}
.y20d{bottom:506.835938px;}
.y1d{bottom:506.915039px;}
.y2c5{bottom:507.413092px;}
.y21e{bottom:507.960938px;}
.yc2{bottom:509.255858px;}
.y12a{bottom:509.667488px;}
.y263{bottom:509.771482px;}
.y3b{bottom:511.709111px;}
.y297{bottom:512.367188px;}
.y53{bottom:513.647467px;}
.y1fa{bottom:517.458977px;}
.ya8{bottom:519.795412px;}
.y230{bottom:522.410161px;}
.y13f{bottom:522.492188px;}
.y1df{bottom:522.580073px;}
.y27d{bottom:522.714848px;}
.y2d9{bottom:522.937492px;}
.y104{bottom:525.082027px;}
.y8d{bottom:525.641602px;}
.yda{bottom:527.255858px;}
.y70{bottom:527.668208px;}
.y247{bottom:529.787107px;}
.y167{bottom:530.569342px;}
.yf5{bottom:532.842773px;}
.y1c6{bottom:532.968751px;}
.y2c4{bottom:538.458982px;}
.yc1{bottom:540.303218px;}
.y129{bottom:540.714848px;}
.y262{bottom:540.817387px;}
.y296{bottom:543.413092px;}
.y52{bottom:544.694827px;}
.ya7{bottom:550.842773px;}
.y2ae{bottom:550.845698px;}
.y13e{bottom:553.541018px;}
.y1de{bottom:553.628902px;}
.y27c{bottom:553.763678px;}
.y197{bottom:553.995123px;}
.y8c{bottom:556.688963px;}
.y103{bottom:557.315913px;}
.yd9{bottom:558.303218px;}
.y6f{bottom:558.715582px;}
.y246{bottom:560.835938px;}
.y166{bottom:561.618158px;}
.yf4{bottom:563.890133px;}
.y15e{bottom:567.077637px;}
.yc0{bottom:571.350592px;}
.y128{bottom:571.762207px;}
.y261{bottom:571.866217px;}
.y2d8{bottom:571.986322px;}
.y20c{bottom:573.881842px;}
.y1c{bottom:574.388678px;}
.y295{bottom:574.458982px;}
.y21d{bottom:575.006842px;}
.y51{bottom:575.742188px;}
.y3a{bottom:576.604613px;}
.y1ae{bottom:579.064448px;}
.ya6{bottom:581.890133px;}
.y2ad{bottom:581.891602px;}
.y1c5{bottom:582.096683px;}
.y1f3{bottom:584.507819px;}
.y13d{bottom:584.586908px;}
.y1dd{bottom:584.674808px;}
.y27b{bottom:584.809568px;}
.y2c3{bottom:587.507812px;}
.y8b{bottom:587.736322px;}
.yd8{bottom:589.350592px;}
.y22e{bottom:589.458984px;}
.y6e{bottom:589.762943px;}
.y193{bottom:591.568361px;}
.y245{bottom:591.881842px;}
.y102{bottom:592.136711px;}
.y165{bottom:592.664062px;}
.yf3{bottom:594.937492px;}
.ybf{bottom:602.397952px;}
.y127{bottom:602.809568px;}
.y260{bottom:602.912107px;}
.y2d7{bottom:603.035152px;}
.y20b{bottom:604.930658px;}
.y294{bottom:605.507812px;}
.y21c{bottom:606.055658px;}
.y50{bottom:606.789548px;}
.y39{bottom:607.651973px;}
.ya5{bottom:612.937492px;}
.y1c4{bottom:613.142573px;}
.y1f6{bottom:615.553716px;}
.y13c{bottom:615.635738px;}
.y1dc{bottom:615.723637px;}
.y27a{bottom:615.855473px;}
.y2c2{bottom:618.556643px;}
.y8a{bottom:618.783698px;}
.yd7{bottom:620.397953px;}
.y22d{bottom:620.507811px;}
.y6d{bottom:620.810303px;}
.y244{bottom:622.930658px;}
.y164{bottom:623.712893px;}
.yf2{bottom:625.984868px;}
.y1ad{bottom:628.113277px;}
.y1b{bottom:629.841794px;}
.ybe{bottom:633.445312px;}
.y25f{bottom:633.960938px;}
.y20a{bottom:635.976562px;}
.y4f{bottom:637.836908px;}
.y38{bottom:643.446901px;}
.ya4{bottom:643.984868px;}
.y2ac{bottom:643.986322px;}
.y13b{bottom:646.681642px;}
.y1db{bottom:646.810546px;}
.y279{bottom:646.904303px;}
.y2c1{bottom:649.602533px;}
.y89{bottom:649.831058px;}
.y126{bottom:651.856928px;}
.y6c{bottom:651.857663px;}
.y2d6{bottom:652.081058px;}
.y243{bottom:653.976562px;}
.y192{bottom:655.388673px;}
.yf1{bottom:657.032228px;}
.y1ac{bottom:659.162107px;}
.y293{bottom:661.678713px;}
.y1c3{bottom:662.191402px;}
.ybd{bottom:664.492673px;}
.y2{bottom:664.967354px;}
.y209{bottom:667.025392px;}
.y15d{bottom:667.492673px;}
.y4e{bottom:668.884282px;}
.yd6{bottom:670.631836px;}
.y21b{bottom:673.101562px;}
.ya3{bottom:675.032228px;}
.y2ab{bottom:675.035152px;}
.y13a{bottom:677.730473px;}
.y163{bottom:679.880853px;}
.y2c0{bottom:680.648438px;}
.y88{bottom:680.878418px;}
.y1f2{bottom:682.599601px;}
.y6b{bottom:682.905022px;}
.y125{bottom:682.905758px;}
.y25e{bottom:683.006842px;}
.y2d5{bottom:683.126948px;}
.y242{bottom:685.025392px;}
.y1a{bottom:685.381342px;}
.yf0{bottom:688.079588px;}
.y22c{bottom:688.678716px;}
.y1ab{bottom:690.208012px;}
.y181{bottom:692.961915px;}
.ybc{bottom:695.540033px;}
.y1da{bottom:695.935552px;}
.y278{bottom:695.953118px;}
.y208{bottom:698.071283px;}
.y4d{bottom:699.931642px;}
.y21a{bottom:704.150392px;}
.ya2{bottom:706.079588px;}
.y2aa{bottom:706.081058px;}
.y139{bottom:711.058595px;}
.y37{bottom:711.143182px;}
.y1c2{bottom:711.237308px;}
.y87{bottom:711.925777px;}
.y6a{bottom:713.952398px;}
.y124{bottom:713.953118px;}
.y2d4{bottom:714.175777px;}
.y241{bottom:716.112301px;}
.y19{bottom:716.428717px;}
.y15c{bottom:716.540033px;}
.yef{bottom:719.126948px;}
.yd5{bottom:724.079588px;}
.ybb{bottom:726.587408px;}
.y1d9{bottom:726.984367px;}
.y277{bottom:726.999022px;}
.y207{bottom:729.120113px;}
.y2bf{bottom:729.697268px;}
.y4c{bottom:730.979002px;}
.y25d{bottom:732.055658px;}
.y17a{bottom:734.358405px;}
.y219{bottom:735.196283px;}
.ya1{bottom:737.126948px;}
.y1aa{bottom:741.626951px;}
.y36{bottom:742.190558px;}
.y138{bottom:744.999022px;}
.y123{bottom:745.000492px;}
.y1c1{bottom:747.166996px;}
.y18{bottom:747.476077px;}
.y15b{bottom:747.587408px;}
.yee{bottom:750.174322px;}
.y292{bottom:750.175777px;}
.y1f1{bottom:750.773432px;}
.y1{bottom:753.269355px;}
.yd4{bottom:755.126948px;}
.yba{bottom:757.634768px;}
.y276{bottom:758.044928px;}
.y2be{bottom:760.746098px;}
.y86{bottom:760.973138px;}
.y4b{bottom:762.026363px;}
.y69{bottom:762.999757px;}
.y25c{bottom:763.101562px;}
.y2d3{bottom:763.224608px;}
.y240{bottom:765.237308px;}
.ya0{bottom:768.174322px;}
.y2a9{bottom:768.175777px;}
.y35{bottom:773.237917px;}
.y1d8{bottom:776.030273px;}
.y137{bottom:776.046383px;}
.y122{bottom:776.047853px;}
.y17{bottom:778.523438px;}
.y15a{bottom:778.634768px;}
.yed{bottom:781.221683px;}
.y291{bottom:781.224608px;}
.yd3{bottom:786.174322px;}
.y22b{bottom:789.093742px;}
.y85{bottom:792.020512px;}
.y4a{bottom:793.073738px;}
.y68{bottom:794.047118px;}
.y25b{bottom:794.150392px;}
.y2d2{bottom:794.270512px;}
.y1a9{bottom:795.849610px;}
.y206{bottom:796.207036px;}
.y23f{bottom:796.286137px;}
.y9f{bottom:799.221683px;}
.y2a8{bottom:799.224608px;}
.y218{bottom:802.245113px;}
.y34{bottom:804.285278px;}
.y121{bottom:807.095213px;}
.yb9{bottom:807.868651px;}
.y16{bottom:809.570798px;}
.y159{bottom:809.682127px;}
.y2bd{bottom:809.791988px;}
.y290{bottom:812.270512px;}
.y1c0{bottom:814.215816px;}
.yd2{bottom:817.221683px;}
.y275{bottom:820.142573px;}
.y84{bottom:823.067873px;}
.y49{bottom:824.121098px;}
.y67{bottom:825.094478px;}
.y25a{bottom:825.196283px;}
.y2d1{bottom:825.316402px;}
.y136{bottom:827.466791px;}
.y9e{bottom:830.269043px;}
.y2a7{bottom:830.270512px;}
.y217{bottom:833.291018px;}
.y33{bottom:835.332638px;}
.y120{bottom:838.142573px;}
.y15{bottom:840.618158px;}
.y158{bottom:840.729488px;}
.y2bc{bottom:840.837893px;}
.y28f{bottom:843.316402px;}
.y205{bottom:845.332027px;}
.yd1{bottom:848.269043px;}
.y1f0{bottom:851.188477px;}
.y83{bottom:854.115233px;}
.y48{bottom:855.168457px;}
.y66{bottom:856.141853px;}
.y259{bottom:856.245113px;}
.y9d{bottom:861.316402px;}
.y1a8{bottom:863.821293px;}
.y32{bottom:866.379997px;}
.y22a{bottom:869.188477px;}
.y11f{bottom:869.189948px;}
.y14{bottom:871.665532px;}
.y157{bottom:871.776862px;}
.y2bb{bottom:871.886723px;}
.y1d7{bottom:874.124992px;}
.y28e{bottom:874.365232px;}
.y204{bottom:876.380858px;}
.yd0{bottom:879.316402px;}
.y1be{bottom:881.261724px;}
.y82{bottom:885.162592px;}
.y47{bottom:886.215817px;}
.yb7{bottom:892.363762px;}
.y2a6{bottom:892.365232px;}
.y23e{bottom:894.380858px;}
.y31{bottom:897.427373px;}
.y1ef{bottom:900.234367px;}
.y11e{bottom:900.237308px;}
.y216{bottom:900.339848px;}
.y13{bottom:902.712892px;}
.y156{bottom:902.824223px;}
.y2ba{bottom:902.935552px;}
.y1d6{bottom:905.173823px;}
.y258{bottom:905.291018px;}
.y28d{bottom:905.414062px;}
.y65{bottom:907.562981px;}
.y135{bottom:910.362308px;}
.y9c{bottom:910.363762px;}
.y1bf{bottom:912.310551px;}
.y81{bottom:916.209967px;}
.y46{bottom:917.263177px;}
.yb6{bottom:923.411137px;}
.y203{bottom:925.426762px;}
.y30{bottom:930.848516px;}
.y1ee{bottom:931.283197px;}
.y11d{bottom:931.284667px;}
.y215{bottom:931.385738px;}
.y12{bottom:933.760252px;}
.y1d5{bottom:936.260746px;}
.y9b{bottom:941.411137px;}
.y2a5{bottom:941.414062px;}
.y80{bottom:947.257327px;}
.y45{bottom:948.310552px;}
.y274{bottom:949.283197px;}
.y229{bottom:951.656246px;}
.y155{bottom:951.871583px;}
.yec{bottom:954.458498px;}
.y28c{bottom:954.459967px;}
.y2b9{bottom:959.103513px;}
.y23d{bottom:961.356445px;}
.y11c{bottom:962.332027px;}
.y11{bottom:964.807613px;}
.y1d4{bottom:967.385738px;}
.y257{bottom:972.339848px;}
.y134{bottom:972.457027px;}
.y64{bottom:972.458498px;}
.y2a4{bottom:972.459967px;}
.y202{bottom:974.475592px;}
.y7f{bottom:978.304688px;}
.y1bc{bottom:979.356445px;}
.y44{bottom:979.357912px;}
.y273{bottom:980.332027px;}
.y154{bottom:982.918942px;}
.yeb{bottom:985.505858px;}
.y11b{bottom:993.379388px;}
.y2f{bottom:995.744019px;}
.y1d3{bottom:998.472656px;}
.y143{bottom:998.551758px;}
.y256{bottom:1003.385742px;}
.y63{bottom:1003.505859px;}
.y1bd{bottom:1010.405272px;}
.y43{bottom:1010.405274px;}
.y272{bottom:1011.377929px;}
.y1ed{bottom:1013.750976px;}
.y153{bottom:1013.966308px;}
.yea{bottom:1016.553222px;}
.y2d0{bottom:1016.554688px;}
.y7e{bottom:1017.327395px;}
.y10{bottom:1025.501954px;}
.y2e{bottom:1026.791382px;}
.y23c{bottom:1028.405272px;}
.y142{bottom:1029.600586px;}
.y255{bottom:1034.472656px;}
.y133{bottom:1034.551758px;}
.y62{bottom:1034.553222px;}
.y28b{bottom:1034.554688px;}
.y42{bottom:1041.452637px;}
.y271{bottom:1042.423829px;}
.y11a{bottom:1044.799805px;}
.y152{bottom:1045.013671px;}
.ye9{bottom:1047.600586px;}
.y2d{bottom:1061.399414px;}
.y61{bottom:1065.600586px;}
.y28a{bottom:1065.603516px;}
.y41{bottom:1072.500000px;}
.y270{bottom:1073.472656px;}
.y7d{bottom:1075.522706px;}
.y151{bottom:1076.059571px;}
.y1bb{bottom:1077.451171px;}
.y1d2{bottom:1078.646484px;}
.ye8{bottom:1078.647950px;}
.y2b{bottom:1081.836804px;}
.yf{bottom:1081.995116px;}
.y23b{bottom:1095.451171px;}
.y132{bottom:1096.646484px;}
.y9a{bottom:1096.647950px;}
.y289{bottom:1096.649414px;}
.y178{bottom:1106.926758px;}
.y2c{bottom:1110.890625px;}
.ye{bottom:1116.492186px;}
.y40{bottom:1119.292968px;}
.y2a{bottom:1122.093750px;}
.y26f{bottom:1124.894531px;}
.y150{bottom:1126.294923px;}
.y60{bottom:1127.695312px;}
.ya{bottom:1144.500000px;}
.h19{height:36.448242px;}
.h16{height:38.172363px;}
.h23{height:49.048828px;}
.hd{height:51.987307px;}
.h17{height:57.146484px;}
.h7{height:58.620119px;}
.h5{height:60.984000px;}
.h11{height:63.949219px;}
.ha{height:64.546875px;}
.hb{height:65.250002px;}
.h1e{height:67.045899px;}
.h15{height:67.047363px;}
.h1f{height:67.048828px;}
.h13{height:69.278323px;}
.h10{height:74.607419px;}
.h14{height:75.304685px;}
.h18{height:77.844726px;}
.hf{height:79.936523px;}
.h4{height:81.312003px;}
.h9{height:85.265628px;}
.hc{height:91.125000px;}
.h12{height:95.923828px;}
.h21{height:98.091796px;}
.h20{height:98.094726px;}
.h22{height:98.097657px;}
.h1c{height:100.268555px;}
.h3{height:101.639997px;}
.h8{height:107.578122px;}
.h6{height:118.500000px;}
.h1d{height:119.241212px;}
.h2{height:121.968000px;}
.he{height:127.898438px;}
.h1{height:132.132005px;}
.h1a{height:409.016595px;}
.h1b{height:450.413085px;}
.h0{height:1263.000000px;}
.w2{width:230.625000px;}
.w4{width:231.750000px;}
.w3{width:232.875000px;}
.w5{width:234.000000px;}
.w6{width:235.125000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1a{left:6.750000px;}
.x1f{left:7.875000px;}
.x16{left:11.250000px;}
.x1d{left:12.375000px;}
.x9{left:97.500000px;}
.x19{left:98.625000px;}
.x22{left:102.747070px;}
.x12{left:106.500000px;}
.x4{left:111.353149px;}
.xc{left:124.500000px;}
.x3{left:127.576779px;}
.x7{left:128.709581px;}
.xe{left:138.000000px;}
.xd{left:151.500000px;}
.xb{left:156.000000px;}
.xf{left:160.500000px;}
.x1{left:172.624238px;}
.x10{left:187.500000px;}
.x13{left:206.976563px;}
.x6{left:258.985360px;}
.x2{left:261.633253px;}
.x17{left:328.125000px;}
.x1e{left:330.375000px;}
.x1b{left:331.500000px;}
.x23{left:332.625000px;}
.x14{left:334.431154px;}
.x15{left:344.129880px;}
.x8{left:347.520383px;}
.x5{left:387.782906px;}
.x18{left:561.000000px;}
.x20{left:562.125000px;}
.x21{left:563.250000px;}
.x1c{left:564.375000px;}
.x24{left:565.500000px;}
.x11{left:775.652734px;}
.xa{left:785.533080px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls4{letter-spacing:20.000000pt;}
.ls2{letter-spacing:28.000000pt;}
.ls5{letter-spacing:32.000000pt;}
.ls1{letter-spacing:57.343750pt;}
.ls3{letter-spacing:74.687500pt;}
.ws0{word-spacing:-46.209789pt;}
.wse{word-spacing:-42.666668pt;}
.ws1{word-spacing:-42.623876pt;}
.ws22{word-spacing:-40.000000pt;}
.ws24{word-spacing:-37.333332pt;}
.ws2{word-spacing:-36.833863pt;}
.ws3{word-spacing:-36.833304pt;}
.ws4{word-spacing:-36.832384pt;}
.ws61{word-spacing:-36.093750pt;}
.ws46{word-spacing:-35.140627pt;}
.ws5d{word-spacing:-34.666668pt;}
.wsc{word-spacing:-33.520831pt;}
.wsd{word-spacing:-33.518493pt;}
.ws86{word-spacing:-32.000000pt;}
.ws6{word-spacing:-29.455809pt;}
.ws5{word-spacing:-29.455806pt;}
.ws2d{word-spacing:-24.000000pt;}
.ws57{word-spacing:-23.473953pt;}
.ws54{word-spacing:-23.471617pt;}
.ws50{word-spacing:-23.464700pt;}
.ws7{word-spacing:-22.080022pt;}
.ws8{word-spacing:-22.080002pt;}
.ws37{word-spacing:-21.348962pt;}
.ws34{word-spacing:-20.093780pt;}
.ws18{word-spacing:-20.093770pt;}
.ws56{word-spacing:-20.093769pt;}
.ws71{word-spacing:-20.093763pt;}
.ws89{word-spacing:-20.093762pt;}
.ws29{word-spacing:-20.093760pt;}
.ws6a{word-spacing:-20.093753pt;}
.ws2b{word-spacing:-20.093752pt;}
.ws10{word-spacing:-20.093751pt;}
.ws16{word-spacing:-20.093750pt;}
.ws47{word-spacing:-20.093748pt;}
.ws2f{word-spacing:-20.093740pt;}
.ws1c{word-spacing:-20.093740pt;}
.ws6b{word-spacing:-20.093730pt;}
.ws40{word-spacing:-20.093720pt;}
.ws23{word-spacing:-20.000000pt;}
.ws5e{word-spacing:-18.700255pt;}
.ws36{word-spacing:-18.700254pt;}
.ws4e{word-spacing:-18.697916pt;}
.ws27{word-spacing:-18.697914pt;}
.ws5b{word-spacing:-18.695573pt;}
.ws5f{word-spacing:-18.693299pt;}
.ws60{word-spacing:-18.690955pt;}
.ws2a{word-spacing:-18.687498pt;}
.ws48{word-spacing:-17.350186pt;}
.ws4b{word-spacing:-17.350167pt;}
.ws4f{word-spacing:-17.350102pt;}
.ws38{word-spacing:-17.350100pt;}
.ws59{word-spacing:-17.350098pt;}
.ws5c{word-spacing:-17.348960pt;}
.ws33{word-spacing:-16.093780pt;}
.ws2e{word-spacing:-16.093770pt;}
.ws31{word-spacing:-16.093760pt;}
.ws8b{word-spacing:-16.093752pt;}
.ws32{word-spacing:-16.093750pt;}
.ws1b{word-spacing:-16.093740pt;}
.ws35{word-spacing:-16.093730pt;}
.ws4d{word-spacing:-16.093720pt;}
.ws85{word-spacing:-16.000030pt;}
.ws88{word-spacing:-16.000020pt;}
.ws83{word-spacing:-16.000011pt;}
.ws8a{word-spacing:-16.000010pt;}
.ws28{word-spacing:-16.000002pt;}
.ws52{word-spacing:-16.000000pt;}
.ws5a{word-spacing:-15.999998pt;}
.ws87{word-spacing:-15.999990pt;}
.wsb{word-spacing:-14.697919pt;}
.wsa{word-spacing:-14.695589pt;}
.ws9{word-spacing:-14.687502pt;}
.ws1a{word-spacing:-12.093771pt;}
.ws53{word-spacing:-12.093761pt;}
.wsf{word-spacing:-12.093760pt;}
.ws13{word-spacing:-12.093751pt;}
.ws1e{word-spacing:-12.093750pt;}
.ws49{word-spacing:-12.093740pt;}
.ws1d{word-spacing:-12.093740pt;}
.ws51{word-spacing:-12.093730pt;}
.ws69{word-spacing:-12.000012pt;}
.ws66{word-spacing:-12.000000pt;}
.ws81{word-spacing:-11.999992pt;}
.ws3d{word-spacing:-8.093770pt;}
.ws12{word-spacing:-8.093760pt;}
.ws11{word-spacing:-8.093750pt;}
.ws4a{word-spacing:-8.093741pt;}
.ws43{word-spacing:-8.093740pt;}
.ws42{word-spacing:-8.093730pt;}
.ws73{word-spacing:-8.000011pt;}
.ws58{word-spacing:-8.000000pt;}
.ws6c{word-spacing:-7.999989pt;}
.ws68{word-spacing:-4.093780pt;}
.ws4c{word-spacing:-4.093770pt;}
.ws1f{word-spacing:-4.093760pt;}
.ws30{word-spacing:-4.093750pt;}
.ws3c{word-spacing:-4.093740pt;}
.ws41{word-spacing:-4.093730pt;}
.ws6e{word-spacing:-4.000011pt;}
.ws78{word-spacing:-3.999999pt;}
.ws45{word-spacing:-0.093770pt;}
.ws3a{word-spacing:-0.093760pt;}
.ws15{word-spacing:-0.093750pt;}
.ws20{word-spacing:-0.093731pt;}
.ws19{word-spacing:-0.085333pt;}
.ws21{word-spacing:0.000000pt;}
.ws3e{word-spacing:3.906240pt;}
.ws14{word-spacing:3.906250pt;}
.ws55{word-spacing:3.906270pt;}
.ws82{word-spacing:3.999971pt;}
.ws67{word-spacing:4.000000pt;}
.ws39{word-spacing:7.906240pt;}
.ws62{word-spacing:7.906248pt;}
.ws7d{word-spacing:7.906249pt;}
.ws3b{word-spacing:7.906250pt;}
.ws44{word-spacing:7.906260pt;}
.ws72{word-spacing:7.999971pt;}
.ws7a{word-spacing:7.999988pt;}
.ws7b{word-spacing:8.000000pt;}
.ws84{word-spacing:11.906240pt;}
.ws70{word-spacing:11.906250pt;}
.ws7c{word-spacing:11.906252pt;}
.ws79{word-spacing:12.000000pt;}
.ws6d{word-spacing:16.000000pt;}
.ws6f{word-spacing:16.000008pt;}
.ws17{word-spacing:19.193373pt;}
.ws3f{word-spacing:27.906240pt;}
.ws77{word-spacing:35.906250pt;}
.ws2c{word-spacing:37.249993pt;}
.ws26{word-spacing:43.906250pt;}
.ws63{word-spacing:59.906268pt;}
.ws74{word-spacing:63.906252pt;}
.ws7e{word-spacing:63.906268pt;}
.ws65{word-spacing:79.906252pt;}
.ws76{word-spacing:83.906250pt;}
.ws80{word-spacing:83.906252pt;}
.ws25{word-spacing:98.721068pt;}
.ws64{word-spacing:219.906252pt;}
.ws75{word-spacing:223.906252pt;}
.ws7f{word-spacing:227.906252pt;}
._0{margin-left:-12.228085pt;}
._5{margin-left:-8.840853pt;}
._6{margin-left:-7.746165pt;}
._4{margin-left:-6.143264pt;}
._7{margin-left:-4.685045pt;}
._2{margin-left:-3.652322pt;}
._1{margin-left:-2.202432pt;}
._3{margin-left:-1.023688pt;}
._1b{width:15.135147pt;}
._d{width:16.216195pt;}
._9{width:20.000000pt;}
._a{width:23.999992pt;}
._8{width:28.000000pt;}
._b{width:32.000002pt;}
._1d{width:34.609370pt;}
._1a{width:36.000000pt;}
._19{width:37.531248pt;}
._e{width:40.000002pt;}
._c{width:44.000001pt;}
._1e{width:48.000000pt;}
._22{width:52.000002pt;}
._14{width:60.624998pt;}
._11{width:62.624996pt;}
._21{width:68.000018pt;}
._1c{width:74.687500pt;}
._f{width:80.000000pt;}
._15{width:92.750040pt;}
._1f{width:100.000002pt;}
._23{width:104.000002pt;}
._20{width:120.000000pt;}
._24{width:124.000000pt;}
._13{width:127.867453pt;}
._10{width:141.820631pt;}
._18{width:149.624997pt;}
._17{width:165.437508pt;}
._12{width:169.375080pt;}
._16{width:189.098404pt;}
.fs5{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.333336pt;}
.fs8{font-size:74.666664pt;}
.fs7{font-size:80.000000pt;}
.fs3{font-size:85.333336pt;}
.fs9{font-size:96.000000pt;}
.fs2{font-size:106.666664pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y180{bottom:10.460927pt;}
.y19d{bottom:10.460928pt;}
.y177{bottom:10.460932pt;}
.y173{bottom:10.460935pt;}
.y179{bottom:10.460937pt;}
.y191{bottom:10.460940pt;}
.y170{bottom:10.748698pt;}
.y239{bottom:12.661459pt;}
.y1f5{bottom:28.658848pt;}
.y1b5{bottom:28.658852pt;}
.y1b0{bottom:28.658855pt;}
.y15f{bottom:28.660156pt;}
.y1b8{bottom:28.661452pt;}
.y1fe{bottom:28.661457pt;}
.y1b2{bottom:28.661459pt;}
.y232{bottom:28.661465pt;}
.y1f9{bottom:28.661471pt;}
.y17f{bottom:28.859367pt;}
.y19c{bottom:28.859368pt;}
.y176{bottom:28.859372pt;}
.y172{bottom:28.859375pt;}
.y190{bottom:28.859380pt;}
.y196{bottom:30.393224pt;}
.y18f{bottom:47.257807pt;}
.y19b{bottom:47.257808pt;}
.y175{bottom:47.257812pt;}
.y195{bottom:48.791664pt;}
.y1f4{bottom:56.255208pt;}
.y1b4{bottom:56.257812pt;}
.y1f8{bottom:56.260417pt;}
.yd{bottom:57.910156pt;}
.y1a7{bottom:57.911459pt;}
.y18e{bottom:65.656247pt;}
.y19a{bottom:65.656248pt;}
.y194{bottom:67.190104pt;}
.y26d{bottom:69.258696pt;}
.y29{bottom:69.260002pt;}
.y131{bottom:69.261296pt;}
.y9{bottom:72.747533pt;}
.y26e{bottom:74.773438pt;}
.yc{bottom:74.775391pt;}
.ycf{bottom:74.776042pt;}
.y23a{bottom:83.583335pt;}
.y199{bottom:84.054688pt;}
.yb5{bottom:87.270833pt;}
.y1ec{bottom:89.429687pt;}
.yce{bottom:89.499993pt;}
.y174{bottom:89.748701pt;}
.yb{bottom:91.640625pt;}
.y14f{bottom:93.170567pt;}
.ye7{bottom:93.902340pt;}
.y119{bottom:95.976567pt;}
.y288{bottom:97.062500pt;}
.y5f{bottom:97.805993pt;}
.y111{bottom:98.101567pt;}
.y101{bottom:98.868487pt;}
.y2b8{bottom:98.869793pt;}
.y238{bottom:99.583335pt;}
.y17e{bottom:102.453113pt;}
.y18d{bottom:102.453127pt;}
.y99{bottom:104.065100pt;}
.y214{bottom:105.929687pt;}
.y1d1{bottom:106.140620pt;}
.y171{bottom:108.147139pt;}
.y2a3{bottom:108.265620pt;}
.y228{bottom:111.333327pt;}
.y254{bottom:112.083334pt;}
.yb4{bottom:114.868487pt;}
.y7c{bottom:116.845047pt;}
.y1eb{bottom:117.028647pt;}
.y1a6{bottom:117.929687pt;}
.y14e{bottom:120.768233pt;}
.y18c{bottom:120.851567pt;}
.ye6{bottom:121.499993pt;}
.y118{bottom:123.574220pt;}
.y2e3{bottom:124.859380pt;}
.y5e{bottom:125.403647pt;}
.y110{bottom:125.700527pt;}
.y100{bottom:126.466140pt;}
.y2b7{bottom:126.468753pt;}
.y2cf{bottom:127.057287pt;}
.y28{bottom:128.302087pt;}
.y130{bottom:129.546869pt;}
.y1ba{bottom:130.880201pt;}
.ycd{bottom:133.097660pt;}
.y213{bottom:133.562494pt;}
.y2a2{bottom:135.861980pt;}
.y200{bottom:138.781252pt;}
.y227{bottom:138.929687pt;}
.y18b{bottom:139.249993pt;}
.y253{bottom:139.749993pt;}
.y287{bottom:140.658860pt;}
.yb3{bottom:142.466140pt;}
.y236{bottom:143.182288pt;}
.y7b{bottom:144.442713pt;}
.y1a5{bottom:145.528647pt;}
.y8{bottom:147.083546pt;}
.y98{bottom:147.662767pt;}
.y14d{bottom:148.365887pt;}
.ye5{bottom:149.097660pt;}
.y1d0{bottom:149.739580pt;}
.y117{bottom:151.171873pt;}
.y2e2{bottom:152.455727pt;}
.y5d{bottom:153.001300pt;}
.y10f{bottom:153.296873pt;}
.yff{bottom:154.063807pt;}
.y2b6{bottom:154.065100pt;}
.y2ce{bottom:154.656247pt;}
.y27{bottom:155.899740pt;}
.y16f{bottom:159.944011pt;}
.y1ea{bottom:160.624993pt;}
.ycc{bottom:160.695313pt;}
.y212{bottom:161.231767pt;}
.y2a1{bottom:163.458327pt;}
.y201{bottom:166.377605pt;}
.y226{bottom:166.528647pt;}
.y252{bottom:167.348953pt;}
.yb2{bottom:170.063807pt;}
.y237{bottom:170.781245pt;}
.y7a{bottom:172.075521pt;}
.y26c{bottom:172.749993pt;}
.y1a4{bottom:173.124993pt;}
.y97{bottom:175.260420pt;}
.y14c{bottom:175.963540pt;}
.y17d{bottom:176.046873pt;}
.ye4{bottom:176.695313pt;}
.y1cf{bottom:177.335940pt;}
.y116{bottom:178.769527pt;}
.y5c{bottom:180.598953pt;}
.y10e{bottom:180.895833pt;}
.yfe{bottom:181.661460pt;}
.y26{bottom:183.497393pt;}
.y286{bottom:184.255207pt;}
.y1e9{bottom:188.257814pt;}
.ycb{bottom:188.292967pt;}
.y211{bottom:188.864587pt;}
.y1b7{bottom:190.479168pt;}
.y2a0{bottom:191.057287pt;}
.y18a{bottom:194.445313pt;}
.y251{bottom:194.945313pt;}
.y2e1{bottom:196.052087pt;}
.yb1{bottom:197.661460pt;}
.y2cd{bottom:198.252607pt;}
.y79{bottom:199.778641pt;}
.y26b{bottom:200.348953pt;}
.y1a3{bottom:200.723953pt;}
.y96{bottom:202.858073pt;}
.y14b{bottom:203.561193pt;}
.ye3{bottom:204.292967pt;}
.y1ce{bottom:204.934900pt;}
.y115{bottom:206.367193pt;}
.y5b{bottom:208.196620pt;}
.y10d{bottom:208.492193pt;}
.yfd{bottom:209.259113pt;}
.y2b5{bottom:209.260420pt;}
.y25{bottom:211.095047pt;}
.y285{bottom:211.854167pt;}
.y189{bottom:212.843753pt;}
.yca{bottom:215.890620pt;}
.y1e8{bottom:215.927087pt;}
.y1b9{bottom:218.078125pt;}
.y250{bottom:222.544273pt;}
.y2e0{bottom:223.651047pt;}
.y16e{bottom:224.589842pt;}
.yb0{bottom:225.259113pt;}
.y2cc{bottom:225.848953pt;}
.y1fd{bottom:225.973963pt;}
.y225{bottom:226.124993pt;}
.y78{bottom:227.446620pt;}
.y26a{bottom:227.945313pt;}
.y1a2{bottom:228.320313pt;}
.y235{bottom:230.377605pt;}
.y95{bottom:230.455727pt;}
.y14a{bottom:231.158860pt;}
.ye2{bottom:231.890620pt;}
.y114{bottom:233.964847pt;}
.y29f{bottom:234.656247pt;}
.y5a{bottom:235.794273pt;}
.y10c{bottom:236.091140pt;}
.yfc{bottom:236.856767pt;}
.y24{bottom:238.692713pt;}
.y7{bottom:238.891507pt;}
.y284{bottom:239.453127pt;}
.yc9{bottom:243.488287pt;}
.y1e7{bottom:243.523433pt;}
.y1cd{bottom:248.531247pt;}
.y17c{bottom:249.640619pt;}
.y188{bottom:249.640620pt;}
.y24f{bottom:250.140620pt;}
.yaf{bottom:252.856767pt;}
.y2b4{bottom:252.859380pt;}
.y1ff{bottom:253.572921pt;}
.y224{bottom:253.723953pt;}
.y77{bottom:255.079427pt;}
.y269{bottom:255.544273pt;}
.y1a1{bottom:255.919273pt;}
.y94{bottom:258.053380pt;}
.y149{bottom:258.756513pt;}
.ye1{bottom:259.488287pt;}
.y113{bottom:261.562500pt;}
.y29e{bottom:262.252607pt;}
.y59{bottom:263.391927pt;}
.y10b{bottom:263.687500pt;}
.yfb{bottom:264.454433pt;}
.y23{bottom:266.290367pt;}
.y283{bottom:267.049473pt;}
.y2df{bottom:267.249993pt;}
.y187{bottom:268.039060pt;}
.y16d{bottom:269.432287pt;}
.y2cb{bottom:269.447913pt;}
.yc8{bottom:271.085940pt;}
.y1e6{bottom:271.156254pt;}
.y3f{bottom:275.467449pt;}
.y1cc{bottom:276.130207pt;}
.y1b3{bottom:277.674475pt;}
.y24e{bottom:277.739580pt;}
.yae{bottom:280.454433pt;}
.y2b3{bottom:280.455727pt;}
.y223{bottom:281.356774pt;}
.y76{bottom:282.782548pt;}
.y1a0{bottom:283.515620pt;}
.y93{bottom:285.651047pt;}
.y148{bottom:286.354167pt;}
.y186{bottom:286.437499pt;}
.ye0{bottom:287.085940pt;}
.y29d{bottom:289.848953pt;}
.y234{bottom:289.973961pt;}
.y10a{bottom:291.286460pt;}
.y6{bottom:291.355471pt;}
.y22{bottom:293.888020pt;}
.y282{bottom:294.645833pt;}
.y2de{bottom:294.846353pt;}
.y16c{bottom:297.029953pt;}
.y2ca{bottom:297.046873pt;}
.yc7{bottom:298.683593pt;}
.y1e5{bottom:298.825527pt;}
.y12f{bottom:299.049473pt;}
.y268{bottom:299.140620pt;}
.y1cb{bottom:303.726567pt;}
.y1b6{bottom:305.270828pt;}
.y24d{bottom:305.335940pt;}
.y112{bottom:307.269529pt;}
.yb8{bottom:308.052087pt;}
.y222{bottom:309.023433pt;}
.y75{bottom:310.450527pt;}
.y19f{bottom:311.114580pt;}
.y1fc{bottom:313.171872pt;}
.y92{bottom:313.248700pt;}
.y147{bottom:313.951820pt;}
.ydf{bottom:314.683593pt;}
.y29c{bottom:317.447913pt;}
.y58{bottom:318.587233pt;}
.y21{bottom:321.485673pt;}
.y281{bottom:322.244793pt;}
.y185{bottom:323.234375pt;}
.yad{bottom:324.052087pt;}
.y162{bottom:324.276037pt;}
.y16b{bottom:324.627607pt;}
.y2c9{bottom:324.643233pt;}
.y109{bottom:326.260409pt;}
.yc6{bottom:326.281247pt;}
.y1e4{bottom:326.458334pt;}
.y267{bottom:326.739580pt;}
.y1ca{bottom:331.325527pt;}
.y24c{bottom:332.934900pt;}
.yfa{bottom:335.649740pt;}
.y2b2{bottom:335.651047pt;}
.y210{bottom:335.726567pt;}
.y221{bottom:336.622393pt;}
.y74{bottom:338.048180pt;}
.y2dd{bottom:338.442713pt;}
.y3e{bottom:339.861983pt;}
.y91{bottom:340.846353pt;}
.y146{bottom:341.549473pt;}
.y17b{bottom:341.632807pt;}
.y184{bottom:341.632812pt;}
.yde{bottom:342.281247pt;}
.y12e{bottom:342.647140pt;}
.y29b{bottom:345.046873pt;}
.y57{bottom:346.184900pt;}
.y20{bottom:349.083327pt;}
.y231{bottom:349.572915pt;}
.yac{bottom:351.649740pt;}
.y16a{bottom:352.225260pt;}
.y2c8{bottom:352.239580pt;}
.yc5{bottom:353.878900pt;}
.y1e3{bottom:354.124993pt;}
.y266{bottom:354.335940pt;}
.y108{bottom:356.348953pt;}
.y19e{bottom:356.822916pt;}
.y183{bottom:360.031249pt;}
.y24b{bottom:360.531247pt;}
.yf9{bottom:363.247393pt;}
.y2b1{bottom:363.249993pt;}
.y20f{bottom:363.325527pt;}
.y5{bottom:363.530040pt;}
.y220{bottom:364.255214pt;}
.y1b1{bottom:364.869788pt;}
.y73{bottom:365.645833pt;}
.y280{bottom:365.843753pt;}
.y2dc{bottom:366.041660pt;}
.y90{bottom:368.444007pt;}
.y145{bottom:369.147140pt;}
.ydd{bottom:369.878900pt;}
.y12d{bottom:370.244793pt;}
.y29a{bottom:372.643233pt;}
.y1fb{bottom:372.768232pt;}
.y56{bottom:373.782553pt;}
.y1c9{bottom:374.921873pt;}
.y1f{bottom:376.680993pt;}
.y233{bottom:377.171872pt;}
.y182{bottom:378.429687pt;}
.yab{bottom:379.247393pt;}
.y2c7{bottom:379.838540pt;}
.yc4{bottom:381.476567pt;}
.y1e2{bottom:381.723953pt;}
.y265{bottom:381.934900pt;}
.y161{bottom:383.873704pt;}
.y107{bottom:383.945313pt;}
.y24a{bottom:388.130207pt;}
.yf8{bottom:390.845047pt;}
.y2b0{bottom:390.846353pt;}
.y2db{bottom:393.640620pt;}
.y72{bottom:395.353516pt;}
.y4{bottom:395.850107pt;}
.y3d{bottom:397.546873pt;}
.y12c{bottom:397.842447pt;}
.y169{bottom:397.932289pt;}
.y299{bottom:400.239580pt;}
.y55{bottom:401.380207pt;}
.y1c8{bottom:402.520833pt;}
.y1e{bottom:404.278647pt;}
.yaa{bottom:406.845047pt;}
.yc3{bottom:409.074220pt;}
.y141{bottom:409.242193pt;}
.y1e1{bottom:409.320313pt;}
.y27f{bottom:409.440100pt;}
.y106{bottom:411.544273pt;}
.y8f{bottom:412.041660pt;}
.ydc{bottom:413.476567pt;}
.y144{bottom:414.854169pt;}
.y249{bottom:415.726567pt;}
.yf7{bottom:418.442713pt;}
.y198{bottom:418.846359pt;}
.y20e{bottom:422.921873pt;}
.y2c6{bottom:423.437500pt;}
.y21f{bottom:423.921873pt;}
.y3c{bottom:425.144860pt;}
.y12b{bottom:425.440100pt;}
.y1af{bottom:425.468752pt;}
.y264{bottom:425.531247pt;}
.y298{bottom:427.838540pt;}
.y3{bottom:428.170093pt;}
.y54{bottom:428.977860pt;}
.y1c7{bottom:430.117193pt;}
.y1f7{bottom:432.364576pt;}
.ya9{bottom:434.442713pt;}
.y22f{bottom:436.768235pt;}
.y140{bottom:436.841140pt;}
.y1e0{bottom:436.919273pt;}
.y27e{bottom:437.036460pt;}
.y2da{bottom:437.236980pt;}
.y105{bottom:439.140620pt;}
.y8e{bottom:439.639327pt;}
.ydb{bottom:441.074220pt;}
.y71{bottom:441.440753pt;}
.y248{bottom:443.325527pt;}
.y160{bottom:443.471357pt;}
.y168{bottom:444.020833pt;}
.yf6{bottom:446.040367pt;}
.y2af{bottom:446.041660pt;}
.y20d{bottom:450.520833pt;}
.y1d{bottom:450.591146pt;}
.y2c5{bottom:451.033860pt;}
.y21e{bottom:451.520833pt;}
.yc2{bottom:452.671873pt;}
.y12a{bottom:453.037767pt;}
.y263{bottom:453.130207pt;}
.y3b{bottom:454.852543pt;}
.y297{bottom:455.437500pt;}
.y53{bottom:456.575527pt;}
.y1fa{bottom:459.963535pt;}
.ya8{bottom:462.040367pt;}
.y230{bottom:464.364588pt;}
.y13f{bottom:464.437500pt;}
.y1df{bottom:464.515620pt;}
.y27d{bottom:464.635420pt;}
.y2d9{bottom:464.833327pt;}
.y104{bottom:466.739580pt;}
.y8d{bottom:467.236980pt;}
.yda{bottom:468.671873pt;}
.y70{bottom:469.038407pt;}
.y247{bottom:470.921873pt;}
.y167{bottom:471.617193pt;}
.yf5{bottom:473.638020pt;}
.y1c6{bottom:473.750001pt;}
.y2c4{bottom:478.630207pt;}
.yc1{bottom:480.269527pt;}
.y129{bottom:480.635420pt;}
.y262{bottom:480.726567pt;}
.y296{bottom:483.033860pt;}
.y52{bottom:484.173180pt;}
.ya7{bottom:489.638020pt;}
.y2ae{bottom:489.640620pt;}
.y13e{bottom:492.036460pt;}
.y1de{bottom:492.114580pt;}
.y27c{bottom:492.234380pt;}
.y197{bottom:492.440109pt;}
.y8c{bottom:494.834633pt;}
.y103{bottom:495.391922pt;}
.yd9{bottom:496.269527pt;}
.y6f{bottom:496.636073pt;}
.y246{bottom:498.520833pt;}
.y166{bottom:499.216140pt;}
.yf4{bottom:501.235673pt;}
.y15e{bottom:504.069011pt;}
.yc0{bottom:507.867193pt;}
.y128{bottom:508.233073pt;}
.y261{bottom:508.325527pt;}
.y2d8{bottom:508.432287pt;}
.y20c{bottom:510.117193pt;}
.y1c{bottom:510.567713pt;}
.y295{bottom:510.630207pt;}
.y21d{bottom:511.117193pt;}
.y51{bottom:511.770833pt;}
.y3a{bottom:512.537433pt;}
.y1ae{bottom:514.723953pt;}
.ya6{bottom:517.235673pt;}
.y2ad{bottom:517.236980pt;}
.y1c5{bottom:517.419273pt;}
.y1f3{bottom:519.562505pt;}
.y13d{bottom:519.632807pt;}
.y1dd{bottom:519.710940pt;}
.y27b{bottom:519.830727pt;}
.y2c3{bottom:522.229167pt;}
.y8b{bottom:522.432287pt;}
.yd8{bottom:523.867193pt;}
.y22e{bottom:523.963541pt;}
.y6e{bottom:524.233727pt;}
.y193{bottom:525.838543pt;}
.y245{bottom:526.117193pt;}
.y102{bottom:526.343743pt;}
.y165{bottom:526.812500pt;}
.yf3{bottom:528.833327pt;}
.ybf{bottom:535.464847pt;}
.y127{bottom:535.830727pt;}
.y260{bottom:535.921873pt;}
.y2d7{bottom:536.031247pt;}
.y20b{bottom:537.716140pt;}
.y294{bottom:538.229167pt;}
.y21c{bottom:538.716140pt;}
.y50{bottom:539.368487pt;}
.y39{bottom:540.135087pt;}
.ya5{bottom:544.833327pt;}
.y1c4{bottom:545.015620pt;}
.y1f6{bottom:547.158859pt;}
.y13c{bottom:547.231767pt;}
.y1dc{bottom:547.309900pt;}
.y27a{bottom:547.427087pt;}
.y2c2{bottom:549.828127pt;}
.y8a{bottom:550.029953pt;}
.yd7{bottom:551.464847pt;}
.y22d{bottom:551.562499pt;}
.y6d{bottom:551.831380pt;}
.y244{bottom:553.716140pt;}
.y164{bottom:554.411460pt;}
.yf2{bottom:556.430993pt;}
.y1ad{bottom:558.322913pt;}
.y1b{bottom:559.859373pt;}
.ybe{bottom:563.062500pt;}
.y25f{bottom:563.520833pt;}
.y20a{bottom:565.312500pt;}
.y4f{bottom:566.966140pt;}
.y38{bottom:571.952801pt;}
.ya4{bottom:572.430993pt;}
.y2ac{bottom:572.432287pt;}
.y13b{bottom:574.828127pt;}
.y1db{bottom:574.942708pt;}
.y279{bottom:575.026047pt;}
.y2c1{bottom:577.424473pt;}
.y89{bottom:577.627607pt;}
.y126{bottom:579.428380pt;}
.y6c{bottom:579.429033pt;}
.y2d6{bottom:579.627607pt;}
.y243{bottom:581.312500pt;}
.y192{bottom:582.567709pt;}
.yf1{bottom:584.028647pt;}
.y1ac{bottom:585.921873pt;}
.y293{bottom:588.158856pt;}
.y1c3{bottom:588.614580pt;}
.ybd{bottom:590.660153pt;}
.y2{bottom:591.082092pt;}
.y209{bottom:592.911460pt;}
.y15d{bottom:593.326820pt;}
.y4e{bottom:594.563807pt;}
.yd6{bottom:596.117188pt;}
.y21b{bottom:598.312500pt;}
.ya3{bottom:600.028647pt;}
.y2ab{bottom:600.031247pt;}
.y13a{bottom:602.427087pt;}
.y163{bottom:604.338536pt;}
.y2c0{bottom:605.020833pt;}
.y88{bottom:605.225260pt;}
.y1f2{bottom:606.755201pt;}
.y6b{bottom:607.026687pt;}
.y125{bottom:607.027340pt;}
.y25e{bottom:607.117193pt;}
.y2d5{bottom:607.223953pt;}
.y242{bottom:608.911460pt;}
.y1a{bottom:609.227860pt;}
.yf0{bottom:611.626300pt;}
.y22c{bottom:612.158859pt;}
.y1ab{bottom:613.518233pt;}
.y181{bottom:615.966147pt;}
.ybc{bottom:618.257807pt;}
.y1da{bottom:618.609380pt;}
.y278{bottom:618.624993pt;}
.y208{bottom:620.507807pt;}
.y4d{bottom:622.161460pt;}
.y21a{bottom:625.911460pt;}
.ya2{bottom:627.626300pt;}
.y2aa{bottom:627.627607pt;}
.y139{bottom:632.052085pt;}
.y37{bottom:632.127273pt;}
.y1c2{bottom:632.210940pt;}
.y87{bottom:632.822913pt;}
.y6a{bottom:634.624353pt;}
.y124{bottom:634.624993pt;}
.y2d4{bottom:634.822913pt;}
.y241{bottom:636.544267pt;}
.y19{bottom:636.825527pt;}
.y15c{bottom:636.924473pt;}
.yef{bottom:639.223953pt;}
.yd5{bottom:643.626300pt;}
.ybb{bottom:645.855473pt;}
.y1d9{bottom:646.208327pt;}
.y277{bottom:646.221353pt;}
.y207{bottom:648.106767pt;}
.y2bf{bottom:648.619793pt;}
.y4c{bottom:649.759113pt;}
.y25d{bottom:650.716140pt;}
.y17a{bottom:652.763027pt;}
.y219{bottom:653.507807pt;}
.ya1{bottom:655.223953pt;}
.y1aa{bottom:659.223957pt;}
.y36{bottom:659.724940pt;}
.y138{bottom:662.221353pt;}
.y123{bottom:662.222660pt;}
.y1c1{bottom:664.148441pt;}
.y18{bottom:664.423180pt;}
.y15b{bottom:664.522140pt;}
.yee{bottom:666.821620pt;}
.y292{bottom:666.822913pt;}
.y1f1{bottom:667.354161pt;}
.y1{bottom:669.572760pt;}
.yd4{bottom:671.223953pt;}
.yba{bottom:673.453127pt;}
.y276{bottom:673.817713pt;}
.y2be{bottom:676.218753pt;}
.y86{bottom:676.420567pt;}
.y4b{bottom:677.356767pt;}
.y69{bottom:678.222007pt;}
.y25c{bottom:678.312500pt;}
.y2d3{bottom:678.421873pt;}
.y240{bottom:680.210940pt;}
.ya0{bottom:682.821620pt;}
.y2a9{bottom:682.822913pt;}
.y35{bottom:687.322593pt;}
.y1d8{bottom:689.804687pt;}
.y137{bottom:689.819007pt;}
.y122{bottom:689.820313pt;}
.y17{bottom:692.020833pt;}
.y15a{bottom:692.119793pt;}
.yed{bottom:694.419273pt;}
.y291{bottom:694.421873pt;}
.yd3{bottom:698.821620pt;}
.y22b{bottom:701.416660pt;}
.y85{bottom:704.018233pt;}
.y4a{bottom:704.954433pt;}
.y68{bottom:705.819660pt;}
.y25b{bottom:705.911460pt;}
.y2d2{bottom:706.018233pt;}
.y1a9{bottom:707.421876pt;}
.y206{bottom:707.739587pt;}
.y23f{bottom:707.809900pt;}
.y9f{bottom:710.419273pt;}
.y2a8{bottom:710.421873pt;}
.y218{bottom:713.106767pt;}
.y34{bottom:714.920247pt;}
.y121{bottom:717.417967pt;}
.yb9{bottom:718.105468pt;}
.y16{bottom:719.618487pt;}
.y159{bottom:719.717447pt;}
.y2bd{bottom:719.815100pt;}
.y290{bottom:722.018233pt;}
.y1c0{bottom:723.747392pt;}
.yd2{bottom:726.419273pt;}
.y275{bottom:729.015620pt;}
.y84{bottom:731.615887pt;}
.y49{bottom:732.552087pt;}
.y67{bottom:733.417313pt;}
.y25a{bottom:733.507807pt;}
.y2d1{bottom:733.614580pt;}
.y136{bottom:735.526036pt;}
.y9e{bottom:738.016927pt;}
.y2a7{bottom:738.018233pt;}
.y217{bottom:740.703127pt;}
.y33{bottom:742.517900pt;}
.y120{bottom:745.015620pt;}
.y15{bottom:747.216140pt;}
.y158{bottom:747.315100pt;}
.y2bc{bottom:747.411460pt;}
.y28f{bottom:749.614580pt;}
.y205{bottom:751.406247pt;}
.yd1{bottom:754.016927pt;}
.y1f0{bottom:756.611980pt;}
.y83{bottom:759.213540pt;}
.y48{bottom:760.149740pt;}
.y66{bottom:761.014980pt;}
.y259{bottom:761.106767pt;}
.y9d{bottom:765.614580pt;}
.y1a8{bottom:767.841150pt;}
.y32{bottom:770.115553pt;}
.y22a{bottom:772.611980pt;}
.y11f{bottom:772.613287pt;}
.y14{bottom:774.813807pt;}
.y157{bottom:774.912767pt;}
.y2bb{bottom:775.010420pt;}
.y1d7{bottom:776.999993pt;}
.y28e{bottom:777.213540pt;}
.y204{bottom:779.005207pt;}
.yd0{bottom:781.614580pt;}
.y1be{bottom:783.343755pt;}
.y82{bottom:786.811193pt;}
.y47{bottom:787.747393pt;}
.yb7{bottom:793.212233pt;}
.y2a6{bottom:793.213540pt;}
.y23e{bottom:795.005207pt;}
.y31{bottom:797.713220pt;}
.y1ef{bottom:800.208327pt;}
.y11e{bottom:800.210940pt;}
.y216{bottom:800.302087pt;}
.y13{bottom:802.411460pt;}
.y156{bottom:802.510420pt;}
.y2ba{bottom:802.609380pt;}
.y1d6{bottom:804.598953pt;}
.y258{bottom:804.703127pt;}
.y28d{bottom:804.812500pt;}
.y65{bottom:806.722649pt;}
.y135{bottom:809.210940pt;}
.y9c{bottom:809.212233pt;}
.y1bf{bottom:810.942712pt;}
.y81{bottom:814.408860pt;}
.y46{bottom:815.345047pt;}
.yb6{bottom:820.809900pt;}
.y203{bottom:822.601567pt;}
.y30{bottom:827.420903pt;}
.y1ee{bottom:827.807287pt;}
.y11d{bottom:827.808593pt;}
.y215{bottom:827.898433pt;}
.y12{bottom:830.009113pt;}
.y1d5{bottom:832.231774pt;}
.y9b{bottom:836.809900pt;}
.y2a5{bottom:836.812500pt;}
.y80{bottom:842.006513pt;}
.y45{bottom:842.942713pt;}
.y274{bottom:843.807287pt;}
.y229{bottom:845.916663pt;}
.y155{bottom:846.108073pt;}
.yec{bottom:848.407553pt;}
.y28c{bottom:848.408860pt;}
.y2b9{bottom:852.536456pt;}
.y23d{bottom:854.539063pt;}
.y11c{bottom:855.406247pt;}
.y11{bottom:857.606767pt;}
.y1d4{bottom:859.898433pt;}
.y257{bottom:864.302087pt;}
.y134{bottom:864.406247pt;}
.y64{bottom:864.407553pt;}
.y2a4{bottom:864.408860pt;}
.y202{bottom:866.200527pt;}
.y7f{bottom:869.604167pt;}
.y1bc{bottom:870.539063pt;}
.y44{bottom:870.540367pt;}
.y273{bottom:871.406247pt;}
.y154{bottom:873.705727pt;}
.yeb{bottom:876.005207pt;}
.y11b{bottom:883.003900pt;}
.y2f{bottom:885.105795pt;}
.y1d3{bottom:887.531250pt;}
.y143{bottom:887.601563pt;}
.y256{bottom:891.898437pt;}
.y63{bottom:892.005208pt;}
.y1bd{bottom:898.138020pt;}
.y43{bottom:898.138021pt;}
.y272{bottom:899.002604pt;}
.y1ed{bottom:901.111979pt;}
.y153{bottom:901.303385pt;}
.yea{bottom:903.602864pt;}
.y2d0{bottom:903.604167pt;}
.y7e{bottom:904.291017pt;}
.y10{bottom:911.557293pt;}
.y2e{bottom:912.703451pt;}
.y23c{bottom:914.138020pt;}
.y142{bottom:915.200521pt;}
.y255{bottom:919.531250pt;}
.y133{bottom:919.601563pt;}
.y62{bottom:919.602864pt;}
.y28b{bottom:919.604167pt;}
.y42{bottom:925.735677pt;}
.y271{bottom:926.598959pt;}
.y11a{bottom:928.710937pt;}
.y152{bottom:928.901041pt;}
.ye9{bottom:931.200521pt;}
.y2d{bottom:943.466146pt;}
.y61{bottom:947.200521pt;}
.y28a{bottom:947.203125pt;}
.y41{bottom:953.333333pt;}
.y270{bottom:954.197917pt;}
.y7d{bottom:956.020183pt;}
.y151{bottom:956.497397pt;}
.y1bb{bottom:957.734375pt;}
.y1d2{bottom:958.796875pt;}
.ye8{bottom:958.798177pt;}
.y2b{bottom:961.632715pt;}
.yf{bottom:961.773436pt;}
.y23b{bottom:973.734375pt;}
.y132{bottom:974.796875pt;}
.y9a{bottom:974.798177pt;}
.y289{bottom:974.799479pt;}
.y178{bottom:983.934896pt;}
.y2c{bottom:987.458333pt;}
.ye{bottom:992.437499pt;}
.y40{bottom:994.927083pt;}
.y2a{bottom:997.416667pt;}
.y26f{bottom:999.906249pt;}
.y150{bottom:1001.151042pt;}
.y60{bottom:1002.395833pt;}
.ya{bottom:1017.333333pt;}
.h19{height:32.398437pt;}
.h16{height:33.930989pt;}
.h23{height:43.598959pt;}
.hd{height:46.210939pt;}
.h17{height:50.796875pt;}
.h7{height:52.106772pt;}
.h5{height:54.208000pt;}
.h11{height:56.843750pt;}
.ha{height:57.375000pt;}
.hb{height:58.000002pt;}
.h1e{height:59.596355pt;}
.h15{height:59.597656pt;}
.h1f{height:59.598959pt;}
.h13{height:61.580732pt;}
.h10{height:66.317706pt;}
.h14{height:66.937498pt;}
.h18{height:69.195312pt;}
.hf{height:71.054688pt;}
.h4{height:72.277336pt;}
.h9{height:75.791669pt;}
.hc{height:81.000000pt;}
.h12{height:85.265625pt;}
.h21{height:87.192708pt;}
.h20{height:87.195312pt;}
.h22{height:87.197917pt;}
.h1c{height:89.127604pt;}
.h3{height:90.346664pt;}
.h8{height:95.624998pt;}
.h6{height:105.333333pt;}
.h1d{height:105.992188pt;}
.h2{height:108.416000pt;}
.he{height:113.687500pt;}
.h1{height:117.450671pt;}
.h1a{height:363.570307pt;}
.h1b{height:400.367187pt;}
.h0{height:1122.666667pt;}
.w2{width:205.000000pt;}
.w4{width:206.000000pt;}
.w3{width:207.000000pt;}
.w5{width:208.000000pt;}
.w6{width:209.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:6.000000pt;}
.x1f{left:7.000000pt;}
.x16{left:10.000000pt;}
.x1d{left:11.000000pt;}
.x9{left:86.666667pt;}
.x19{left:87.666667pt;}
.x22{left:91.330729pt;}
.x12{left:94.666667pt;}
.x4{left:98.980577pt;}
.xc{left:110.666667pt;}
.x3{left:113.401582pt;}
.x7{left:114.408517pt;}
.xe{left:122.666667pt;}
.xd{left:134.666667pt;}
.xb{left:138.666667pt;}
.xf{left:142.666667pt;}
.x1{left:153.443767pt;}
.x10{left:166.666667pt;}
.x13{left:183.979167pt;}
.x6{left:230.209209pt;}
.x2{left:232.562892pt;}
.x17{left:291.666667pt;}
.x1e{left:293.666667pt;}
.x1b{left:294.666667pt;}
.x23{left:295.666667pt;}
.x14{left:297.272137pt;}
.x15{left:305.893227pt;}
.x8{left:308.907007pt;}
.x5{left:344.695917pt;}
.x18{left:498.666667pt;}
.x20{left:499.666667pt;}
.x21{left:500.666667pt;}
.x1c{left:501.666667pt;}
.x24{left:502.666667pt;}
.x11{left:689.469097pt;}
.xa{left:698.251627pt;}
}




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