
    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_acde6d549c58da97a6301f1d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_f82aa4ddbf70f4af71d4edb8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_cb6918506ecc8af38091db43.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_845e25be66b5a4de7548a671.woff')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_280d38cb5a38166ca085ad63.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_3661ee27521aa3df765bd404.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4ff05c360cadad4e3c76bff6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_71d71b0d9ec34cad9509792f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_25cf1605668d81ee9346aaaa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v10{vertical-align:-55.440000px;}
.v5{vertical-align:-37.740000px;}
.v7{vertical-align:-33.720000px;}
.v8{vertical-align:-30.540000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.v6{vertical-align:-16.860000px;}
.va{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:10.800000px;}
.v12{vertical-align:14.580000px;}
.v9{vertical-align:15.720000px;}
.v1{vertical-align:27.360000px;}
.v11{vertical-align:29.280000px;}
.vd{vertical-align:32.400000px;}
.vc{vertical-align:43.020000px;}
.vb{vertical-align:53.820000px;}
.vf{vertical-align:55.440000px;}
.v4{vertical-align:56.580000px;}
.ls19{letter-spacing:-3.168000px;}
.ls17{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.106800px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.864000px;}
.ls9{letter-spacing:1.080000px;}
.lse{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.880000px;}
.ls4{letter-spacing:4.320000px;}
.ls6{letter-spacing:12.840000px;}
.ls1{letter-spacing:13.140000px;}
.ls0{letter-spacing:14.580000px;}
.lsd{letter-spacing:18.000000px;}
.lsc{letter-spacing:21.221280px;}
.lsf{letter-spacing:23.040000px;}
.ls10{letter-spacing:33.960000px;}
.ls16{letter-spacing:33.984000px;}
.ls13{letter-spacing:41.160000px;}
.ls15{letter-spacing:54.840000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws2{word-spacing:-30.840000px;}
.wsc{word-spacing:-21.420000px;}
.ws35{word-spacing:-18.864000px;}
.wse{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws9{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.ws36{word-spacing:-14.832000px;}
.ws24{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.536000px;}
.wsf{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.240000px;}
.ws5{word-spacing:-12.060000px;}
.ws1{word-spacing:-5.256000px;}
.ws0{word-spacing:-4.824000px;}
.wsb{word-spacing:0.000000px;}
.ws2c{word-spacing:43.812000px;}
.ws17{word-spacing:52.632000px;}
.ws12{word-spacing:52.752000px;}
.ws15{word-spacing:52.812000px;}
.ws2b{word-spacing:56.298000px;}
.ws27{word-spacing:71.514000px;}
.ws2e{word-spacing:118.638000px;}
.ws2d{word-spacing:145.998000px;}
.ws25{word-spacing:193.836000px;}
.ws21{word-spacing:299.178000px;}
.ws20{word-spacing:299.238000px;}
.ws22{word-spacing:299.358000px;}
.ws13{word-spacing:302.238000px;}
.ws14{word-spacing:329.598000px;}
.ws29{word-spacing:344.718000px;}
.ws28{word-spacing:371.898000px;}
.ws2a{word-spacing:372.078000px;}
.ws1f{word-spacing:376.518000px;}
.ws33{word-spacing:435.420000px;}
.ws1e{word-spacing:468.138000px;}
.ws1c{word-spacing:468.558000px;}
.ws19{word-spacing:487.398000px;}
.ws1a{word-spacing:487.578000px;}
.ws31{word-spacing:488.598000px;}
.ws32{word-spacing:488.718000px;}
.ws1d{word-spacing:496.038000px;}
.ws18{word-spacing:602.742000px;}
.ws2f{word-spacing:610.938000px;}
.ws1b{word-spacing:698.838000px;}
.ws11{word-spacing:876.996000px;}
.ws16{word-spacing:934.525056px;}
.ws23{word-spacing:1071.018000px;}
.ws34{word-spacing:1097.892000px;}
.ws26{word-spacing:1105.152000px;}
.ws30{word-spacing:1110.012000px;}
._40{margin-left:-374.922000px;}
._51{margin-left:-8.352000px;}
._4f{margin-left:-7.044000px;}
._21{margin-left:-5.472000px;}
._1d{margin-left:-3.888000px;}
._17{margin-left:-2.664000px;}
._4{margin-left:-1.656000px;}
._3{width:1.080000px;}
._9{width:2.395920px;}
._8{width:3.437520px;}
._f{width:4.584000px;}
._28{width:5.616000px;}
._15{width:6.624000px;}
._c{width:7.776000px;}
._e{width:9.000000px;}
._d{width:10.056000px;}
._0{width:11.232000px;}
._2{width:12.828000px;}
._1{width:14.052000px;}
._a{width:15.300000px;}
._b{width:16.332000px;}
._1f{width:19.224000px;}
._20{width:20.232000px;}
._26{width:21.312000px;}
._1e{width:23.100000px;}
._12{width:24.192000px;}
._13{width:25.416000px;}
._27{width:26.424000px;}
._10{width:27.432000px;}
._14{width:28.512000px;}
._16{width:30.024000px;}
._18{width:31.968000px;}
._19{width:33.048000px;}
._25{width:34.344000px;}
._4e{width:35.352000px;}
._29{width:36.648000px;}
._4d{width:37.872000px;}
._24{width:39.168000px;}
._22{width:41.112000px;}
._23{width:42.264000px;}
._4b{width:43.416000px;}
._4c{width:44.496000px;}
._50{width:48.600000px;}
._43{width:54.594000px;}
._1b{width:73.956000px;}
._47{width:83.538000px;}
._49{width:87.654000px;}
._31{width:90.492096px;}
._36{width:96.648000px;}
._4a{width:114.804000px;}
._2a{width:131.100000px;}
._46{width:132.516000px;}
._2c{width:137.958000px;}
._2b{width:162.618000px;}
._37{width:169.668000px;}
._2e{width:181.908000px;}
._44{width:186.354000px;}
._33{width:190.428000px;}
._3a{width:196.998000px;}
._38{width:203.148000px;}
._2f{width:216.288000px;}
._41{width:220.950000px;}
._45{width:222.372000px;}
._34{width:224.808000px;}
._42{width:261.618000px;}
._3f{width:288.432000px;}
._3b{width:302.046000px;}
._39{width:309.246000px;}
._3e{width:311.562000px;}
._30{width:321.486000px;}
._3c{width:326.718000px;}
._3d{width:328.206000px;}
._35{width:329.826000px;}
._48{width:377.904000px;}
._5{width:393.648000px;}
._6{width:394.706400px;}
._32{width:427.188000px;}
._2d{width:637.752000px;}
._7{width:694.980000px;}
._11{width:829.596000px;}
._1a{width:846.156000px;}
._1c{width:1681.500000px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs1{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yad{bottom:13.530000px;}
.y1ee{bottom:15.405000px;}
.yfa{bottom:16.455000px;}
.y13e{bottom:16.485000px;}
.yc4{bottom:16.530000px;}
.y11d{bottom:16.560000px;}
.yab{bottom:31.830000px;}
.yc2{bottom:37.830000px;}
.ye2{bottom:39.315000px;}
.yf7{bottom:44.310000px;}
.y1e8{bottom:45.330000px;}
.ya9{bottom:51.810000px;}
.y13b{bottom:54.255000px;}
.y14e{bottom:54.285000px;}
.y11a{bottom:54.330000px;}
.y230{bottom:54.360000px;}
.y5{bottom:55.980000px;}
.yc0{bottom:57.810000px;}
.ye0{bottom:59.325000px;}
.yf6{bottom:64.290000px;}
.ya0{bottom:67.680000px;}
.y204{bottom:73.110000px;}
.y1c0{bottom:73.155000px;}
.y22e{bottom:73.230000px;}
.yb7{bottom:73.695000px;}
.y168{bottom:74.235000px;}
.y139{bottom:74.265000px;}
.y1a7{bottom:74.310000px;}
.y118{bottom:74.340000px;}
.yd7{bottom:75.165000px;}
.y1dd{bottom:78.735000px;}
.yec{bottom:80.175000px;}
.ya1{bottom:88.485000px;}
.y162{bottom:90.075000px;}
.y132{bottom:90.105000px;}
.y111{bottom:90.180000px;}
.yd8{bottom:95.370000px;}
.ye9{bottom:96.375000px;}
.y203{bottom:97.200000px;}
.yb8{bottom:97.230000px;}
.y22d{bottom:97.305000px;}
.yaa{bottom:97.410000px;}
.ye6{bottom:100.950000px;}
.ye1{bottom:102.525000px;}
.yed{bottom:103.140000px;}
.y10d{bottom:104.070000px;}
.y1e9{bottom:106.635000px;}
.y12f{bottom:107.820000px;}
.y143{bottom:107.970000px;}
.y178{bottom:108.255000px;}
.y160{bottom:108.750000px;}
.ya2{bottom:109.290000px;}
.yb1{bottom:111.135000px;}
.y194{bottom:111.165000px;}
.y108{bottom:112.500000px;}
.y202{bottom:112.710000px;}
.y1b8{bottom:113.115000px;}
.y226{bottom:113.190000px;}
.yc1{bottom:114.585000px;}
.y25f{bottom:114.696000px;}
.y1e2{bottom:115.095000px;}
.y126{bottom:115.236000px;}
.y131{bottom:115.455000px;}
.yd9{bottom:115.590000px;}
.yb6{bottom:115.845000px;}
.y17d{bottom:116.745000px;}
.y8d{bottom:117.576000px;}
.y276{bottom:119.916000px;}
.y1c6{bottom:120.750000px;}
.yb9{bottom:120.810000px;}
.y110{bottom:120.960000px;}
.y17b{bottom:120.990000px;}
.y12a{bottom:123.090000px;}
.ye7{bottom:123.945000px;}
.y19f{bottom:125.790000px;}
.yee{bottom:126.150000px;}
.y12c{bottom:126.900000px;}
.y141{bottom:127.650000px;}
.y15f{bottom:127.830000px;}
.y133{bottom:128.265000px;}
.y1fc{bottom:128.595000px;}
.y148{bottom:129.495000px;}
.y1b3{bottom:129.675000px;}
.ya3{bottom:130.110000px;}
.y12e{bottom:130.710000px;}
.y1cd{bottom:131.940000px;}
.y112{bottom:132.375000px;}
.y19c{bottom:132.555000px;}
.y17e{bottom:132.585000px;}
.yea{bottom:133.125000px;}
.y1e5{bottom:133.275000px;}
.y125{bottom:134.136000px;}
.y147{bottom:135.510000px;}
.yda{bottom:135.795000px;}
.y21e{bottom:136.476000px;}
.y10c{bottom:137.805000px;}
.y275{bottom:139.176000px;}
.y197{bottom:139.680000px;}
.y1b9{bottom:140.040000px;}
.y25e{bottom:141.696000px;}
.y10a{bottom:142.050000px;}
.y129{bottom:142.170000px;}
.y177{bottom:142.230000px;}
.yba{bottom:144.390000px;}
.y8c{bottom:144.396000px;}
.y233{bottom:144.576000px;}
.yd6{bottom:145.650000px;}
.y107{bottom:146.265000px;}
.y71{bottom:146.736000px;}
.y13a{bottom:148.425000px;}
.yef{bottom:149.115000px;}
.y1fb{bottom:149.400000px;}
.y227{bottom:149.655000px;}
.y9e{bottom:150.225000px;}
.ya4{bottom:150.915000px;}
.y14d{bottom:152.250000px;}
.y224{bottom:152.610000px;}
.y1cb{bottom:154.230000px;}
.ydb{bottom:156.030000px;}
.y1f9{bottom:156.345000px;}
.y124{bottom:158.250000px;}
.y13f{bottom:158.940000px;}
.y1b5{bottom:159.300000px;}
.y1d3{bottom:159.630000px;}
.y1a0{bottom:161.385000px;}
.y184{bottom:161.460000px;}
.yd4{bottom:161.820000px;}
.yb5{bottom:162.975000px;}
.y142{bottom:163.080000px;}
.y1f3{bottom:163.260000px;}
.y21d{bottom:163.290000px;}
.y119{bottom:163.335000px;}
.y1c1{bottom:164.850000px;}
.y15e{bottom:166.035000px;}
.y274{bottom:166.170000px;}
.y134{bottom:166.395000px;}
.y22f{bottom:166.500000px;}
.y1ba{bottom:166.935000px;}
.yd1{bottom:167.070000px;}
.y10f{bottom:167.325000px;}
.y1b7{bottom:167.370000px;}
.yb2{bottom:167.685000px;}
.y17c{bottom:167.730000px;}
.ybb{bottom:167.940000px;}
.y19e{bottom:168.150000px;}
.y25d{bottom:168.510000px;}
.y149{bottom:168.870000px;}
.y1de{bottom:169.635000px;}
.y8b{bottom:171.390000px;}
.ya5{bottom:171.720000px;}
.yf0{bottom:172.080000px;}
.y128{bottom:172.650000px;}
.y70{bottom:173.730000px;}
.y1ce{bottom:173.805000px;}
.y113{bottom:174.525000px;}
.y2b{bottom:174.810000px;}
.y17f{bottom:175.110000px;}
.ydc{bottom:176.220000px;}
.y1a8{bottom:176.580000px;}
.yaf{bottom:177.120000px;}
.y169{bottom:177.195000px;}
.y17a{bottom:180.465000px;}
.y146{bottom:182.775000px;}
.y4f{bottom:183.090000px;}
.y1f7{bottom:184.065000px;}
.y15d{bottom:185.115000px;}
.y225{bottom:185.430000px;}
.y163{bottom:185.550000px;}
.y228{bottom:186.150000px;}
.y1ca{bottom:187.665000px;}
.y1e0{bottom:187.815000px;}
.y106{bottom:188.430000px;}
.y21c{bottom:190.290000px;}
.y145{bottom:190.650000px;}
.y1f8{bottom:191.010000px;}
.ybc{bottom:191.520000px;}
.ya6{bottom:192.525000px;}
.y273{bottom:192.990000px;}
.y1bb{bottom:193.860000px;}
.yd0{bottom:193.890000px;}
.y205{bottom:193.935000px;}
.yf1{bottom:195.090000px;}
.y2a{bottom:195.510000px;}
.y1c5{bottom:196.050000px;}
.ydd{bottom:196.455000px;}
.y199{bottom:196.665000px;}
.y1a1{bottom:197.025000px;}
.y175{bottom:197.490000px;}
.y1ea{bottom:197.535000px;}
.y1fd{bottom:197.895000px;}
.y1fa{bottom:197.925000px;}
.y8a{bottom:198.210000px;}
.y6f{bottom:200.550000px;}
.y12d{bottom:203.190000px;}
.y135{bottom:204.510000px;}
.y1e3{bottom:205.995000px;}
.y140{bottom:206.385000px;}
.y14a{bottom:208.260000px;}
.y15c{bottom:208.980000px;}
.y10b{bottom:209.520000px;}
.y4e{bottom:209.730000px;}
.ya7{bottom:213.330000px;}
.y176{bottom:214.485000px;}
.y222{bottom:214.635000px;}
.yb3{bottom:214.845000px;}
.ybd{bottom:215.100000px;}
.y1cf{bottom:215.640000px;}
.y29{bottom:216.210000px;}
.yde{bottom:216.645000px;}
.y114{bottom:216.720000px;}
.y21b{bottom:217.110000px;}
.y180{bottom:217.590000px;}
.yf2{bottom:218.055000px;}
.y1db{bottom:218.190000px;}
.y220{bottom:218.265000px;}
.yd3{bottom:218.415000px;}
.y1f0{bottom:218.730000px;}
.y272{bottom:219.990000px;}
.y1bc{bottom:220.785000px;}
.ycf{bottom:220.890000px;}
.y9f{bottom:221.010000px;}
.y25c{bottom:222.330000px;}
.y229{bottom:222.630000px;}
.y1e6{bottom:224.175000px;}
.y89{bottom:225.210000px;}
.y1f4{bottom:225.645000px;}
.y1b1{bottom:226.290000px;}
.y6e{bottom:227.550000px;}
.y1c9{bottom:229.530000px;}
.y1fe{bottom:232.560000px;}
.y1a2{bottom:232.635000px;}
.y164{bottom:233.280000px;}
.y23f{bottom:233.670000px;}
.ya8{bottom:234.180000px;}
.yd5{bottom:234.570000px;}
.y4d{bottom:236.730000px;}
.ydf{bottom:236.850000px;}
.y28{bottom:236.910000px;}
.y1da{bottom:237.270000px;}
.ybe{bottom:238.650000px;}
.y19d{bottom:239.400000px;}
.yf3{bottom:241.050000px;}
.y9c{bottom:242.310000px;}
.y136{bottom:242.670000px;}
.y21a{bottom:244.110000px;}
.y271{bottom:246.810000px;}
.y14b{bottom:247.605000px;}
.yce{bottom:247.710000px;}
.yb4{bottom:247.830000px;}
.y25b{bottom:249.330000px;}
.y88{bottom:252.030000px;}
.yb0{bottom:252.540000px;}
.y1b0{bottom:254.190000px;}
.y6d{bottom:254.370000px;}
.y1c4{bottom:254.625000px;}
.y1d0{bottom:257.475000px;}
.y27{bottom:257.610000px;}
.y115{bottom:258.870000px;}
.y22a{bottom:259.125000px;}
.y181{bottom:260.070000px;}
.y23e{bottom:260.490000px;}
.y1df{bottom:260.535000px;}
.yac{bottom:261.105000px;}
.y1d9{bottom:261.210000px;}
.ybf{bottom:262.230000px;}
.y1ef{bottom:262.620000px;}
.y4c{bottom:263.550000px;}
.ye4{bottom:263.805000px;}
.yf4{bottom:264.030000px;}
.y1ff{bottom:267.225000px;}
.y1f5{bottom:267.270000px;}
.y198{bottom:267.915000px;}
.y1a3{bottom:268.230000px;}
.y9b{bottom:269.130000px;}
.y219{bottom:270.930000px;}
.y1c7{bottom:271.365000px;}
.y1af{bottom:273.270000px;}
.y270{bottom:273.810000px;}
.y1bd{bottom:274.650000px;}
.y25a{bottom:276.150000px;}
.ycd{bottom:277.050000px;}
.y26{bottom:278.310000px;}
.y1e1{bottom:278.715000px;}
.y87{bottom:279.030000px;}
.y130{bottom:279.435000px;}
.y137{bottom:280.800000px;}
.y165{bottom:280.980000px;}
.y6c{bottom:281.370000px;}
.y174{bottom:282.450000px;}
.yeb{bottom:282.525000px;}
.ye3{bottom:284.505000px;}
.yf5{bottom:286.995000px;}
.ye8{bottom:287.100000px;}
.y23d{bottom:287.310000px;}
.y1eb{bottom:288.435000px;}
.y196{bottom:289.260000px;}
.yc3{bottom:289.515000px;}
.y4b{bottom:290.550000px;}
.y22b{bottom:295.590000px;}
.y9a{bottom:296.130000px;}
.y1e4{bottom:296.895000px;}
.y1ae{bottom:297.210000px;}
.y218{bottom:297.930000px;}
.y1c3{bottom:298.980000px;}
.y25{bottom:299.010000px;}
.y1d1{bottom:299.310000px;}
.y26f{bottom:300.630000px;}
.y144{bottom:300.885000px;}
.y116{bottom:301.065000px;}
.y1be{bottom:301.575000px;}
.yf9{bottom:301.830000px;}
.y1f6{bottom:301.890000px;}
.y1b6{bottom:302.010000px;}
.y223{bottom:302.190000px;}
.y182{bottom:302.550000px;}
.y259{bottom:303.150000px;}
.y19a{bottom:303.510000px;}
.y1a4{bottom:303.870000px;}
.y15b{bottom:304.410000px;}
.y1cc{bottom:304.815000px;}
.y86{bottom:305.850000px;}
.y10e{bottom:306.540000px;}
.y6b{bottom:308.190000px;}
.y1f1{bottom:308.850000px;}
.y195{bottom:310.650000px;}
.y23c{bottom:314.310000px;}
.y1e7{bottom:315.075000px;}
.y179{bottom:316.440000px;}
.y4a{bottom:317.370000px;}
.y138{bottom:318.930000px;}
.y24{bottom:319.710000px;}
.ycc{bottom:320.070000px;}
.y12b{bottom:321.405000px;}
.ye5{bottom:321.480000px;}
.yf8{bottom:322.530000px;}
.y99{bottom:322.950000px;}
.y217{bottom:324.750000px;}
.y14c{bottom:326.370000px;}
.y26e{bottom:327.630000px;}
.y1bf{bottom:328.500000px;}
.y166{bottom:328.710000px;}
.y1b4{bottom:328.935000px;}
.y1c8{bottom:329.940000px;}
.y258{bottom:329.970000px;}
.y22c{bottom:332.070000px;}
.y85{bottom:332.850000px;}
.y221{bottom:335.010000px;}
.y6a{bottom:335.190000px;}
.y200{bottom:336.525000px;}
.y1a5{bottom:339.480000px;}
.y109{bottom:340.275000px;}
.y23{bottom:340.410000px;}
.y1d2{bottom:341.130000px;}
.y161{bottom:342.615000px;}
.y117{bottom:343.230000px;}
.y1f2{bottom:343.515000px;}
.y49{bottom:344.370000px;}
.y183{bottom:345.030000px;}
.y13d{bottom:345.885000px;}
.y19b{bottom:346.245000px;}
.y98{bottom:349.770000px;}
.y216{bottom:351.750000px;}
.y150{bottom:353.310000px;}
.y159{bottom:353.730000px;}
.y1c2{bottom:353.910000px;}
.y26d{bottom:354.450000px;}
.y257{bottom:356.970000px;}
.y232{bottom:359.025000px;}
.y84{bottom:359.670000px;}
.y1ed{bottom:360.825000px;}
.y22{bottom:361.110000px;}
.y69{bottom:362.010000px;}
.y13c{bottom:366.585000px;}
.y1d5{bottom:368.070000px;}
.y23b{bottom:368.175000px;}
.y11c{bottom:368.670000px;}
.y201{bottom:371.190000px;}
.y48{bottom:371.235000px;}
.y186{bottom:371.985000px;}
.y14f{bottom:374.010000px;}
.y1a6{bottom:375.090000px;}
.y167{bottom:376.455000px;}
.y215{bottom:378.615000px;}
.y97{bottom:379.335000px;}
.y231{bottom:379.725000px;}
.y158{bottom:380.595000px;}
.y26c{bottom:381.495000px;}
.y1ec{bottom:381.525000px;}
.y21{bottom:381.855000px;}
.y256{bottom:383.835000px;}
.y83{bottom:386.715000px;}
.y1d4{bottom:388.800000px;}
.y68{bottom:389.055000px;}
.y11b{bottom:389.370000px;}
.y192{bottom:389.595000px;}
.y206{bottom:392.550000px;}
.y185{bottom:392.685000px;}
.y23a{bottom:394.995000px;}
.y1aa{bottom:396.435000px;}
.y47{bottom:398.235000px;}
.y20{bottom:402.555000px;}
.y96{bottom:403.275000px;}
.yae{bottom:403.380000px;}
.y214{bottom:405.435000px;}
.y157{bottom:407.595000px;}
.y26b{bottom:408.315000px;}
.y82{bottom:413.535000px;}
.y67{bottom:415.875000px;}
.y191{bottom:416.595000px;}
.y1a9{bottom:417.135000px;}
.y239{bottom:421.995000px;}
.y1f{bottom:423.255000px;}
.y16a{bottom:424.080000px;}
.y46{bottom:425.055000px;}
.y213{bottom:432.435000px;}
.y156{bottom:434.415000px;}
.y26a{bottom:435.315000px;}
.y81{bottom:440.355000px;}
.y66{bottom:442.875000px;}
.y190{bottom:443.415000px;}
.y1e{bottom:443.955000px;}
.y238{bottom:448.815000px;}
.y255{bottom:449.895000px;}
.y45{bottom:452.055000px;}
.y212{bottom:459.255000px;}
.y155{bottom:461.415000px;}
.y269{bottom:462.135000px;}
.y1d{bottom:464.655000px;}
.y80{bottom:467.355000px;}
.y65{bottom:469.695000px;}
.y18f{bottom:470.415000px;}
.y237{bottom:475.815000px;}
.y44{bottom:478.875000px;}
.y8f{bottom:481.935000px;}
.y1c{bottom:485.355000px;}
.y211{bottom:486.255000px;}
.y154{bottom:488.235000px;}
.y268{bottom:489.135000px;}
.y7f{bottom:494.175000px;}
.y64{bottom:496.695000px;}
.y18e{bottom:497.235000px;}
.y104{bottom:501.915000px;}
.y236{bottom:502.635000px;}
.y43{bottom:505.875000px;}
.y1b{bottom:506.055000px;}
.y8e{bottom:508.935000px;}
.y210{bottom:513.075000px;}
.y267{bottom:515.955000px;}
.y153{bottom:517.755000px;}
.y7e{bottom:521.175000px;}
.y63{bottom:523.515000px;}
.y18d{bottom:524.235000px;}
.y103{bottom:528.735000px;}
.y235{bottom:532.155000px;}
.y42{bottom:532.695000px;}
.y152{bottom:536.655000px;}
.y20f{bottom:540.075000px;}
.y254{bottom:542.955000px;}
.y7d{bottom:547.995000px;}
.y172{bottom:549.975000px;}
.y62{bottom:550.515000px;}
.y18c{bottom:551.055000px;}
.y102{bottom:555.735000px;}
.y234{bottom:556.095000px;}
.y41{bottom:559.695000px;}
.y151{bottom:560.775000px;}
.y15a{bottom:560.880000px;}
.y20e{bottom:566.895000px;}
.y253{bottom:569.775000px;}
.y1a{bottom:570.855000px;}
.y266{bottom:571.035000px;}
.y7c{bottom:574.995000px;}
.y171{bottom:576.795000px;}
.y61{bottom:577.335000px;}
.y18b{bottom:578.055000px;}
.y123{bottom:580.395000px;}
.y101{bottom:582.555000px;}
.y40{bottom:586.515000px;}
.y19{bottom:588.135000px;}
.y20d{bottom:593.895000px;}
.y252{bottom:596.775000px;}
.y265{bottom:598.035000px;}
.y7b{bottom:601.815000px;}
.y170{bottom:603.795000px;}
.y60{bottom:604.335000px;}
.y18a{bottom:604.875000px;}
.y122{bottom:607.395000px;}
.y100{bottom:609.555000px;}
.y18{bottom:610.635000px;}
.y3f{bottom:613.515000px;}
.y20c{bottom:620.715000px;}
.y17{bottom:622.695000px;}
.y251{bottom:623.625000px;}
.y264{bottom:626.325000px;}
.y7a{bottom:628.845000px;}
.y16f{bottom:630.645000px;}
.y5f{bottom:631.185000px;}
.y189{bottom:631.905000px;}
.y121{bottom:634.245000px;}
.yff{bottom:636.405000px;}
.y3e{bottom:640.365000px;}
.y16{bottom:645.225000px;}
.y20b{bottom:647.745000px;}
.y250{bottom:650.625000px;}
.y263{bottom:653.145000px;}
.y79{bottom:655.665000px;}
.y16e{bottom:657.645000px;}
.y5e{bottom:658.185000px;}
.y120{bottom:661.245000px;}
.y15{bottom:662.505000px;}
.yfe{bottom:663.405000px;}
.y3d{bottom:667.365000px;}
.y20a{bottom:674.565000px;}
.y24f{bottom:677.445000px;}
.y14{bottom:679.605000px;}
.y188{bottom:680.325000px;}
.y262{bottom:681.405000px;}
.y78{bottom:682.665000px;}
.y5d{bottom:685.005000px;}
.y16d{bottom:686.985000px;}
.y11f{bottom:688.065000px;}
.ycb{bottom:690.585000px;}
.yfd{bottom:692.745000px;}
.y3c{bottom:694.185000px;}
.y13{bottom:696.885000px;}
.y1d8{bottom:701.745000px;}
.y209{bottom:704.085000px;}
.y187{bottom:704.265000px;}
.y24e{bottom:704.445000px;}
.y193{bottom:705.780000px;}
.y16c{bottom:705.885000px;}
.y261{bottom:708.225000px;}
.y12{bottom:708.945000px;}
.y77{bottom:709.485000px;}
.yfc{bottom:711.825000px;}
.y5c{bottom:712.005000px;}
.yca{bottom:717.585000px;}
.y1d7{bottom:720.825000px;}
.y3b{bottom:721.185000px;}
.y208{bottom:722.985000px;}
.y1ad{bottom:728.745000px;}
.y24d{bottom:731.265000px;}
.y11{bottom:731.445000px;}
.y16b{bottom:733.965000px;}
.y260{bottom:735.225000px;}
.yfb{bottom:735.765000px;}
.y173{bottom:735.840000px;}
.y76{bottom:736.485000px;}
.y105{bottom:737.640000px;}
.y95{bottom:740.085000px;}
.yc9{bottom:744.405000px;}
.y1d6{bottom:744.765000px;}
.y207{bottom:746.925000px;}
.y1dc{bottom:747.000000px;}
.y1ac{bottom:747.825000px;}
.y3a{bottom:748.005000px;}
.y10{bottom:748.725000px;}
.y21f{bottom:748.800000px;}
.y24c{bottom:758.265000px;}
.y11e{bottom:760.425000px;}
.y127{bottom:761.940000px;}
.y75{bottom:763.305000px;}
.yf{bottom:766.005000px;}
.y94{bottom:766.905000px;}
.yc8{bottom:771.405000px;}
.y1ab{bottom:771.765000px;}
.y1b2{bottom:773.100000px;}
.y39{bottom:775.005000px;}
.y5b{bottom:778.065000px;}
.ye{bottom:783.105000px;}
.y24b{bottom:785.085000px;}
.y74{bottom:790.305000px;}
.y93{bottom:793.905000px;}
.yd{bottom:800.385000px;}
.yc7{bottom:800.745000px;}
.y38{bottom:801.825000px;}
.yc{bottom:812.445000px;}
.y24a{bottom:813.345000px;}
.y73{bottom:817.125000px;}
.yc6{bottom:819.825000px;}
.y92{bottom:823.245000px;}
.y37{bottom:828.825000px;}
.yb{bottom:834.945000px;}
.y249{bottom:841.425000px;}
.y91{bottom:842.325000px;}
.yc5{bottom:843.765000px;}
.yd2{bottom:844.020000px;}
.y72{bottom:844.125000px;}
.y36{bottom:855.645000px;}
.ya{bottom:856.725000px;}
.y90{bottom:866.265000px;}
.y9d{bottom:867.420000px;}
.y248{bottom:868.425000px;}
.y5a{bottom:870.945000px;}
.y9{bottom:877.425000px;}
.y35{bottom:882.690000px;}
.y247{bottom:895.290000px;}
.y59{bottom:897.990000px;}
.y8{bottom:898.170000px;}
.y34{bottom:909.510000px;}
.y246{bottom:922.290000px;}
.y58{bottom:924.810000px;}
.y33{bottom:936.510000px;}
.y245{bottom:949.110000px;}
.y57{bottom:951.810000px;}
.y32{bottom:963.330000px;}
.y244{bottom:976.110000px;}
.y56{bottom:978.630000px;}
.y31{bottom:990.330000px;}
.y7{bottom:1000.050000px;}
.y243{bottom:1004.370000px;}
.y55{bottom:1005.630000px;}
.y30{bottom:1017.150000px;}
.y6{bottom:1024.170000px;}
.y242{bottom:1031.190000px;}
.y54{bottom:1032.450000px;}
.y2f{bottom:1044.150000px;}
.y241{bottom:1058.190000px;}
.y53{bottom:1059.450000px;}
.y2e{bottom:1070.970000px;}
.y240{bottom:1085.010000px;}
.y52{bottom:1086.270000px;}
.y51{bottom:1113.270000px;}
.y4{bottom:1129.110000px;}
.y2d{bottom:1137.030000px;}
.y50{bottom:1140.090000px;}
.y3{bottom:1152.000000px;}
.y2{bottom:1172.880000px;}
.y2c{bottom:1193.400000px;}
.y1{bottom:1193.580000px;}
.h7{height:34.114922px;}
.h9{height:42.295781px;}
.h3{height:42.327773px;}
.h1a{height:44.893125px;}
.hd{height:47.381836px;}
.he{height:47.508187px;}
.hf{height:48.796875px;}
.h23{height:48.894469px;}
.h8{height:52.435898px;}
.h4{height:57.092344px;}
.hb{height:58.121719px;}
.h20{height:58.181836px;}
.ha{height:60.300703px;}
.h17{height:63.101836px;}
.h2{height:63.175781px;}
.h5{height:69.687773px;}
.h6{height:69.867773px;}
.h27{height:75.161836px;}
.h29{height:76.661836px;}
.h1f{height:79.781836px;}
.h22{height:80.741836px;}
.h1e{height:101.201836px;}
.h26{height:102.821836px;}
.h11{height:103.961836px;}
.h1c{height:104.441836px;}
.hc{height:289.080000px;}
.h12{height:312.480000px;}
.h10{height:317.340000px;}
.h13{height:349.740000px;}
.h1d{height:383.400000px;}
.h15{height:394.560000px;}
.h16{height:402.120000px;}
.h28{height:407.700000px;}
.h24{height:409.500000px;}
.h21{height:416.880000px;}
.h14{height:418.860000px;}
.h19{height:420.660000px;}
.h25{height:426.240000px;}
.h1b{height:450.720000px;}
.h18{height:452.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:607.500000px;}
.w4{width:626.940000px;}
.wa{width:646.200000px;}
.w9{width:653.400000px;}
.wc{width:664.560000px;}
.wf{width:666.540000px;}
.w5{width:669.060000px;}
.wb{width:670.320000px;}
.we{width:672.660000px;}
.w8{width:673.920000px;}
.w7{width:680.400000px;}
.w6{width:681.120000px;}
.wd{width:681.480000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:10.224000px;}
.x41{left:16.956000px;}
.x20{left:31.500000px;}
.x1e{left:38.910000px;}
.x1d{left:45.645000px;}
.x2c{left:54.435000px;}
.x2b{left:61.200000px;}
.x22{left:65.955000px;}
.x2f{left:67.575000px;}
.x8f{left:69.195000px;}
.x7c{left:71.640000px;}
.x38{left:74.310000px;}
.x90{left:75.600000px;}
.x8a{left:77.685000px;}
.x5b{left:79.020000px;}
.x9a{left:80.610000px;}
.x7f{left:83.010000px;}
.x4e{left:87.225000px;}
.x9b{left:90.000000px;}
.x96{left:95.115000px;}
.x51{left:97.095000px;}
.x3b{left:99.975000px;}
.x2d{left:103.140000px;}
.x2{left:106.415987px;}
.x1{left:107.855987px;}
.x24{left:110.310000px;}
.x6b{left:111.600000px;}
.x7{left:113.975987px;}
.x66{left:117.750000px;}
.x5c{left:119.730000px;}
.x4c{left:121.035000px;}
.x62{left:122.505000px;}
.xad{left:127.080000px;}
.x59{left:131.910000px;}
.x18{left:133.020000px;}
.xb{left:134.135987px;}
.x75{left:136.590000px;}
.xab{left:137.910000px;}
.x54{left:139.650000px;}
.x19{left:142.275000px;}
.x72{left:146.550000px;}
.xa{left:147.815987px;}
.x64{left:148.895987px;}
.x8{left:149.975987px;}
.x5f{left:151.305000px;}
.xd{left:153.389987px;}
.x5{left:155.009987px;}
.xc{left:157.889987px;}
.x15{left:160.229987px;}
.xb1{left:162.029987px;}
.x32{left:164.910000px;}
.x10{left:167.609987px;}
.x12{left:171.209987px;}
.x3e{left:177.630000px;}
.x1f{left:182.805000px;}
.x6{left:187.949987px;}
.x6c{left:190.650000px;}
.x91{left:191.880000px;}
.x49{left:196.665000px;}
.x7d{left:199.185000px;}
.xe{left:201.989987px;}
.x9c{left:204.765000px;}
.x9d{left:206.280000px;}
.x25{left:214.305000px;}
.x36{left:215.490000px;}
.xb0{left:217.155000px;}
.x84{left:221.295000px;}
.x50{left:224.640000px;}
.x6e{left:225.720000px;}
.x65{left:227.775000px;}
.x4f{left:234.510000px;}
.x4{left:236.729987px;}
.xa9{left:238.500000px;}
.x1b{left:241.050000px;}
.x11{left:245.189987px;}
.x45{left:246.855000px;}
.x23{left:250.815000px;}
.x76{left:252.360000px;}
.x27{left:254.130000px;}
.x9{left:258.509987px;}
.x9e{left:262.875000px;}
.x9f{left:264.390000px;}
.x97{left:269.490000px;}
.x34{left:272.490000px;}
.x3{left:275.294987px;}
.x47{left:281.370000px;}
.x13{left:285.554987px;}
.x69{left:288.690000px;}
.x8e{left:292.140000px;}
.x52{left:293.430000px;}
.x60{left:296.925000px;}
.x3c{left:299.490000px;}
.x6a{left:301.425000px;}
.x30{left:302.970000px;}
.x8b{left:309.810000px;}
.xaf{left:310.860000px;}
.x39{left:312.120000px;}
.x21{left:313.380000px;}
.x5a{left:314.970000px;}
.x43{left:319.755000px;}
.x4d{left:322.950000px;}
.x3a{left:324.030000px;}
.x61{left:331.920000px;}
.x85{left:333.390000px;}
.x86{left:336.855000px;}
.x2e{left:339.690000px;}
.x8d{left:341.280000px;}
.xae{left:342.825000px;}
.x37{left:349.350000px;}
.xf{left:351.614987px;}
.xa7{left:354.705000px;}
.x28{left:358.170000px;}
.x77{left:364.710000px;}
.x92{left:366.270000px;}
.x14{left:371.054987px;}
.x80{left:372.420000px;}
.x3f{left:377.130000px;}
.xa0{left:380.670000px;}
.x55{left:381.960000px;}
.x88{left:386.565000px;}
.x7a{left:389.805000px;}
.x46{left:393.810000px;}
.x6f{left:397.905000px;}
.x1a{left:400.320000px;}
.x67{left:402.150000px;}
.x5d{left:414.435000px;}
.x57{left:424.545000px;}
.x26{left:425.775000px;}
.x70{left:427.965000px;}
.x73{left:430.275000px;}
.xa1{left:437.295000px;}
.xa2{left:438.765000px;}
.x98{left:443.910000px;}
.x33{left:445.965000px;}
.x87{left:454.935000px;}
.x48{left:456.015000px;}
.x71{left:458.025000px;}
.x29{left:462.165000px;}
.x81{left:465.480000px;}
.x78{left:480.495000px;}
.x93{left:482.505000px;}
.x4a{left:487.110000px;}
.x53{left:493.200000px;}
.xa3{left:495.390000px;}
.xa4{left:496.905000px;}
.x1c{left:499.110000px;}
.x3d{left:502.410000px;}
.x89{left:504.645000px;}
.x7b{left:509.010000px;}
.xaa{left:526.110000px;}
.x68{left:542.625000px;}
.x94{left:544.065000px;}
.x74{left:549.510000px;}
.x35{left:553.530000px;}
.xa5{left:555.045000px;}
.x5e{left:560.085000px;}
.x82{left:561.930000px;}
.xac{left:565.890000px;}
.x2a{left:569.595000px;}
.x56{left:578.310000px;}
.x40{left:580.065000px;}
.x83{left:582.840000px;}
.x79{left:599.685000px;}
.xa6{left:600.990000px;}
.x95{left:602.205000px;}
.x99{left:618.300000px;}
.x58{left:620.895000px;}
.x8c{left:622.590000px;}
.x4b{left:630.645000px;}
.x16{left:740.849987px;}
.x17{left:760.469987px;}
.x6d{left:768.569987px;}
.x63{left:773.969987px;}
.x7e{left:779.549987px;}
.xa8{left:780.629987px;}
.x31{left:781.889987px;}
.xb2{left:786.929987px;}
.x44{left:788.189987px;}
@media print{
.v10{vertical-align:-49.280000pt;}
.v5{vertical-align:-33.546667pt;}
.v7{vertical-align:-29.973333pt;}
.v8{vertical-align:-27.146667pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.v6{vertical-align:-14.986667pt;}
.va{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:9.600000pt;}
.v12{vertical-align:12.960000pt;}
.v9{vertical-align:13.973333pt;}
.v1{vertical-align:24.320000pt;}
.v11{vertical-align:26.026667pt;}
.vd{vertical-align:28.800000pt;}
.vc{vertical-align:38.240000pt;}
.vb{vertical-align:47.840000pt;}
.vf{vertical-align:49.280000pt;}
.v4{vertical-align:50.293333pt;}
.ls19{letter-spacing:-2.816000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.768000pt;}
.ls9{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.920000pt;}
.ls14{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.840000pt;}
.ls6{letter-spacing:11.413333pt;}
.ls1{letter-spacing:11.680000pt;}
.ls0{letter-spacing:12.960000pt;}
.lsd{letter-spacing:16.000000pt;}
.lsc{letter-spacing:18.863360pt;}
.lsf{letter-spacing:20.480000pt;}
.ls10{letter-spacing:30.186667pt;}
.ls16{letter-spacing:30.208000pt;}
.ls13{letter-spacing:36.586667pt;}
.ls15{letter-spacing:48.746667pt;}
.wsd{word-spacing:-64.000000pt;}
.ws2{word-spacing:-27.413333pt;}
.wsc{word-spacing:-19.040000pt;}
.ws35{word-spacing:-16.768000pt;}
.wse{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.ws36{word-spacing:-13.184000pt;}
.ws24{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.032000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws6{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws1{word-spacing:-4.672000pt;}
.ws0{word-spacing:-4.288000pt;}
.wsb{word-spacing:0.000000pt;}
.ws2c{word-spacing:38.944000pt;}
.ws17{word-spacing:46.784000pt;}
.ws12{word-spacing:46.890667pt;}
.ws15{word-spacing:46.944000pt;}
.ws2b{word-spacing:50.042667pt;}
.ws27{word-spacing:63.568000pt;}
.ws2e{word-spacing:105.456000pt;}
.ws2d{word-spacing:129.776000pt;}
.ws25{word-spacing:172.298667pt;}
.ws21{word-spacing:265.936000pt;}
.ws20{word-spacing:265.989333pt;}
.ws22{word-spacing:266.096000pt;}
.ws13{word-spacing:268.656000pt;}
.ws14{word-spacing:292.976000pt;}
.ws29{word-spacing:306.416000pt;}
.ws28{word-spacing:330.576000pt;}
.ws2a{word-spacing:330.736000pt;}
.ws1f{word-spacing:334.682667pt;}
.ws33{word-spacing:387.040000pt;}
.ws1e{word-spacing:416.122667pt;}
.ws1c{word-spacing:416.496000pt;}
.ws19{word-spacing:433.242667pt;}
.ws1a{word-spacing:433.402667pt;}
.ws31{word-spacing:434.309333pt;}
.ws32{word-spacing:434.416000pt;}
.ws1d{word-spacing:440.922667pt;}
.ws18{word-spacing:535.770667pt;}
.ws2f{word-spacing:543.056000pt;}
.ws1b{word-spacing:621.189333pt;}
.ws11{word-spacing:779.552000pt;}
.ws16{word-spacing:830.688939pt;}
.ws23{word-spacing:952.016000pt;}
.ws34{word-spacing:975.904000pt;}
.ws26{word-spacing:982.357333pt;}
.ws30{word-spacing:986.677333pt;}
._40{margin-left:-333.264000pt;}
._51{margin-left:-7.424000pt;}
._4f{margin-left:-6.261333pt;}
._21{margin-left:-4.864000pt;}
._1d{margin-left:-3.456000pt;}
._17{margin-left:-2.368000pt;}
._4{margin-left:-1.472000pt;}
._3{width:0.960000pt;}
._9{width:2.129707pt;}
._8{width:3.055573pt;}
._f{width:4.074667pt;}
._28{width:4.992000pt;}
._15{width:5.888000pt;}
._c{width:6.912000pt;}
._e{width:8.000000pt;}
._d{width:8.938667pt;}
._0{width:9.984000pt;}
._2{width:11.402667pt;}
._1{width:12.490667pt;}
._a{width:13.600000pt;}
._b{width:14.517333pt;}
._1f{width:17.088000pt;}
._20{width:17.984000pt;}
._26{width:18.944000pt;}
._1e{width:20.533333pt;}
._12{width:21.504000pt;}
._13{width:22.592000pt;}
._27{width:23.488000pt;}
._10{width:24.384000pt;}
._14{width:25.344000pt;}
._16{width:26.688000pt;}
._18{width:28.416000pt;}
._19{width:29.376000pt;}
._25{width:30.528000pt;}
._4e{width:31.424000pt;}
._29{width:32.576000pt;}
._4d{width:33.664000pt;}
._24{width:34.816000pt;}
._22{width:36.544000pt;}
._23{width:37.568000pt;}
._4b{width:38.592000pt;}
._4c{width:39.552000pt;}
._50{width:43.200000pt;}
._43{width:48.528000pt;}
._1b{width:65.738667pt;}
._47{width:74.256000pt;}
._49{width:77.914667pt;}
._31{width:80.437419pt;}
._36{width:85.909333pt;}
._4a{width:102.048000pt;}
._2a{width:116.533333pt;}
._46{width:117.792000pt;}
._2c{width:122.629333pt;}
._2b{width:144.549333pt;}
._37{width:150.816000pt;}
._2e{width:161.696000pt;}
._44{width:165.648000pt;}
._33{width:169.269333pt;}
._3a{width:175.109333pt;}
._38{width:180.576000pt;}
._2f{width:192.256000pt;}
._41{width:196.400000pt;}
._45{width:197.664000pt;}
._34{width:199.829333pt;}
._42{width:232.549333pt;}
._3f{width:256.384000pt;}
._3b{width:268.485333pt;}
._39{width:274.885333pt;}
._3e{width:276.944000pt;}
._30{width:285.765333pt;}
._3c{width:290.416000pt;}
._3d{width:291.738667pt;}
._35{width:293.178667pt;}
._48{width:335.914667pt;}
._5{width:349.909333pt;}
._6{width:350.850133pt;}
._32{width:379.722667pt;}
._2d{width:566.890667pt;}
._7{width:617.760000pt;}
._11{width:737.418667pt;}
._1a{width:752.138667pt;}
._1c{width:1494.666667pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs1{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:12.026667pt;}
.y1ee{bottom:13.693333pt;}
.yfa{bottom:14.626667pt;}
.y13e{bottom:14.653333pt;}
.yc4{bottom:14.693333pt;}
.y11d{bottom:14.720000pt;}
.yab{bottom:28.293333pt;}
.yc2{bottom:33.626667pt;}
.ye2{bottom:34.946667pt;}
.yf7{bottom:39.386667pt;}
.y1e8{bottom:40.293333pt;}
.ya9{bottom:46.053333pt;}
.y13b{bottom:48.226667pt;}
.y14e{bottom:48.253333pt;}
.y11a{bottom:48.293333pt;}
.y230{bottom:48.320000pt;}
.y5{bottom:49.760000pt;}
.yc0{bottom:51.386667pt;}
.ye0{bottom:52.733333pt;}
.yf6{bottom:57.146667pt;}
.ya0{bottom:60.160000pt;}
.y204{bottom:64.986667pt;}
.y1c0{bottom:65.026667pt;}
.y22e{bottom:65.093333pt;}
.yb7{bottom:65.506667pt;}
.y168{bottom:65.986667pt;}
.y139{bottom:66.013333pt;}
.y1a7{bottom:66.053333pt;}
.y118{bottom:66.080000pt;}
.yd7{bottom:66.813333pt;}
.y1dd{bottom:69.986667pt;}
.yec{bottom:71.266667pt;}
.ya1{bottom:78.653333pt;}
.y162{bottom:80.066667pt;}
.y132{bottom:80.093333pt;}
.y111{bottom:80.160000pt;}
.yd8{bottom:84.773333pt;}
.ye9{bottom:85.666667pt;}
.y203{bottom:86.400000pt;}
.yb8{bottom:86.426667pt;}
.y22d{bottom:86.493333pt;}
.yaa{bottom:86.586667pt;}
.ye6{bottom:89.733333pt;}
.ye1{bottom:91.133333pt;}
.yed{bottom:91.680000pt;}
.y10d{bottom:92.506667pt;}
.y1e9{bottom:94.786667pt;}
.y12f{bottom:95.840000pt;}
.y143{bottom:95.973333pt;}
.y178{bottom:96.226667pt;}
.y160{bottom:96.666667pt;}
.ya2{bottom:97.146667pt;}
.yb1{bottom:98.786667pt;}
.y194{bottom:98.813333pt;}
.y108{bottom:100.000000pt;}
.y202{bottom:100.186667pt;}
.y1b8{bottom:100.546667pt;}
.y226{bottom:100.613333pt;}
.yc1{bottom:101.853333pt;}
.y25f{bottom:101.952000pt;}
.y1e2{bottom:102.306667pt;}
.y126{bottom:102.432000pt;}
.y131{bottom:102.626667pt;}
.yd9{bottom:102.746667pt;}
.yb6{bottom:102.973333pt;}
.y17d{bottom:103.773333pt;}
.y8d{bottom:104.512000pt;}
.y276{bottom:106.592000pt;}
.y1c6{bottom:107.333333pt;}
.yb9{bottom:107.386667pt;}
.y110{bottom:107.520000pt;}
.y17b{bottom:107.546667pt;}
.y12a{bottom:109.413333pt;}
.ye7{bottom:110.173333pt;}
.y19f{bottom:111.813333pt;}
.yee{bottom:112.133333pt;}
.y12c{bottom:112.800000pt;}
.y141{bottom:113.466667pt;}
.y15f{bottom:113.626667pt;}
.y133{bottom:114.013333pt;}
.y1fc{bottom:114.306667pt;}
.y148{bottom:115.106667pt;}
.y1b3{bottom:115.266667pt;}
.ya3{bottom:115.653333pt;}
.y12e{bottom:116.186667pt;}
.y1cd{bottom:117.280000pt;}
.y112{bottom:117.666667pt;}
.y19c{bottom:117.826667pt;}
.y17e{bottom:117.853333pt;}
.yea{bottom:118.333333pt;}
.y1e5{bottom:118.466667pt;}
.y125{bottom:119.232000pt;}
.y147{bottom:120.453333pt;}
.yda{bottom:120.706667pt;}
.y21e{bottom:121.312000pt;}
.y10c{bottom:122.493333pt;}
.y275{bottom:123.712000pt;}
.y197{bottom:124.160000pt;}
.y1b9{bottom:124.480000pt;}
.y25e{bottom:125.952000pt;}
.y10a{bottom:126.266667pt;}
.y129{bottom:126.373333pt;}
.y177{bottom:126.426667pt;}
.yba{bottom:128.346667pt;}
.y8c{bottom:128.352000pt;}
.y233{bottom:128.512000pt;}
.yd6{bottom:129.466667pt;}
.y107{bottom:130.013333pt;}
.y71{bottom:130.432000pt;}
.y13a{bottom:131.933333pt;}
.yef{bottom:132.546667pt;}
.y1fb{bottom:132.800000pt;}
.y227{bottom:133.026667pt;}
.y9e{bottom:133.533333pt;}
.ya4{bottom:134.146667pt;}
.y14d{bottom:135.333333pt;}
.y224{bottom:135.653333pt;}
.y1cb{bottom:137.093333pt;}
.ydb{bottom:138.693333pt;}
.y1f9{bottom:138.973333pt;}
.y124{bottom:140.666667pt;}
.y13f{bottom:141.280000pt;}
.y1b5{bottom:141.600000pt;}
.y1d3{bottom:141.893333pt;}
.y1a0{bottom:143.453333pt;}
.y184{bottom:143.520000pt;}
.yd4{bottom:143.840000pt;}
.yb5{bottom:144.866667pt;}
.y142{bottom:144.960000pt;}
.y1f3{bottom:145.120000pt;}
.y21d{bottom:145.146667pt;}
.y119{bottom:145.186667pt;}
.y1c1{bottom:146.533333pt;}
.y15e{bottom:147.586667pt;}
.y274{bottom:147.706667pt;}
.y134{bottom:147.906667pt;}
.y22f{bottom:148.000000pt;}
.y1ba{bottom:148.386667pt;}
.yd1{bottom:148.506667pt;}
.y10f{bottom:148.733333pt;}
.y1b7{bottom:148.773333pt;}
.yb2{bottom:149.053333pt;}
.y17c{bottom:149.093333pt;}
.ybb{bottom:149.280000pt;}
.y19e{bottom:149.466667pt;}
.y25d{bottom:149.786667pt;}
.y149{bottom:150.106667pt;}
.y1de{bottom:150.786667pt;}
.y8b{bottom:152.346667pt;}
.ya5{bottom:152.640000pt;}
.yf0{bottom:152.960000pt;}
.y128{bottom:153.466667pt;}
.y70{bottom:154.426667pt;}
.y1ce{bottom:154.493333pt;}
.y113{bottom:155.133333pt;}
.y2b{bottom:155.386667pt;}
.y17f{bottom:155.653333pt;}
.ydc{bottom:156.640000pt;}
.y1a8{bottom:156.960000pt;}
.yaf{bottom:157.440000pt;}
.y169{bottom:157.506667pt;}
.y17a{bottom:160.413333pt;}
.y146{bottom:162.466667pt;}
.y4f{bottom:162.746667pt;}
.y1f7{bottom:163.613333pt;}
.y15d{bottom:164.546667pt;}
.y225{bottom:164.826667pt;}
.y163{bottom:164.933333pt;}
.y228{bottom:165.466667pt;}
.y1ca{bottom:166.813333pt;}
.y1e0{bottom:166.946667pt;}
.y106{bottom:167.493333pt;}
.y21c{bottom:169.146667pt;}
.y145{bottom:169.466667pt;}
.y1f8{bottom:169.786667pt;}
.ybc{bottom:170.240000pt;}
.ya6{bottom:171.133333pt;}
.y273{bottom:171.546667pt;}
.y1bb{bottom:172.320000pt;}
.yd0{bottom:172.346667pt;}
.y205{bottom:172.386667pt;}
.yf1{bottom:173.413333pt;}
.y2a{bottom:173.786667pt;}
.y1c5{bottom:174.266667pt;}
.ydd{bottom:174.626667pt;}
.y199{bottom:174.813333pt;}
.y1a1{bottom:175.133333pt;}
.y175{bottom:175.546667pt;}
.y1ea{bottom:175.586667pt;}
.y1fd{bottom:175.906667pt;}
.y1fa{bottom:175.933333pt;}
.y8a{bottom:176.186667pt;}
.y6f{bottom:178.266667pt;}
.y12d{bottom:180.613333pt;}
.y135{bottom:181.786667pt;}
.y1e3{bottom:183.106667pt;}
.y140{bottom:183.453333pt;}
.y14a{bottom:185.120000pt;}
.y15c{bottom:185.760000pt;}
.y10b{bottom:186.240000pt;}
.y4e{bottom:186.426667pt;}
.ya7{bottom:189.626667pt;}
.y176{bottom:190.653333pt;}
.y222{bottom:190.786667pt;}
.yb3{bottom:190.973333pt;}
.ybd{bottom:191.200000pt;}
.y1cf{bottom:191.680000pt;}
.y29{bottom:192.186667pt;}
.yde{bottom:192.573333pt;}
.y114{bottom:192.640000pt;}
.y21b{bottom:192.986667pt;}
.y180{bottom:193.413333pt;}
.yf2{bottom:193.826667pt;}
.y1db{bottom:193.946667pt;}
.y220{bottom:194.013333pt;}
.yd3{bottom:194.146667pt;}
.y1f0{bottom:194.426667pt;}
.y272{bottom:195.546667pt;}
.y1bc{bottom:196.253333pt;}
.ycf{bottom:196.346667pt;}
.y9f{bottom:196.453333pt;}
.y25c{bottom:197.626667pt;}
.y229{bottom:197.893333pt;}
.y1e6{bottom:199.266667pt;}
.y89{bottom:200.186667pt;}
.y1f4{bottom:200.573333pt;}
.y1b1{bottom:201.146667pt;}
.y6e{bottom:202.266667pt;}
.y1c9{bottom:204.026667pt;}
.y1fe{bottom:206.720000pt;}
.y1a2{bottom:206.786667pt;}
.y164{bottom:207.360000pt;}
.y23f{bottom:207.706667pt;}
.ya8{bottom:208.160000pt;}
.yd5{bottom:208.506667pt;}
.y4d{bottom:210.426667pt;}
.ydf{bottom:210.533333pt;}
.y28{bottom:210.586667pt;}
.y1da{bottom:210.906667pt;}
.ybe{bottom:212.133333pt;}
.y19d{bottom:212.800000pt;}
.yf3{bottom:214.266667pt;}
.y9c{bottom:215.386667pt;}
.y136{bottom:215.706667pt;}
.y21a{bottom:216.986667pt;}
.y271{bottom:219.386667pt;}
.y14b{bottom:220.093333pt;}
.yce{bottom:220.186667pt;}
.yb4{bottom:220.293333pt;}
.y25b{bottom:221.626667pt;}
.y88{bottom:224.026667pt;}
.yb0{bottom:224.480000pt;}
.y1b0{bottom:225.946667pt;}
.y6d{bottom:226.106667pt;}
.y1c4{bottom:226.333333pt;}
.y1d0{bottom:228.866667pt;}
.y27{bottom:228.986667pt;}
.y115{bottom:230.106667pt;}
.y22a{bottom:230.333333pt;}
.y181{bottom:231.173333pt;}
.y23e{bottom:231.546667pt;}
.y1df{bottom:231.586667pt;}
.yac{bottom:232.093333pt;}
.y1d9{bottom:232.186667pt;}
.ybf{bottom:233.093333pt;}
.y1ef{bottom:233.440000pt;}
.y4c{bottom:234.266667pt;}
.ye4{bottom:234.493333pt;}
.yf4{bottom:234.693333pt;}
.y1ff{bottom:237.533333pt;}
.y1f5{bottom:237.573333pt;}
.y198{bottom:238.146667pt;}
.y1a3{bottom:238.426667pt;}
.y9b{bottom:239.226667pt;}
.y219{bottom:240.826667pt;}
.y1c7{bottom:241.213333pt;}
.y1af{bottom:242.906667pt;}
.y270{bottom:243.386667pt;}
.y1bd{bottom:244.133333pt;}
.y25a{bottom:245.466667pt;}
.ycd{bottom:246.266667pt;}
.y26{bottom:247.386667pt;}
.y1e1{bottom:247.746667pt;}
.y87{bottom:248.026667pt;}
.y130{bottom:248.386667pt;}
.y137{bottom:249.600000pt;}
.y165{bottom:249.760000pt;}
.y6c{bottom:250.106667pt;}
.y174{bottom:251.066667pt;}
.yeb{bottom:251.133333pt;}
.ye3{bottom:252.893333pt;}
.yf5{bottom:255.106667pt;}
.ye8{bottom:255.200000pt;}
.y23d{bottom:255.386667pt;}
.y1eb{bottom:256.386667pt;}
.y196{bottom:257.120000pt;}
.yc3{bottom:257.346667pt;}
.y4b{bottom:258.266667pt;}
.y22b{bottom:262.746667pt;}
.y9a{bottom:263.226667pt;}
.y1e4{bottom:263.906667pt;}
.y1ae{bottom:264.186667pt;}
.y218{bottom:264.826667pt;}
.y1c3{bottom:265.760000pt;}
.y25{bottom:265.786667pt;}
.y1d1{bottom:266.053333pt;}
.y26f{bottom:267.226667pt;}
.y144{bottom:267.453333pt;}
.y116{bottom:267.613333pt;}
.y1be{bottom:268.066667pt;}
.yf9{bottom:268.293333pt;}
.y1f6{bottom:268.346667pt;}
.y1b6{bottom:268.453333pt;}
.y223{bottom:268.613333pt;}
.y182{bottom:268.933333pt;}
.y259{bottom:269.466667pt;}
.y19a{bottom:269.786667pt;}
.y1a4{bottom:270.106667pt;}
.y15b{bottom:270.586667pt;}
.y1cc{bottom:270.946667pt;}
.y86{bottom:271.866667pt;}
.y10e{bottom:272.480000pt;}
.y6b{bottom:273.946667pt;}
.y1f1{bottom:274.533333pt;}
.y195{bottom:276.133333pt;}
.y23c{bottom:279.386667pt;}
.y1e7{bottom:280.066667pt;}
.y179{bottom:281.280000pt;}
.y4a{bottom:282.106667pt;}
.y138{bottom:283.493333pt;}
.y24{bottom:284.186667pt;}
.ycc{bottom:284.506667pt;}
.y12b{bottom:285.693333pt;}
.ye5{bottom:285.760000pt;}
.yf8{bottom:286.693333pt;}
.y99{bottom:287.066667pt;}
.y217{bottom:288.666667pt;}
.y14c{bottom:290.106667pt;}
.y26e{bottom:291.226667pt;}
.y1bf{bottom:292.000000pt;}
.y166{bottom:292.186667pt;}
.y1b4{bottom:292.386667pt;}
.y1c8{bottom:293.280000pt;}
.y258{bottom:293.306667pt;}
.y22c{bottom:295.173333pt;}
.y85{bottom:295.866667pt;}
.y221{bottom:297.786667pt;}
.y6a{bottom:297.946667pt;}
.y200{bottom:299.133333pt;}
.y1a5{bottom:301.760000pt;}
.y109{bottom:302.466667pt;}
.y23{bottom:302.586667pt;}
.y1d2{bottom:303.226667pt;}
.y161{bottom:304.546667pt;}
.y117{bottom:305.093333pt;}
.y1f2{bottom:305.346667pt;}
.y49{bottom:306.106667pt;}
.y183{bottom:306.693333pt;}
.y13d{bottom:307.453333pt;}
.y19b{bottom:307.773333pt;}
.y98{bottom:310.906667pt;}
.y216{bottom:312.666667pt;}
.y150{bottom:314.053333pt;}
.y159{bottom:314.426667pt;}
.y1c2{bottom:314.586667pt;}
.y26d{bottom:315.066667pt;}
.y257{bottom:317.306667pt;}
.y232{bottom:319.133333pt;}
.y84{bottom:319.706667pt;}
.y1ed{bottom:320.733333pt;}
.y22{bottom:320.986667pt;}
.y69{bottom:321.786667pt;}
.y13c{bottom:325.853333pt;}
.y1d5{bottom:327.173333pt;}
.y23b{bottom:327.266667pt;}
.y11c{bottom:327.706667pt;}
.y201{bottom:329.946667pt;}
.y48{bottom:329.986667pt;}
.y186{bottom:330.653333pt;}
.y14f{bottom:332.453333pt;}
.y1a6{bottom:333.413333pt;}
.y167{bottom:334.626667pt;}
.y215{bottom:336.546667pt;}
.y97{bottom:337.186667pt;}
.y231{bottom:337.533333pt;}
.y158{bottom:338.306667pt;}
.y26c{bottom:339.106667pt;}
.y1ec{bottom:339.133333pt;}
.y21{bottom:339.426667pt;}
.y256{bottom:341.186667pt;}
.y83{bottom:343.746667pt;}
.y1d4{bottom:345.600000pt;}
.y68{bottom:345.826667pt;}
.y11b{bottom:346.106667pt;}
.y192{bottom:346.306667pt;}
.y206{bottom:348.933333pt;}
.y185{bottom:349.053333pt;}
.y23a{bottom:351.106667pt;}
.y1aa{bottom:352.386667pt;}
.y47{bottom:353.986667pt;}
.y20{bottom:357.826667pt;}
.y96{bottom:358.466667pt;}
.yae{bottom:358.560000pt;}
.y214{bottom:360.386667pt;}
.y157{bottom:362.306667pt;}
.y26b{bottom:362.946667pt;}
.y82{bottom:367.586667pt;}
.y67{bottom:369.666667pt;}
.y191{bottom:370.306667pt;}
.y1a9{bottom:370.786667pt;}
.y239{bottom:375.106667pt;}
.y1f{bottom:376.226667pt;}
.y16a{bottom:376.960000pt;}
.y46{bottom:377.826667pt;}
.y213{bottom:384.386667pt;}
.y156{bottom:386.146667pt;}
.y26a{bottom:386.946667pt;}
.y81{bottom:391.426667pt;}
.y66{bottom:393.666667pt;}
.y190{bottom:394.146667pt;}
.y1e{bottom:394.626667pt;}
.y238{bottom:398.946667pt;}
.y255{bottom:399.906667pt;}
.y45{bottom:401.826667pt;}
.y212{bottom:408.226667pt;}
.y155{bottom:410.146667pt;}
.y269{bottom:410.786667pt;}
.y1d{bottom:413.026667pt;}
.y80{bottom:415.426667pt;}
.y65{bottom:417.506667pt;}
.y18f{bottom:418.146667pt;}
.y237{bottom:422.946667pt;}
.y44{bottom:425.666667pt;}
.y8f{bottom:428.386667pt;}
.y1c{bottom:431.426667pt;}
.y211{bottom:432.226667pt;}
.y154{bottom:433.986667pt;}
.y268{bottom:434.786667pt;}
.y7f{bottom:439.266667pt;}
.y64{bottom:441.506667pt;}
.y18e{bottom:441.986667pt;}
.y104{bottom:446.146667pt;}
.y236{bottom:446.786667pt;}
.y43{bottom:449.666667pt;}
.y1b{bottom:449.826667pt;}
.y8e{bottom:452.386667pt;}
.y210{bottom:456.066667pt;}
.y267{bottom:458.626667pt;}
.y153{bottom:460.226667pt;}
.y7e{bottom:463.266667pt;}
.y63{bottom:465.346667pt;}
.y18d{bottom:465.986667pt;}
.y103{bottom:469.986667pt;}
.y235{bottom:473.026667pt;}
.y42{bottom:473.506667pt;}
.y152{bottom:477.026667pt;}
.y20f{bottom:480.066667pt;}
.y254{bottom:482.626667pt;}
.y7d{bottom:487.106667pt;}
.y172{bottom:488.866667pt;}
.y62{bottom:489.346667pt;}
.y18c{bottom:489.826667pt;}
.y102{bottom:493.986667pt;}
.y234{bottom:494.306667pt;}
.y41{bottom:497.506667pt;}
.y151{bottom:498.466667pt;}
.y15a{bottom:498.560000pt;}
.y20e{bottom:503.906667pt;}
.y253{bottom:506.466667pt;}
.y1a{bottom:507.426667pt;}
.y266{bottom:507.586667pt;}
.y7c{bottom:511.106667pt;}
.y171{bottom:512.706667pt;}
.y61{bottom:513.186667pt;}
.y18b{bottom:513.826667pt;}
.y123{bottom:515.906667pt;}
.y101{bottom:517.826667pt;}
.y40{bottom:521.346667pt;}
.y19{bottom:522.786667pt;}
.y20d{bottom:527.906667pt;}
.y252{bottom:530.466667pt;}
.y265{bottom:531.586667pt;}
.y7b{bottom:534.946667pt;}
.y170{bottom:536.706667pt;}
.y60{bottom:537.186667pt;}
.y18a{bottom:537.666667pt;}
.y122{bottom:539.906667pt;}
.y100{bottom:541.826667pt;}
.y18{bottom:542.786667pt;}
.y3f{bottom:545.346667pt;}
.y20c{bottom:551.746667pt;}
.y17{bottom:553.506667pt;}
.y251{bottom:554.333333pt;}
.y264{bottom:556.733333pt;}
.y7a{bottom:558.973333pt;}
.y16f{bottom:560.573333pt;}
.y5f{bottom:561.053333pt;}
.y189{bottom:561.693333pt;}
.y121{bottom:563.773333pt;}
.yff{bottom:565.693333pt;}
.y3e{bottom:569.213333pt;}
.y16{bottom:573.533333pt;}
.y20b{bottom:575.773333pt;}
.y250{bottom:578.333333pt;}
.y263{bottom:580.573333pt;}
.y79{bottom:582.813333pt;}
.y16e{bottom:584.573333pt;}
.y5e{bottom:585.053333pt;}
.y120{bottom:587.773333pt;}
.y15{bottom:588.893333pt;}
.yfe{bottom:589.693333pt;}
.y3d{bottom:593.213333pt;}
.y20a{bottom:599.613333pt;}
.y24f{bottom:602.173333pt;}
.y14{bottom:604.093333pt;}
.y188{bottom:604.733333pt;}
.y262{bottom:605.693333pt;}
.y78{bottom:606.813333pt;}
.y5d{bottom:608.893333pt;}
.y16d{bottom:610.653333pt;}
.y11f{bottom:611.613333pt;}
.ycb{bottom:613.853333pt;}
.yfd{bottom:615.773333pt;}
.y3c{bottom:617.053333pt;}
.y13{bottom:619.453333pt;}
.y1d8{bottom:623.773333pt;}
.y209{bottom:625.853333pt;}
.y187{bottom:626.013333pt;}
.y24e{bottom:626.173333pt;}
.y193{bottom:627.360000pt;}
.y16c{bottom:627.453333pt;}
.y261{bottom:629.533333pt;}
.y12{bottom:630.173333pt;}
.y77{bottom:630.653333pt;}
.yfc{bottom:632.733333pt;}
.y5c{bottom:632.893333pt;}
.yca{bottom:637.853333pt;}
.y1d7{bottom:640.733333pt;}
.y3b{bottom:641.053333pt;}
.y208{bottom:642.653333pt;}
.y1ad{bottom:647.773333pt;}
.y24d{bottom:650.013333pt;}
.y11{bottom:650.173333pt;}
.y16b{bottom:652.413333pt;}
.y260{bottom:653.533333pt;}
.yfb{bottom:654.013333pt;}
.y173{bottom:654.080000pt;}
.y76{bottom:654.653333pt;}
.y105{bottom:655.680000pt;}
.y95{bottom:657.853333pt;}
.yc9{bottom:661.693333pt;}
.y1d6{bottom:662.013333pt;}
.y207{bottom:663.933333pt;}
.y1dc{bottom:664.000000pt;}
.y1ac{bottom:664.733333pt;}
.y3a{bottom:664.893333pt;}
.y10{bottom:665.533333pt;}
.y21f{bottom:665.600000pt;}
.y24c{bottom:674.013333pt;}
.y11e{bottom:675.933333pt;}
.y127{bottom:677.280000pt;}
.y75{bottom:678.493333pt;}
.yf{bottom:680.893333pt;}
.y94{bottom:681.693333pt;}
.yc8{bottom:685.693333pt;}
.y1ab{bottom:686.013333pt;}
.y1b2{bottom:687.200000pt;}
.y39{bottom:688.893333pt;}
.y5b{bottom:691.613333pt;}
.ye{bottom:696.093333pt;}
.y24b{bottom:697.853333pt;}
.y74{bottom:702.493333pt;}
.y93{bottom:705.693333pt;}
.yd{bottom:711.453333pt;}
.yc7{bottom:711.773333pt;}
.y38{bottom:712.733333pt;}
.yc{bottom:722.173333pt;}
.y24a{bottom:722.973333pt;}
.y73{bottom:726.333333pt;}
.yc6{bottom:728.733333pt;}
.y92{bottom:731.773333pt;}
.y37{bottom:736.733333pt;}
.yb{bottom:742.173333pt;}
.y249{bottom:747.933333pt;}
.y91{bottom:748.733333pt;}
.yc5{bottom:750.013333pt;}
.yd2{bottom:750.240000pt;}
.y72{bottom:750.333333pt;}
.y36{bottom:760.573333pt;}
.ya{bottom:761.533333pt;}
.y90{bottom:770.013333pt;}
.y9d{bottom:771.040000pt;}
.y248{bottom:771.933333pt;}
.y5a{bottom:774.173333pt;}
.y9{bottom:779.933333pt;}
.y35{bottom:784.613333pt;}
.y247{bottom:795.813333pt;}
.y59{bottom:798.213333pt;}
.y8{bottom:798.373333pt;}
.y34{bottom:808.453333pt;}
.y246{bottom:819.813333pt;}
.y58{bottom:822.053333pt;}
.y33{bottom:832.453333pt;}
.y245{bottom:843.653333pt;}
.y57{bottom:846.053333pt;}
.y32{bottom:856.293333pt;}
.y244{bottom:867.653333pt;}
.y56{bottom:869.893333pt;}
.y31{bottom:880.293333pt;}
.y7{bottom:888.933333pt;}
.y243{bottom:892.773333pt;}
.y55{bottom:893.893333pt;}
.y30{bottom:904.133333pt;}
.y6{bottom:910.373333pt;}
.y242{bottom:916.613333pt;}
.y54{bottom:917.733333pt;}
.y2f{bottom:928.133333pt;}
.y241{bottom:940.613333pt;}
.y53{bottom:941.733333pt;}
.y2e{bottom:951.973333pt;}
.y240{bottom:964.453333pt;}
.y52{bottom:965.573333pt;}
.y51{bottom:989.573333pt;}
.y4{bottom:1003.653333pt;}
.y2d{bottom:1010.693333pt;}
.y50{bottom:1013.413333pt;}
.y3{bottom:1024.000000pt;}
.y2{bottom:1042.560000pt;}
.y2c{bottom:1060.800000pt;}
.y1{bottom:1060.960000pt;}
.h7{height:30.324375pt;}
.h9{height:37.596250pt;}
.h3{height:37.624687pt;}
.h1a{height:39.905000pt;}
.hd{height:42.117188pt;}
.he{height:42.229500pt;}
.hf{height:43.375000pt;}
.h23{height:43.461750pt;}
.h8{height:46.609688pt;}
.h4{height:50.748750pt;}
.hb{height:51.663750pt;}
.h20{height:51.717188pt;}
.ha{height:53.600625pt;}
.h17{height:56.090521pt;}
.h2{height:56.156250pt;}
.h5{height:61.944687pt;}
.h6{height:62.104687pt;}
.h27{height:66.810521pt;}
.h29{height:68.143854pt;}
.h1f{height:70.917188pt;}
.h22{height:71.770521pt;}
.h1e{height:89.957188pt;}
.h26{height:91.397188pt;}
.h11{height:92.410521pt;}
.h1c{height:92.837188pt;}
.hc{height:256.960000pt;}
.h12{height:277.760000pt;}
.h10{height:282.080000pt;}
.h13{height:310.880000pt;}
.h1d{height:340.800000pt;}
.h15{height:350.720000pt;}
.h16{height:357.440000pt;}
.h28{height:362.400000pt;}
.h24{height:364.000000pt;}
.h21{height:370.560000pt;}
.h14{height:372.320000pt;}
.h19{height:373.920000pt;}
.h25{height:378.880000pt;}
.h1b{height:400.640000pt;}
.h18{height:401.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:540.000000pt;}
.w4{width:557.280000pt;}
.wa{width:574.400000pt;}
.w9{width:580.800000pt;}
.wc{width:590.720000pt;}
.wf{width:592.480000pt;}
.w5{width:594.720000pt;}
.wb{width:595.840000pt;}
.we{width:597.920000pt;}
.w8{width:599.040000pt;}
.w7{width:604.800000pt;}
.w6{width:605.440000pt;}
.wd{width:605.760000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:9.088000pt;}
.x41{left:15.072000pt;}
.x20{left:28.000000pt;}
.x1e{left:34.586667pt;}
.x1d{left:40.573333pt;}
.x2c{left:48.386667pt;}
.x2b{left:54.400000pt;}
.x22{left:58.626667pt;}
.x2f{left:60.066667pt;}
.x8f{left:61.506667pt;}
.x7c{left:63.680000pt;}
.x38{left:66.053333pt;}
.x90{left:67.200000pt;}
.x8a{left:69.053333pt;}
.x5b{left:70.240000pt;}
.x9a{left:71.653333pt;}
.x7f{left:73.786667pt;}
.x4e{left:77.533333pt;}
.x9b{left:80.000000pt;}
.x96{left:84.546667pt;}
.x51{left:86.306667pt;}
.x3b{left:88.866667pt;}
.x2d{left:91.680000pt;}
.x2{left:94.591988pt;}
.x1{left:95.871988pt;}
.x24{left:98.053333pt;}
.x6b{left:99.200000pt;}
.x7{left:101.311988pt;}
.x66{left:104.666667pt;}
.x5c{left:106.426667pt;}
.x4c{left:107.586667pt;}
.x62{left:108.893333pt;}
.xad{left:112.960000pt;}
.x59{left:117.253333pt;}
.x18{left:118.240000pt;}
.xb{left:119.231988pt;}
.x75{left:121.413333pt;}
.xab{left:122.586667pt;}
.x54{left:124.133333pt;}
.x19{left:126.466667pt;}
.x72{left:130.266667pt;}
.xa{left:131.391988pt;}
.x64{left:132.351988pt;}
.x8{left:133.311988pt;}
.x5f{left:134.493333pt;}
.xd{left:136.346655pt;}
.x5{left:137.786655pt;}
.xc{left:140.346655pt;}
.x15{left:142.426655pt;}
.xb1{left:144.026655pt;}
.x32{left:146.586667pt;}
.x10{left:148.986655pt;}
.x12{left:152.186655pt;}
.x3e{left:157.893333pt;}
.x1f{left:162.493333pt;}
.x6{left:167.066655pt;}
.x6c{left:169.466667pt;}
.x91{left:170.560000pt;}
.x49{left:174.813333pt;}
.x7d{left:177.053333pt;}
.xe{left:179.546655pt;}
.x9c{left:182.013333pt;}
.x9d{left:183.360000pt;}
.x25{left:190.493333pt;}
.x36{left:191.546667pt;}
.xb0{left:193.026667pt;}
.x84{left:196.706667pt;}
.x50{left:199.680000pt;}
.x6e{left:200.640000pt;}
.x65{left:202.466667pt;}
.x4f{left:208.453333pt;}
.x4{left:210.426655pt;}
.xa9{left:212.000000pt;}
.x1b{left:214.266667pt;}
.x11{left:217.946655pt;}
.x45{left:219.426667pt;}
.x23{left:222.946667pt;}
.x76{left:224.320000pt;}
.x27{left:225.893333pt;}
.x9{left:229.786655pt;}
.x9e{left:233.666667pt;}
.x9f{left:235.013333pt;}
.x97{left:239.546667pt;}
.x34{left:242.213333pt;}
.x3{left:244.706655pt;}
.x47{left:250.106667pt;}
.x13{left:253.826655pt;}
.x69{left:256.613333pt;}
.x8e{left:259.680000pt;}
.x52{left:260.826667pt;}
.x60{left:263.933333pt;}
.x3c{left:266.213333pt;}
.x6a{left:267.933333pt;}
.x30{left:269.306667pt;}
.x8b{left:275.386667pt;}
.xaf{left:276.320000pt;}
.x39{left:277.440000pt;}
.x21{left:278.560000pt;}
.x5a{left:279.973333pt;}
.x43{left:284.226667pt;}
.x4d{left:287.066667pt;}
.x3a{left:288.026667pt;}
.x61{left:295.040000pt;}
.x85{left:296.346667pt;}
.x86{left:299.426667pt;}
.x2e{left:301.946667pt;}
.x8d{left:303.360000pt;}
.xae{left:304.733333pt;}
.x37{left:310.533333pt;}
.xf{left:312.546655pt;}
.xa7{left:315.293333pt;}
.x28{left:318.373333pt;}
.x77{left:324.186667pt;}
.x92{left:325.573333pt;}
.x14{left:329.826655pt;}
.x80{left:331.040000pt;}
.x3f{left:335.226667pt;}
.xa0{left:338.373333pt;}
.x55{left:339.520000pt;}
.x88{left:343.613333pt;}
.x7a{left:346.493333pt;}
.x46{left:350.053333pt;}
.x6f{left:353.693333pt;}
.x1a{left:355.840000pt;}
.x67{left:357.466667pt;}
.x5d{left:368.386667pt;}
.x57{left:377.373333pt;}
.x26{left:378.466667pt;}
.x70{left:380.413333pt;}
.x73{left:382.466667pt;}
.xa1{left:388.706667pt;}
.xa2{left:390.013333pt;}
.x98{left:394.586667pt;}
.x33{left:396.413333pt;}
.x87{left:404.386667pt;}
.x48{left:405.346667pt;}
.x71{left:407.133333pt;}
.x29{left:410.813333pt;}
.x81{left:413.760000pt;}
.x78{left:427.106667pt;}
.x93{left:428.893333pt;}
.x4a{left:432.986667pt;}
.x53{left:438.400000pt;}
.xa3{left:440.346667pt;}
.xa4{left:441.693333pt;}
.x1c{left:443.653333pt;}
.x3d{left:446.586667pt;}
.x89{left:448.573333pt;}
.x7b{left:452.453333pt;}
.xaa{left:467.653333pt;}
.x68{left:482.333333pt;}
.x94{left:483.613333pt;}
.x74{left:488.453333pt;}
.x35{left:492.026667pt;}
.xa5{left:493.373333pt;}
.x5e{left:497.853333pt;}
.x82{left:499.493333pt;}
.xac{left:503.013333pt;}
.x2a{left:506.306667pt;}
.x56{left:514.053333pt;}
.x40{left:515.613333pt;}
.x83{left:518.080000pt;}
.x79{left:533.053333pt;}
.xa6{left:534.213333pt;}
.x95{left:535.293333pt;}
.x99{left:549.600000pt;}
.x58{left:551.906667pt;}
.x8c{left:553.413333pt;}
.x4b{left:560.573333pt;}
.x16{left:658.533322pt;}
.x17{left:675.973322pt;}
.x6d{left:683.173322pt;}
.x63{left:687.973322pt;}
.x7e{left:692.933322pt;}
.xa8{left:693.893322pt;}
.x31{left:695.013322pt;}
.xb2{left:699.493322pt;}
.x44{left:700.613322pt;}
}




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