
    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_a1b0373c3d05aa55c7f7b4db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a412b9bedb5b73c4d5b04390.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b0683ddb074c2ee18b54e2d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7225d104e62edce6c4b59041.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_86543923fd73bafcf21a5b37.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_7e1fd64941b8e1dcaa59da2c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_601bfa3894c45ec598da2d44.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bd7dd5f81e925c539f7fa5ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090820;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_8533ba5ab18b312b42b741e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.989258;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_303b896b64fa5f3853e3dbe3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ba956c7a401d1067a12e6f09.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a8137dc7083247e743a0aeff.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_92bc5561283643348409f7de.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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);}
.v8{vertical-align:-95.160000px;}
.vd{vertical-align:-93.900000px;}
.v9{vertical-align:-87.540000px;}
.va{vertical-align:-80.520000px;}
.vb{vertical-align:-77.640000px;}
.v1{vertical-align:-68.400000px;}
.v4{vertical-align:-59.640000px;}
.v25{vertical-align:-36.000000px;}
.v3{vertical-align:-33.960000px;}
.v1c{vertical-align:-32.820000px;}
.v23{vertical-align:-28.500000px;}
.v5{vertical-align:-27.180000px;}
.v1b{vertical-align:-25.620000px;}
.v27{vertical-align:-22.320000px;}
.v24{vertical-align:-21.300000px;}
.vc{vertical-align:-19.680000px;}
.v6{vertical-align:-15.000000px;}
.v13{vertical-align:-12.120000px;}
.v29{vertical-align:-10.800000px;}
.v1a{vertical-align:-8.040000px;}
.v19{vertical-align:-6.060000px;}
.v2{vertical-align:-3.600000px;}
.v1e{vertical-align:-1.260000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.920000px;}
.v1d{vertical-align:7.320000px;}
.ve{vertical-align:9.660000px;}
.v28{vertical-align:12.240000px;}
.v1f{vertical-align:15.240000px;}
.v2b{vertical-align:16.560000px;}
.v22{vertical-align:19.440000px;}
.v18{vertical-align:21.000000px;}
.v12{vertical-align:22.080000px;}
.vf{vertical-align:42.060000px;}
.v2a{vertical-align:58.080000px;}
.v17{vertical-align:63.660000px;}
.v26{vertical-align:69.120000px;}
.v21{vertical-align:73.860000px;}
.v10{vertical-align:74.880000px;}
.v20{vertical-align:76.320000px;}
.v16{vertical-align:81.780000px;}
.v15{vertical-align:99.240000px;}
.v11{vertical-align:112.440000px;}
.v14{vertical-align:115.920000px;}
.lsd{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.258000px;}
.ls14{letter-spacing:-0.200400px;}
.ls15{letter-spacing:-0.100200px;}
.ls28{letter-spacing:-0.091200px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.012960px;}
.ls13{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106560px;}
.ls9{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.197280px;}
.ls3{letter-spacing:0.198000px;}
.lse{letter-spacing:0.244080px;}
.ls4{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.329040px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.399600px;}
.ls1c{letter-spacing:1.375920px;}
.ls10{letter-spacing:1.620000px;}
.ls23{letter-spacing:2.095920px;}
.ls29{letter-spacing:2.106720px;}
.ls20{letter-spacing:3.647520px;}
.ls1f{letter-spacing:4.517280px;}
.ls27{letter-spacing:12.708000px;}
.ls1d{letter-spacing:13.139280px;}
.ls1b{letter-spacing:13.679280px;}
.ls24{letter-spacing:16.140960px;}
.ls19{letter-spacing:17.233200px;}
.ls1a{letter-spacing:17.279280px;}
.ls17{letter-spacing:19.020960px;}
.ls16{letter-spacing:19.740960px;}
.ls11{letter-spacing:21.276000px;}
.ls8{letter-spacing:28.980000px;}
.ls25{letter-spacing:31.602720px;}
.ls26{letter-spacing:31.626720px;}
.lsb{letter-spacing:326.340000px;}
.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;}
}
.ws22{word-spacing:-32.808240px;}
.ws0{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.238800px;}
.ws1b{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.580000px;}
.ws1e{word-spacing:-13.160160px;}
.ws1d{word-spacing:-13.147200px;}
.wse{word-spacing:-12.236544px;}
.ws1c{word-spacing:-9.720000px;}
.ws20{word-spacing:-9.187200px;}
.ws21{word-spacing:-8.929200px;}
.ws2{word-spacing:0.000000px;}
.ws1f{word-spacing:12.299760px;}
.ws19{word-spacing:45.540000px;}
.wsc{word-spacing:47.328000px;}
.ws7{word-spacing:47.885856px;}
.wsd{word-spacing:47.904000px;}
.ws8{word-spacing:47.964000px;}
.ws9{word-spacing:48.084000px;}
.ws6{word-spacing:48.144000px;}
.ws24{word-spacing:50.274000px;}
.ws23{word-spacing:51.054000px;}
.wsa{word-spacing:61.644000px;}
.wsf{word-spacing:61.674000px;}
.wsb{word-spacing:61.782000px;}
.ws18{word-spacing:69.594000px;}
.ws16{word-spacing:166.524000px;}
.ws15{word-spacing:166.728000px;}
.ws17{word-spacing:166.848000px;}
.ws3{word-spacing:168.414000px;}
.ws4{word-spacing:168.894000px;}
.ws13{word-spacing:196.512000px;}
.ws11{word-spacing:197.016864px;}
.ws14{word-spacing:197.142000px;}
.ws12{word-spacing:197.202000px;}
._29{margin-left:-10.640160px;}
._19{margin-left:-4.438560px;}
._6{margin-left:-2.804640px;}
._5{margin-left:-1.254240px;}
._1{width:1.015920px;}
._2{width:2.786880px;}
._4{width:4.063200px;}
._7{width:5.282160px;}
._a{width:6.610080px;}
._8{width:8.356800px;}
._d{width:9.621360px;}
._e{width:10.936080px;}
._f{width:12.191040px;}
._9{width:13.804560px;}
._2a{width:14.993040px;}
._10{width:16.553520px;}
._13{width:17.808480px;}
._15{width:18.884160px;}
._1c{width:20.258640px;}
._b{width:21.513600px;}
._c{width:22.589280px;}
._1b{width:24.382080px;}
._12{width:25.517520px;}
._26{width:26.940000px;}
._14{width:28.744560px;}
._23{width:30.537360px;}
._20{width:36.035280px;}
._1f{width:37.110960px;}
._1a{width:39.587280px;}
._16{width:41.447280px;}
._24{width:44.401680px;}
._11{width:46.493280px;}
._25{width:48.166560px;}
._2d{width:50.760000px;}
._2e{width:52.339680px;}
._2c{width:55.096560px;}
._28{width:56.951280px;}
._21{width:71.684880px;}
._18{width:139.776000px;}
._3{width:167.048640px;}
._1e{width:238.744800px;}
._22{width:286.851600px;}
._2b{width:591.204000px;}
._27{width:612.781200px;}
._17{width:652.841280px;}
._0{width:767.850240px;}
._1d{width:849.216000px;}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:59.904000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.240000px;}
.y1c1{bottom:3.600000px;}
.y179{bottom:5.040000px;}
.y154{bottom:5.220000px;}
.y124{bottom:5.400000px;}
.y159{bottom:5.445000px;}
.y123{bottom:5.580000px;}
.y17c{bottom:5.760000px;}
.y185{bottom:5.805000px;}
.y17f{bottom:5.940000px;}
.y14a{bottom:6.120000px;}
.y1b8{bottom:6.300000px;}
.y18f{bottom:6.480000px;}
.y176{bottom:6.660000px;}
.y1ad{bottom:7.380000px;}
.y1ab{bottom:7.740000px;}
.y19f{bottom:8.460000px;}
.y1c4{bottom:9.360000px;}
.y20a{bottom:9.465000px;}
.y19e{bottom:9.900000px;}
.y1a0{bottom:10.080000px;}
.y1bc{bottom:11.160000px;}
.ybf{bottom:11.700000px;}
.yf1{bottom:11.880000px;}
.yb5{bottom:12.240000px;}
.y1fe{bottom:13.320000px;}
.y1b6{bottom:14.940000px;}
.y1a9{bottom:16.380000px;}
.y5b{bottom:17.670000px;}
.yb0{bottom:17.745000px;}
.ybe{bottom:20.340000px;}
.yf0{bottom:20.520000px;}
.y1c0{bottom:20.880000px;}
.y1b7{bottom:23.580000px;}
.y1aa{bottom:25.020000px;}
.y1b4{bottom:26.505000px;}
.y1c3{bottom:26.640000px;}
.y150{bottom:29.160000px;}
.y14d{bottom:30.240000px;}
.y1f3{bottom:30.855000px;}
.y14f{bottom:37.800000px;}
.y1bf{bottom:38.160000px;}
.y200{bottom:41.610000px;}
.y1c2{bottom:43.920000px;}
.y14c{bottom:47.520000px;}
.y77{bottom:47.550000px;}
.yaf{bottom:47.670000px;}
.yde{bottom:48.855000px;}
.y2{bottom:55.800000px;}
.y19c{bottom:61.065000px;}
.y1f4{bottom:61.845000px;}
.y6f{bottom:65.130000px;}
.ya9{bottom:65.235000px;}
.y201{bottom:69.945000px;}
.ye5{bottom:79.050000px;}
.y49{bottom:79.635000px;}
.yda{bottom:87.840000px;}
.yd9{bottom:92.340000px;}
.y1f5{bottom:92.850000px;}
.y4a{bottom:95.970000px;}
.y202{bottom:98.250000px;}
.y11e{bottom:99.540000px;}
.y70{bottom:101.670000px;}
.yd8{bottom:103.680000px;}
.ye4{bottom:106.170000px;}
.y4b{bottom:112.350000px;}
.y11d{bottom:116.820000px;}
.yaa{bottom:117.870000px;}
.y1f6{bottom:123.840000px;}
.y203{bottom:126.570000px;}
.y4c{bottom:128.700000px;}
.y6e{bottom:129.525000px;}
.ye3{bottom:133.305000px;}
.y11c{bottom:134.100000px;}
.y1ec{bottom:137.736000px;}
.y71{bottom:138.240000px;}
.y4d{bottom:145.050000px;}
.y11b{bottom:151.410000px;}
.y148{bottom:152.490000px;}
.y1f7{bottom:154.830000px;}
.y204{bottom:154.905000px;}
.y1eb{bottom:155.010000px;}
.ya4{bottom:155.310000px;}
.ye2{bottom:160.410000px;}
.y4e{bottom:161.385000px;}
.y11a{bottom:168.510000px;}
.y144{bottom:169.770000px;}
.yab{bottom:170.490000px;}
.y1ea{bottom:172.290000px;}
.y147{bottom:172.470000px;}
.y72{bottom:174.780000px;}
.y6c{bottom:177.300000px;}
.y4f{bottom:177.735000px;}
.ya3{bottom:178.275000px;}
.y1ba{bottom:178.920000px;}
.y205{bottom:183.240000px;}
.y119{bottom:185.790000px;}
.y1f8{bottom:185.835000px;}
.y9e{bottom:187.230000px;}
.ye1{bottom:187.560000px;}
.y146{bottom:189.570000px;}
.ydd{bottom:190.620000px;}
.y143{bottom:191.550000px;}
.y50{bottom:194.070000px;}
.yd7{bottom:200.010000px;}
.ya5{bottom:204.405000px;}
.y9c{bottom:204.510000px;}
.y1e9{bottom:206.850000px;}
.y145{bottom:208.830000px;}
.y142{bottom:209.010000px;}
.y51{bottom:210.420000px;}
.y73{bottom:211.320000px;}
.y206{bottom:211.575000px;}
.y1a7{bottom:213.690000px;}
.ye0{bottom:214.665000px;}
.ya6{bottom:216.645000px;}
.y1f9{bottom:216.825000px;}
.yd6{bottom:217.290000px;}
.y118{bottom:217.830000px;}
.y9b{bottom:221.790000px;}
.ya8{bottom:222.270000px;}
.yac{bottom:223.125000px;}
.y1e8{bottom:223.950000px;}
.y52{bottom:226.770000px;}
.ya2{bottom:227.085000px;}
.y1a6{bottom:230.970000px;}
.yd5{bottom:234.570000px;}
.y9a{bottom:239.070000px;}
.y207{bottom:239.865000px;}
.y141{bottom:241.050000px;}
.y1e7{bottom:241.230000px;}
.y53{bottom:243.105000px;}
.y1f2{bottom:243.330000px;}
.ya0{bottom:243.645000px;}
.ydf{bottom:246.885000px;}
.y1fa{bottom:247.830000px;}
.y74{bottom:247.890000px;}
.y1a5{bottom:248.250000px;}
.yd4{bottom:251.850000px;}
.y117{bottom:253.110000px;}
.y1e6{bottom:255.270000px;}
.y99{bottom:256.350000px;}
.y1ff{bottom:256.680000px;}
.y140{bottom:259.050000px;}
.y54{bottom:259.455000px;}
.y1f1{bottom:259.890000px;}
.ya7{bottom:260.790000px;}
.y1a4{bottom:265.530000px;}
.y208{bottom:268.200000px;}
.yd3{bottom:269.130000px;}
.y116{bottom:271.110000px;}
.y98{bottom:273.630000px;}
.yad{bottom:275.760000px;}
.y55{bottom:275.835000px;}
.y13f{bottom:277.050000px;}
.y1fb{bottom:278.820000px;}
.ya1{bottom:281.625000px;}
.y1a3{bottom:282.810000px;}
.ydc{bottom:284.040000px;}
.y75{bottom:284.430000px;}
.yd2{bottom:286.230000px;}
.y115{bottom:289.110000px;}
.y6b{bottom:289.290000px;}
.y97{bottom:290.730000px;}
.y56{bottom:292.170000px;}
.y13e{bottom:295.050000px;}
.y209{bottom:296.535000px;}
.y6d{bottom:296.820000px;}
.y1f0{bottom:298.950000px;}
.y1a2{bottom:299.910000px;}
.y1ef{bottom:300.990000px;}
.y6a{bottom:306.570000px;}
.y114{bottom:307.110000px;}
.y96{bottom:308.010000px;}
.y57{bottom:308.520000px;}
.y1fc{bottom:309.810000px;}
.y174{bottom:313.050000px;}
.y1a1{bottom:317.190000px;}
.y1ee{bottom:317.550000px;}
.yd1{bottom:318.270000px;}
.y76{bottom:321.015000px;}
.y69{bottom:323.850000px;}
.y58{bottom:324.870000px;}
.y113{bottom:325.110000px;}
.y95{bottom:325.290000px;}
.yae{bottom:328.395000px;}
.y13d{bottom:330.150000px;}
.y173{bottom:330.330000px;}
.yd0{bottom:336.270000px;}
.y1fd{bottom:340.815000px;}
.y68{bottom:340.950000px;}
.y59{bottom:341.205000px;}
.y94{bottom:342.570000px;}
.y112{bottom:343.110000px;}
.y172{bottom:347.610000px;}
.y13c{bottom:348.150000px;}
.y19b{bottom:350.670000px;}
.ycf{bottom:354.270000px;}
.y5a{bottom:357.555000px;}
.y67{bottom:358.230000px;}
.y93{bottom:359.850000px;}
.y110{bottom:361.110000px;}
.y171{bottom:364.890000px;}
.yce{bottom:372.270000px;}
.y66{bottom:375.510000px;}
.y92{bottom:376.950000px;}
.y111{bottom:379.110000px;}
.y170{bottom:382.170000px;}
.y13b{bottom:383.430000px;}
.ycd{bottom:390.315000px;}
.y65{bottom:392.835000px;}
.y91{bottom:394.275000px;}
.y2f{bottom:398.055000px;}
.y16f{bottom:399.495000px;}
.y10f{bottom:400.395000px;}
.y13a{bottom:401.475000px;}
.y19d{bottom:401.835000px;}
.ycc{bottom:408.315000px;}
.y90{bottom:411.555000px;}
.y2e{bottom:415.335000px;}
.y16e{bottom:416.595000px;}
.y47{bottom:416.775000px;}
.y10e{bottom:417.675000px;}
.y139{bottom:419.475000px;}
.y64{bottom:424.875000px;}
.ycb{bottom:426.315000px;}
.y19a{bottom:428.115000px;}
.y8f{bottom:428.835000px;}
.y2d{bottom:432.615000px;}
.y16d{bottom:433.875000px;}
.y46{bottom:434.055000px;}
.y10d{bottom:434.775000px;}
.y138{bottom:437.475000px;}
.y63{bottom:442.875000px;}
.yc9{bottom:444.315000px;}
.y8e{bottom:446.115000px;}
.y1d9{bottom:446.655000px;}
.y2c{bottom:449.895000px;}
.y16c{bottom:451.155000px;}
.y45{bottom:451.335000px;}
.y10c{bottom:452.055000px;}
.y137{bottom:455.475000px;}
.y199{bottom:455.835000px;}
.y62{bottom:460.875000px;}
.y1cf{bottom:461.595000px;}
.yca{bottom:462.315000px;}
.y8d{bottom:463.395000px;}
.y1d8{bottom:463.935000px;}
.y2b{bottom:467.175000px;}
.y16b{bottom:468.435000px;}
.y44{bottom:468.615000px;}
.y10b{bottom:469.335000px;}
.y136{bottom:473.475000px;}
.y61{bottom:478.875000px;}
.y8c{bottom:480.495000px;}
.y1d7{bottom:481.215000px;}
.y198{bottom:483.015000px;}
.yc8{bottom:483.555000px;}
.y2a{bottom:484.275000px;}
.y16a{bottom:485.715000px;}
.y43{bottom:485.895000px;}
.y10a{bottom:486.615000px;}
.y135{bottom:491.475000px;}
.y1ce{bottom:496.155000px;}
.y60{bottom:496.875000px;}
.y8b{bottom:497.775000px;}
.y1d6{bottom:498.495000px;}
.y196{bottom:500.295000px;}
.yc7{bottom:500.835000px;}
.y29{bottom:501.555000px;}
.y42{bottom:502.995000px;}
.y109{bottom:503.895000px;}
.y134{bottom:509.475000px;}
.y1cd{bottom:513.435000px;}
.y5f{bottom:514.875000px;}
.y8a{bottom:515.055000px;}
.y1d5{bottom:515.595000px;}
.y195{bottom:517.575000px;}
.yc6{bottom:518.115000px;}
.y28{bottom:518.835000px;}
.y169{bottom:520.095000px;}
.y41{bottom:520.275000px;}
.y108{bottom:521.175000px;}
.y133{bottom:527.475000px;}
.y1cc{bottom:530.715000px;}
.y89{bottom:532.335000px;}
.y5e{bottom:532.875000px;}
.y197{bottom:534.315000px;}
.y194{bottom:534.855000px;}
.yc5{bottom:535.395000px;}
.y27{bottom:536.115000px;}
.y168{bottom:537.375000px;}
.y40{bottom:537.555000px;}
.y107{bottom:538.275000px;}
.y132{bottom:545.475000px;}
.y1cb{bottom:547.815000px;}
.y88{bottom:549.615000px;}
.y1d4{bottom:550.155000px;}
.y5c{bottom:550.875000px;}
.y193{bottom:551.955000px;}
.yc4{bottom:552.495000px;}
.y26{bottom:553.395000px;}
.y167{bottom:554.655000px;}
.y3f{bottom:554.835000px;}
.y106{bottom:555.555000px;}
.y131{bottom:563.475000px;}
.y1ca{bottom:565.095000px;}
.y87{bottom:566.895000px;}
.y1d3{bottom:567.435000px;}
.y192{bottom:569.235000px;}
.yc3{bottom:569.775000px;}
.y25{bottom:570.675000px;}
.y166{bottom:571.935000px;}
.y3e{bottom:572.115000px;}
.y105{bottom:572.835000px;}
.y130{bottom:581.475000px;}
.y1c9{bottom:582.375000px;}
.y86{bottom:583.995000px;}
.y1d2{bottom:585.975000px;}
.y191{bottom:586.515000px;}
.yc2{bottom:587.055000px;}
.y24{bottom:587.775000px;}
.y165{bottom:589.215000px;}
.y3d{bottom:589.395000px;}
.y104{bottom:590.115000px;}
.y12f{bottom:599.475000px;}
.y1c8{bottom:600.195000px;}
.y9d{bottom:601.275000px;}
.y1d1{bottom:603.435000px;}
.y190{bottom:603.795000px;}
.yc1{bottom:604.335000px;}
.y23{bottom:605.055000px;}
.y3c{bottom:606.495000px;}
.y12e{bottom:617.475000px;}
.y85{bottom:618.555000px;}
.y1c7{bottom:619.455000px;}
.y1d0{bottom:620.715000px;}
.y164{bottom:621.075000px;}
.yc0{bottom:621.615000px;}
.y103{bottom:622.155000px;}
.y22{bottom:622.335000px;}
.y3b{bottom:623.775000px;}
.y84{bottom:635.835000px;}
.y1c6{bottom:637.815000px;}
.y1e5{bottom:638.715000px;}
.y21{bottom:639.615000px;}
.y102{bottom:640.185000px;}
.y3a{bottom:641.085000px;}
.y163{bottom:644.865000px;}
.y12d{bottom:652.785000px;}
.y83{bottom:653.145000px;}
.ybd{bottom:653.685000px;}
.y1c5{bottom:655.125000px;}
.y1e4{bottom:656.025000px;}
.y1dc{bottom:656.745000px;}
.y20{bottom:656.925000px;}
.y101{bottom:658.185000px;}
.y39{bottom:658.365000px;}
.y162{bottom:667.005000px;}
.y82{bottom:670.245000px;}
.y1e3{bottom:673.305000px;}
.y1f{bottom:674.025000px;}
.y38{bottom:675.645000px;}
.y100{bottom:676.185000px;}
.y18e{bottom:677.805000px;}
.y1b9{bottom:687.165000px;}
.y81{bottom:687.525000px;}
.y12c{bottom:688.065000px;}
.ybc{bottom:688.785000px;}
.y161{bottom:689.145000px;}
.y1e2{bottom:690.585000px;}
.y1e{bottom:691.305000px;}
.y37{bottom:692.745000px;}
.yff{bottom:694.185000px;}
.y18d{bottom:701.025000px;}
.y80{bottom:704.805000px;}
.y12b{bottom:706.065000px;}
.ybb{bottom:706.785000px;}
.y1e1{bottom:707.685000px;}
.y1d{bottom:708.585000px;}
.y36{bottom:710.025000px;}
.y160{bottom:711.465000px;}
.yfe{bottom:712.185000px;}
.y7f{bottom:722.085000px;}
.y12a{bottom:724.065000px;}
.y18c{bottom:724.245000px;}
.yba{bottom:724.785000px;}
.y1e0{bottom:724.965000px;}
.y1c{bottom:725.865000px;}
.y35{bottom:727.305000px;}
.yfd{bottom:730.185000px;}
.y15f{bottom:733.605000px;}
.y7e{bottom:739.365000px;}
.y129{bottom:742.065000px;}
.y1df{bottom:742.245000px;}
.yb9{bottom:742.785000px;}
.y1b{bottom:743.145000px;}
.y34{bottom:744.585000px;}
.y18b{bottom:747.645000px;}
.yfb{bottom:748.185000px;}
.y1be{bottom:751.785000px;}
.y15e{bottom:755.745000px;}
.y7d{bottom:756.645000px;}
.y1de{bottom:759.525000px;}
.y128{bottom:760.065000px;}
.y1db{bottom:760.245000px;}
.y1a{bottom:760.425000px;}
.yb8{bottom:760.785000px;}
.y33{bottom:761.865000px;}
.yfc{bottom:766.185000px;}
.y18a{bottom:770.865000px;}
.y7c{bottom:773.745000px;}
.y1dd{bottom:777.165000px;}
.y19{bottom:777.525000px;}
.y127{bottom:778.065000px;}
.yb7{bottom:778.785000px;}
.y32{bottom:779.145000px;}
.yfa{bottom:787.425000px;}
.y7b{bottom:791.025000px;}
.y189{bottom:794.085000px;}
.y18{bottom:794.805000px;}
.y126{bottom:796.065000px;}
.y31{bottom:796.245000px;}
.yb4{bottom:796.785000px;}
.y15d{bottom:800.205000px;}
.y1bd{bottom:805.065000px;}
.y7a{bottom:808.305000px;}
.y30{bottom:810.285000px;}
.y48{bottom:810.540000px;}
.y17{bottom:812.085000px;}
.y125{bottom:814.065000px;}
.yb6{bottom:814.785000px;}
.y188{bottom:817.305000px;}
.yf9{bottom:821.805000px;}
.y15c{bottom:822.345000px;}
.y79{bottom:825.585000px;}
.y1da{bottom:826.125000px;}
.y1ed{bottom:827.280000px;}
.y16{bottom:829.365000px;}
.y122{bottom:832.065000px;}
.yb3{bottom:836.025000px;}
.yf8{bottom:839.085000px;}
.y78{bottom:839.625000px;}
.y9f{bottom:839.700000px;}
.y187{bottom:840.525000px;}
.y15b{bottom:844.665000px;}
.y15{bottom:846.645000px;}
.y121{bottom:852.405000px;}
.yf7{bottom:856.365000px;}
.y1bb{bottom:857.625000px;}
.y186{bottom:863.745000px;}
.y14{bottom:863.925000px;}
.y15a{bottom:866.805000px;}
.yb2{bottom:870.585000px;}
.yf6{bottom:873.645000px;}
.y1b3{bottom:880.845000px;}
.y13{bottom:881.025000px;}
.yb1{bottom:884.625000px;}
.ydb{bottom:885.960000px;}
.y184{bottom:887.145000px;}
.y158{bottom:888.945000px;}
.yf5{bottom:890.925000px;}
.y12{bottom:898.350000px;}
.y1b5{bottom:904.110000px;}
.yf4{bottom:908.070000px;}
.y183{bottom:910.410000px;}
.y157{bottom:911.310000px;}
.y11{bottom:915.630000px;}
.yf3{bottom:925.350000px;}
.y10{bottom:932.910000px;}
.y156{bottom:933.450000px;}
.y182{bottom:933.630000px;}
.yf2{bottom:942.630000px;}
.y1b2{bottom:945.330000px;}
.yf{bottom:950.190000px;}
.y155{bottom:955.590000px;}
.y181{bottom:956.850000px;}
.y120{bottom:959.910000px;}
.ye{bottom:967.470000px;}
.yef{bottom:974.670000px;}
.y153{bottom:977.910000px;}
.y180{bottom:980.070000px;}
.yd{bottom:984.570000px;}
.y1b1{bottom:988.350000px;}
.y11f{bottom:991.950000px;}
.y152{bottom:1000.050000px;}
.yc{bottom:1001.850000px;}
.y17e{bottom:1003.290000px;}
.y1b0{bottom:1005.630000px;}
.yee{bottom:1009.950000px;}
.yb{bottom:1019.130000px;}
.y151{bottom:1022.190000px;}
.y1af{bottom:1022.910000px;}
.y17d{bottom:1026.690000px;}
.yed{bottom:1027.950000px;}
.ya{bottom:1036.410000px;}
.y1ae{bottom:1040.190000px;}
.yec{bottom:1045.950000px;}
.y17b{bottom:1049.910000px;}
.y9{bottom:1053.690000px;}
.y14b{bottom:1057.470000px;}
.yeb{bottom:1063.950000px;}
.y8{bottom:1070.790000px;}
.y17a{bottom:1073.130000px;}
.y1ac{bottom:1073.670000px;}
.yea{bottom:1081.950000px;}
.y7{bottom:1088.070000px;}
.y177{bottom:1097.790000px;}
.ye9{bottom:1099.950000px;}
.y1a8{bottom:1101.390000px;}
.y6{bottom:1105.350000px;}
.y14e{bottom:1111.470000px;}
.ye7{bottom:1117.950000px;}
.y178{bottom:1120.830000px;}
.y5{bottom:1122.630000px;}
.ye8{bottom:1135.950000px;}
.y4{bottom:1139.910000px;}
.y175{bottom:1147.140000px;}
.y149{bottom:1148.220000px;}
.ye6{bottom:1157.220000px;}
.y3{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.h19{height:17.100000px;}
.h18{height:17.136000px;}
.ha{height:17.280000px;}
.h13{height:17.316000px;}
.h1f{height:19.620000px;}
.h2f{height:20.880000px;}
.h27{height:21.420000px;}
.h28{height:21.600000px;}
.h29{height:21.636000px;}
.h30{height:22.500000px;}
.h31{height:22.536000px;}
.h24{height:22.860000px;}
.h2a{height:23.076000px;}
.h2c{height:23.940000px;}
.h34{height:24.120000px;}
.h2e{height:24.156000px;}
.h32{height:25.380000px;}
.h11{height:34.380000px;}
.h1c{height:34.560000px;}
.h22{height:34.596000px;}
.h1a{height:35.100000px;}
.h17{height:35.136000px;}
.h10{height:35.280000px;}
.h1b{height:35.316000px;}
.h14{height:35.332031px;}
.h3b{height:38.139609px;}
.h37{height:40.500000px;}
.h35{height:43.596000px;}
.h2d{height:47.196000px;}
.h26{height:51.840000px;}
.h12{height:52.290000px;}
.h39{height:52.560000px;}
.h3{height:52.998047px;}
.h21{height:53.573906px;}
.h8{height:53.709961px;}
.h9{height:53.853187px;}
.h2b{height:54.421875px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.hd{height:59.019609px;}
.h23{height:59.038594px;}
.h2{height:59.439023px;}
.h16{height:59.582250px;}
.h4{height:60.226875px;}
.h1e{height:60.243750px;}
.h3c{height:61.423863px;}
.h36{height:63.756000px;}
.h3a{height:63.900000px;}
.hf{height:73.149961px;}
.h33{height:75.096000px;}
.h20{height:76.509141px;}
.h25{height:88.596000px;}
.h3e{height:111.789961px;}
.h1d{height:127.771172px;}
.hc{height:130.029961px;}
.hb{height:188.229961px;}
.h38{height:192.960000px;}
.h15{height:302.400000px;}
.h3f{height:345.240000px;}
.he{height:348.660000px;}
.h3d{height:361.080000px;}
.h7{height:377.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4a{width:22.500000px;}
.w58{width:22.860000px;}
.w37{width:53.100000px;}
.w3a{width:53.136000px;}
.w2f{width:53.460000px;}
.w33{width:53.496000px;}
.w32{width:53.640000px;}
.w39{width:64.980000px;}
.w38{width:65.016000px;}
.w3b{width:65.160000px;}
.w30{width:65.376000px;}
.w34{width:65.520000px;}
.w46{width:73.836000px;}
.w55{width:74.520000px;}
.w49{width:74.880000px;}
.w57{width:76.536000px;}
.w48{width:76.680000px;}
.w54{width:77.040000px;}
.w5a{width:77.400000px;}
.w2b{width:77.940000px;}
.w35{width:79.200000px;}
.w36{width:79.560000px;}
.w31{width:79.920000px;}
.w4c{width:92.700000px;}
.w4f{width:94.320000px;}
.w4d{width:94.356000px;}
.w59{width:109.980000px;}
.w4b{width:110.160000px;}
.w3f{width:126.576000px;}
.w40{width:129.060000px;}
.w43{width:129.780000px;}
.w44{width:132.660000px;}
.w51{width:133.200000px;}
.w28{width:134.460000px;}
.w4{width:135.180000px;}
.w6{width:135.540000px;}
.w5{width:135.576000px;}
.w21{width:136.476000px;}
.wc{width:141.696000px;}
.w23{width:142.560000px;}
.w26{width:149.256000px;}
.w22{width:152.460000px;}
.w42{width:153.030000px;}
.w3e{width:153.390000px;}
.w15{width:155.370000px;}
.w56{width:157.170000px;}
.w1a{width:157.500000px;}
.wf{width:157.860000px;}
.w27{width:158.040000px;}
.w47{width:158.070000px;}
.w53{width:158.430000px;}
.wd{width:159.480000px;}
.w45{width:159.510000px;}
.w17{width:160.380000px;}
.w9{width:162.390000px;}
.w1e{width:166.530000px;}
.w1c{width:168.330000px;}
.w11{width:168.690000px;}
.we{width:171.030000px;}
.w19{width:173.190000px;}
.w18{width:174.810000px;}
.w1d{width:177.690000px;}
.w12{width:178.950000px;}
.w14{width:185.790000px;}
.w50{width:196.050000px;}
.w4e{width:198.390000px;}
.w2e{width:198.930000px;}
.w2c{width:199.470000px;}
.w2d{width:199.830000px;}
.wa{width:203.790000px;}
.w1f{width:221.250000px;}
.w24{width:226.695000px;}
.w52{width:234.075000px;}
.w3c{width:267.330000px;}
.w41{width:269.130000px;}
.w20{width:289.650000px;}
.wb{width:301.890000px;}
.w25{width:308.190000px;}
.w16{width:336.090000px;}
.w1b{width:346.755000px;}
.w10{width:348.375000px;}
.w3d{width:409.755000px;}
.w13{width:484.920000px;}
.w29{width:543.705000px;}
.w7{width:596.160000px;}
.w5b{width:616.860000px;}
.w3{width:648.000000px;}
.w5c{width:671.580000px;}
.w2a{width:680.325000px;}
.w8{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x71{left:7.740000px;}
.x9f{left:8.820000px;}
.x11{left:9.864000px;}
.x79{left:10.980000px;}
.x72{left:12.060000px;}
.x9a{left:13.500000px;}
.x76{left:15.480000px;}
.x20{left:16.704000px;}
.x35{left:18.000000px;}
.x10{left:20.052000px;}
.x64{left:21.420000px;}
.x81{left:23.445000px;}
.xa1{left:24.480000px;}
.x6e{left:25.560000px;}
.x95{left:26.640000px;}
.x59{left:28.620000px;}
.x5a{left:31.140000px;}
.x82{left:32.220000px;}
.x1e{left:33.330000px;}
.x6f{left:35.100000px;}
.x93{left:36.720000px;}
.x80{left:37.800000px;}
.x90{left:39.420000px;}
.x97{left:42.300000px;}
.x1f{left:43.485000px;}
.x21{left:45.285000px;}
.x63{left:47.154000px;}
.x1c{left:50.034000px;}
.x65{left:51.120000px;}
.x18{left:52.965000px;}
.x16{left:55.074000px;}
.x3a{left:56.160000px;}
.x1d{left:58.545000px;}
.x4a{left:59.790000px;}
.x25{left:61.560000px;}
.x43{left:62.820000px;}
.x58{left:64.440000px;}
.xa0{left:65.520000px;}
.x41{left:66.600000px;}
.x2e{left:68.610000px;}
.x3f{left:70.380000px;}
.x77{left:72.030000px;}
.x46{left:73.074000px;}
.x4c{left:74.745000px;}
.x3e{left:75.960000px;}
.x3c{left:77.394000px;}
.x61{left:79.374000px;}
.x2a{left:83.265000px;}
.x37{left:85.500000px;}
.x8c{left:87.660000px;}
.x40{left:88.740000px;}
.x8b{left:90.540000px;}
.x3d{left:92.520000px;}
.x5e{left:94.320000px;}
.x89{left:95.580000px;}
.x68{left:96.885000px;}
.x42{left:98.100000px;}
.x6c{left:100.125000px;}
.x62{left:101.340000px;}
.x1{left:106.415987px;}
.x74{left:107.496000px;}
.xaa{left:109.980000px;}
.x13{left:111.095987px;}
.xd{left:112.535987px;}
.x8a{left:113.790000px;}
.x39{left:117.540000px;}
.x88{left:118.830000px;}
.x6a{left:120.600000px;}
.xf{left:122.400000px;}
.x87{left:125.094000px;}
.x92{left:129.996000px;}
.x56{left:134.640000px;}
.x9{left:136.115987px;}
.x15{left:138.095987px;}
.xab{left:139.575000px;}
.x49{left:140.790000px;}
.x23{left:145.295987px;}
.x24{left:148.320000px;}
.x34{left:149.435987px;}
.x2{left:151.949987px;}
.xac{left:160.815000px;}
.x4f{left:167.730000px;}
.x51{left:168.840000px;}
.x52{left:171.180000px;}
.xad{left:182.055000px;}
.xa9{left:183.420000px;}
.xa7{left:184.889987px;}
.x75{left:186.690000px;}
.x96{left:201.270000px;}
.x4e{left:203.400000px;}
.x70{left:205.635000px;}
.x66{left:209.909987px;}
.x26{left:214.050000px;}
.x45{left:222.509987px;}
.xae{left:224.535000px;}
.x2b{left:235.770000px;}
.x31{left:237.089987px;}
.x7a{left:240.510000px;}
.x17{left:242.670000px;}
.xaf{left:245.775000px;}
.x84{left:248.439000px;}
.x67{left:250.410000px;}
.x73{left:255.099000px;}
.x12{left:258.480000px;}
.x50{left:262.230000px;}
.xb0{left:267.015000px;}
.x2f{left:268.635000px;}
.x36{left:274.935000px;}
.x47{left:279.075000px;}
.x5b{left:281.055000px;}
.x94{left:286.059000px;}
.xb1{left:288.255000px;}
.x54{left:293.835000px;}
.x98{left:296.175000px;}
.x9c{left:302.259000px;}
.x7b{left:306.255000px;}
.xb2{left:309.495000px;}
.x2c{left:312.015000px;}
.xa8{left:328.170000px;}
.xb3{left:330.735000px;}
.x4d{left:352.154987px;}
.xe{left:361.154987px;}
.x27{left:366.555000px;}
.xb4{left:373.215000px;}
.x85{left:375.915000px;}
.x19{left:378.615000px;}
.x14{left:386.714987px;}
.xb5{left:394.455000px;}
.x9e{left:397.875000px;}
.x53{left:399.960000px;}
.x8e{left:401.115000px;}
.xb6{left:415.695000px;}
.x6d{left:418.214987px;}
.x48{left:437.655000px;}
.x5c{left:439.275000px;}
.x7c{left:440.535000px;}
.x28{left:446.220000px;}
.x55{left:449.925000px;}
.xa{left:457.304987px;}
.x8f{left:475.305000px;}
.x69{left:477.825000px;}
.x38{left:479.445000px;}
.x4{left:483.404987px;}
.xb{left:487.004987px;}
.x99{left:494.925000px;}
.x5f{left:496.365000px;}
.xb7{left:500.655000px;}
.x7d{left:506.445000px;}
.xa4{left:509.144987px;}
.x1a{left:514.545000px;}
.x29{left:522.435000px;}
.x86{left:529.665000px;}
.x7{left:537.944987px;}
.x2d{left:540.750000px;}
.x6{left:543.344987px;}
.x8d{left:549.824987px;}
.xb8{left:564.375000px;}
.xa5{left:582.044987px;}
.xb9{left:585.615000px;}
.x78{left:586.725000px;}
.x9b{left:589.605000px;}
.x4b{left:607.065000px;}
.x5d{left:608.325000px;}
.x57{left:611.205000px;}
.x3b{left:621.870000px;}
.x6b{left:627.990000px;}
.x60{left:633.570000px;}
.x7e{left:640.590000px;}
.x32{left:648.509973px;}
.x1b{left:650.490000px;}
.x33{left:656.069987px;}
.x30{left:689.549987px;}
.x3{left:700.889987px;}
.x7f{left:706.470000px;}
.x5{left:708.449987px;}
.x91{left:710.790000px;}
.x9d{left:711.870000px;}
.x83{left:733.829987px;}
.xa3{left:739.409973px;}
.x44{left:741.389987px;}
.x22{left:744.629987px;}
.xa2{left:755.969987px;}
.xc{left:770.549987px;}
.xa6{left:782.969987px;}
.x8{left:786.749987px;}
@media print{
.v8{vertical-align:-84.586667pt;}
.vd{vertical-align:-83.466667pt;}
.v9{vertical-align:-77.813333pt;}
.va{vertical-align:-71.573333pt;}
.vb{vertical-align:-69.013333pt;}
.v1{vertical-align:-60.800000pt;}
.v4{vertical-align:-53.013333pt;}
.v25{vertical-align:-32.000000pt;}
.v3{vertical-align:-30.186667pt;}
.v1c{vertical-align:-29.173333pt;}
.v23{vertical-align:-25.333333pt;}
.v5{vertical-align:-24.160000pt;}
.v1b{vertical-align:-22.773333pt;}
.v27{vertical-align:-19.840000pt;}
.v24{vertical-align:-18.933333pt;}
.vc{vertical-align:-17.493333pt;}
.v6{vertical-align:-13.333333pt;}
.v13{vertical-align:-10.773333pt;}
.v29{vertical-align:-9.600000pt;}
.v1a{vertical-align:-7.146667pt;}
.v19{vertical-align:-5.386667pt;}
.v2{vertical-align:-3.200000pt;}
.v1e{vertical-align:-1.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.373333pt;}
.v1d{vertical-align:6.506667pt;}
.ve{vertical-align:8.586667pt;}
.v28{vertical-align:10.880000pt;}
.v1f{vertical-align:13.546667pt;}
.v2b{vertical-align:14.720000pt;}
.v22{vertical-align:17.280000pt;}
.v18{vertical-align:18.666667pt;}
.v12{vertical-align:19.626667pt;}
.vf{vertical-align:37.386667pt;}
.v2a{vertical-align:51.626667pt;}
.v17{vertical-align:56.586667pt;}
.v26{vertical-align:61.440000pt;}
.v21{vertical-align:65.653333pt;}
.v10{vertical-align:66.560000pt;}
.v20{vertical-align:67.840000pt;}
.v16{vertical-align:72.693333pt;}
.v15{vertical-align:88.213333pt;}
.v11{vertical-align:99.946667pt;}
.v14{vertical-align:103.040000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.229333pt;}
.ls14{letter-spacing:-0.178133pt;}
.ls15{letter-spacing:-0.089067pt;}
.ls28{letter-spacing:-0.081067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.011520pt;}
.ls13{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094720pt;}
.ls9{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.175360pt;}
.ls3{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.216960pt;}
.ls4{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.292480pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.355200pt;}
.ls1c{letter-spacing:1.223040pt;}
.ls10{letter-spacing:1.440000pt;}
.ls23{letter-spacing:1.863040pt;}
.ls29{letter-spacing:1.872640pt;}
.ls20{letter-spacing:3.242240pt;}
.ls1f{letter-spacing:4.015360pt;}
.ls27{letter-spacing:11.296000pt;}
.ls1d{letter-spacing:11.679360pt;}
.ls1b{letter-spacing:12.159360pt;}
.ls24{letter-spacing:14.347520pt;}
.ls19{letter-spacing:15.318400pt;}
.ls1a{letter-spacing:15.359360pt;}
.ls17{letter-spacing:16.907520pt;}
.ls16{letter-spacing:17.547520pt;}
.ls11{letter-spacing:18.912000pt;}
.ls8{letter-spacing:25.760000pt;}
.ls25{letter-spacing:28.091307pt;}
.ls26{letter-spacing:28.112640pt;}
.lsb{letter-spacing:290.080000pt;}
.ws22{word-spacing:-29.162880pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.545600pt;}
.ws1b{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.960000pt;}
.ws1e{word-spacing:-11.697920pt;}
.ws1d{word-spacing:-11.686400pt;}
.wse{word-spacing:-10.876928pt;}
.ws1c{word-spacing:-8.640000pt;}
.ws20{word-spacing:-8.166400pt;}
.ws21{word-spacing:-7.937067pt;}
.ws2{word-spacing:0.000000pt;}
.ws1f{word-spacing:10.933120pt;}
.ws19{word-spacing:40.480000pt;}
.wsc{word-spacing:42.069333pt;}
.ws7{word-spacing:42.565205pt;}
.wsd{word-spacing:42.581333pt;}
.ws8{word-spacing:42.634667pt;}
.ws9{word-spacing:42.741333pt;}
.ws6{word-spacing:42.794667pt;}
.ws24{word-spacing:44.688000pt;}
.ws23{word-spacing:45.381333pt;}
.wsa{word-spacing:54.794667pt;}
.wsf{word-spacing:54.821333pt;}
.wsb{word-spacing:54.917333pt;}
.ws18{word-spacing:61.861333pt;}
.ws16{word-spacing:148.021333pt;}
.ws15{word-spacing:148.202667pt;}
.ws17{word-spacing:148.309333pt;}
.ws3{word-spacing:149.701333pt;}
.ws4{word-spacing:150.128000pt;}
.ws13{word-spacing:174.677333pt;}
.ws11{word-spacing:175.126101pt;}
.ws14{word-spacing:175.237333pt;}
.ws12{word-spacing:175.290667pt;}
._29{margin-left:-9.457920pt;}
._19{margin-left:-3.945387pt;}
._6{margin-left:-2.493013pt;}
._5{margin-left:-1.114880pt;}
._1{width:0.903040pt;}
._2{width:2.477227pt;}
._4{width:3.611733pt;}
._7{width:4.695253pt;}
._a{width:5.875627pt;}
._8{width:7.428267pt;}
._d{width:8.552320pt;}
._e{width:9.720960pt;}
._f{width:10.836480pt;}
._9{width:12.270720pt;}
._2a{width:13.327147pt;}
._10{width:14.714240pt;}
._13{width:15.829760pt;}
._15{width:16.785920pt;}
._1c{width:18.007680pt;}
._b{width:19.123200pt;}
._c{width:20.079360pt;}
._1b{width:21.672960pt;}
._12{width:22.682240pt;}
._26{width:23.946667pt;}
._14{width:25.550720pt;}
._23{width:27.144320pt;}
._20{width:32.031360pt;}
._1f{width:32.987520pt;}
._1a{width:35.188693pt;}
._16{width:36.842027pt;}
._24{width:39.468160pt;}
._11{width:41.327360pt;}
._25{width:42.814720pt;}
._2d{width:45.120000pt;}
._2e{width:46.524160pt;}
._2c{width:48.974720pt;}
._28{width:50.623360pt;}
._21{width:63.719893pt;}
._18{width:124.245333pt;}
._3{width:148.487680pt;}
._1e{width:212.217600pt;}
._22{width:254.979200pt;}
._2b{width:525.514667pt;}
._27{width:544.694400pt;}
._17{width:580.303360pt;}
._0{width:682.533547pt;}
._1d{width:754.858667pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:53.248000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.880000pt;}
.y1c1{bottom:3.200000pt;}
.y179{bottom:4.480000pt;}
.y154{bottom:4.640000pt;}
.y124{bottom:4.800000pt;}
.y159{bottom:4.840000pt;}
.y123{bottom:4.960000pt;}
.y17c{bottom:5.120000pt;}
.y185{bottom:5.160000pt;}
.y17f{bottom:5.280000pt;}
.y14a{bottom:5.440000pt;}
.y1b8{bottom:5.600000pt;}
.y18f{bottom:5.760000pt;}
.y176{bottom:5.920000pt;}
.y1ad{bottom:6.560000pt;}
.y1ab{bottom:6.880000pt;}
.y19f{bottom:7.520000pt;}
.y1c4{bottom:8.320000pt;}
.y20a{bottom:8.413333pt;}
.y19e{bottom:8.800000pt;}
.y1a0{bottom:8.960000pt;}
.y1bc{bottom:9.920000pt;}
.ybf{bottom:10.400000pt;}
.yf1{bottom:10.560000pt;}
.yb5{bottom:10.880000pt;}
.y1fe{bottom:11.840000pt;}
.y1b6{bottom:13.280000pt;}
.y1a9{bottom:14.560000pt;}
.y5b{bottom:15.706667pt;}
.yb0{bottom:15.773333pt;}
.ybe{bottom:18.080000pt;}
.yf0{bottom:18.240000pt;}
.y1c0{bottom:18.560000pt;}
.y1b7{bottom:20.960000pt;}
.y1aa{bottom:22.240000pt;}
.y1b4{bottom:23.560000pt;}
.y1c3{bottom:23.680000pt;}
.y150{bottom:25.920000pt;}
.y14d{bottom:26.880000pt;}
.y1f3{bottom:27.426667pt;}
.y14f{bottom:33.600000pt;}
.y1bf{bottom:33.920000pt;}
.y200{bottom:36.986667pt;}
.y1c2{bottom:39.040000pt;}
.y14c{bottom:42.240000pt;}
.y77{bottom:42.266667pt;}
.yaf{bottom:42.373333pt;}
.yde{bottom:43.426667pt;}
.y2{bottom:49.600000pt;}
.y19c{bottom:54.280000pt;}
.y1f4{bottom:54.973333pt;}
.y6f{bottom:57.893333pt;}
.ya9{bottom:57.986667pt;}
.y201{bottom:62.173333pt;}
.ye5{bottom:70.266667pt;}
.y49{bottom:70.786667pt;}
.yda{bottom:78.080000pt;}
.yd9{bottom:82.080000pt;}
.y1f5{bottom:82.533333pt;}
.y4a{bottom:85.306667pt;}
.y202{bottom:87.333333pt;}
.y11e{bottom:88.480000pt;}
.y70{bottom:90.373333pt;}
.yd8{bottom:92.160000pt;}
.ye4{bottom:94.373333pt;}
.y4b{bottom:99.866667pt;}
.y11d{bottom:103.840000pt;}
.yaa{bottom:104.773333pt;}
.y1f6{bottom:110.080000pt;}
.y203{bottom:112.506667pt;}
.y4c{bottom:114.400000pt;}
.y6e{bottom:115.133333pt;}
.ye3{bottom:118.493333pt;}
.y11c{bottom:119.200000pt;}
.y1ec{bottom:122.432000pt;}
.y71{bottom:122.880000pt;}
.y4d{bottom:128.933333pt;}
.y11b{bottom:134.586667pt;}
.y148{bottom:135.546667pt;}
.y1f7{bottom:137.626667pt;}
.y204{bottom:137.693333pt;}
.y1eb{bottom:137.786667pt;}
.ya4{bottom:138.053333pt;}
.ye2{bottom:142.586667pt;}
.y4e{bottom:143.453333pt;}
.y11a{bottom:149.786667pt;}
.y144{bottom:150.906667pt;}
.yab{bottom:151.546667pt;}
.y1ea{bottom:153.146667pt;}
.y147{bottom:153.306667pt;}
.y72{bottom:155.360000pt;}
.y6c{bottom:157.600000pt;}
.y4f{bottom:157.986667pt;}
.ya3{bottom:158.466667pt;}
.y1ba{bottom:159.040000pt;}
.y205{bottom:162.880000pt;}
.y119{bottom:165.146667pt;}
.y1f8{bottom:165.186667pt;}
.y9e{bottom:166.426667pt;}
.ye1{bottom:166.720000pt;}
.y146{bottom:168.506667pt;}
.ydd{bottom:169.440000pt;}
.y143{bottom:170.266667pt;}
.y50{bottom:172.506667pt;}
.yd7{bottom:177.786667pt;}
.ya5{bottom:181.693333pt;}
.y9c{bottom:181.786667pt;}
.y1e9{bottom:183.866667pt;}
.y145{bottom:185.626667pt;}
.y142{bottom:185.786667pt;}
.y51{bottom:187.040000pt;}
.y73{bottom:187.840000pt;}
.y206{bottom:188.066667pt;}
.y1a7{bottom:189.946667pt;}
.ye0{bottom:190.813333pt;}
.ya6{bottom:192.573333pt;}
.y1f9{bottom:192.733333pt;}
.yd6{bottom:193.146667pt;}
.y118{bottom:193.626667pt;}
.y9b{bottom:197.146667pt;}
.ya8{bottom:197.573333pt;}
.yac{bottom:198.333333pt;}
.y1e8{bottom:199.066667pt;}
.y52{bottom:201.573333pt;}
.ya2{bottom:201.853333pt;}
.y1a6{bottom:205.306667pt;}
.yd5{bottom:208.506667pt;}
.y9a{bottom:212.506667pt;}
.y207{bottom:213.213333pt;}
.y141{bottom:214.266667pt;}
.y1e7{bottom:214.426667pt;}
.y53{bottom:216.093333pt;}
.y1f2{bottom:216.293333pt;}
.ya0{bottom:216.573333pt;}
.ydf{bottom:219.453333pt;}
.y1fa{bottom:220.293333pt;}
.y74{bottom:220.346667pt;}
.y1a5{bottom:220.666667pt;}
.yd4{bottom:223.866667pt;}
.y117{bottom:224.986667pt;}
.y1e6{bottom:226.906667pt;}
.y99{bottom:227.866667pt;}
.y1ff{bottom:228.160000pt;}
.y140{bottom:230.266667pt;}
.y54{bottom:230.626667pt;}
.y1f1{bottom:231.013333pt;}
.ya7{bottom:231.813333pt;}
.y1a4{bottom:236.026667pt;}
.y208{bottom:238.400000pt;}
.yd3{bottom:239.226667pt;}
.y116{bottom:240.986667pt;}
.y98{bottom:243.226667pt;}
.yad{bottom:245.120000pt;}
.y55{bottom:245.186667pt;}
.y13f{bottom:246.266667pt;}
.y1fb{bottom:247.840000pt;}
.ya1{bottom:250.333333pt;}
.y1a3{bottom:251.386667pt;}
.ydc{bottom:252.480000pt;}
.y75{bottom:252.826667pt;}
.yd2{bottom:254.426667pt;}
.y115{bottom:256.986667pt;}
.y6b{bottom:257.146667pt;}
.y97{bottom:258.426667pt;}
.y56{bottom:259.706667pt;}
.y13e{bottom:262.266667pt;}
.y209{bottom:263.586667pt;}
.y6d{bottom:263.840000pt;}
.y1f0{bottom:265.733333pt;}
.y1a2{bottom:266.586667pt;}
.y1ef{bottom:267.546667pt;}
.y6a{bottom:272.506667pt;}
.y114{bottom:272.986667pt;}
.y96{bottom:273.786667pt;}
.y57{bottom:274.240000pt;}
.y1fc{bottom:275.386667pt;}
.y174{bottom:278.266667pt;}
.y1a1{bottom:281.946667pt;}
.y1ee{bottom:282.266667pt;}
.yd1{bottom:282.906667pt;}
.y76{bottom:285.346667pt;}
.y69{bottom:287.866667pt;}
.y58{bottom:288.773333pt;}
.y113{bottom:288.986667pt;}
.y95{bottom:289.146667pt;}
.yae{bottom:291.906667pt;}
.y13d{bottom:293.466667pt;}
.y173{bottom:293.626667pt;}
.yd0{bottom:298.906667pt;}
.y1fd{bottom:302.946667pt;}
.y68{bottom:303.066667pt;}
.y59{bottom:303.293333pt;}
.y94{bottom:304.506667pt;}
.y112{bottom:304.986667pt;}
.y172{bottom:308.986667pt;}
.y13c{bottom:309.466667pt;}
.y19b{bottom:311.706667pt;}
.ycf{bottom:314.906667pt;}
.y5a{bottom:317.826667pt;}
.y67{bottom:318.426667pt;}
.y93{bottom:319.866667pt;}
.y110{bottom:320.986667pt;}
.y171{bottom:324.346667pt;}
.yce{bottom:330.906667pt;}
.y66{bottom:333.786667pt;}
.y92{bottom:335.066667pt;}
.y111{bottom:336.986667pt;}
.y170{bottom:339.706667pt;}
.y13b{bottom:340.826667pt;}
.ycd{bottom:346.946667pt;}
.y65{bottom:349.186667pt;}
.y91{bottom:350.466667pt;}
.y2f{bottom:353.826667pt;}
.y16f{bottom:355.106667pt;}
.y10f{bottom:355.906667pt;}
.y13a{bottom:356.866667pt;}
.y19d{bottom:357.186667pt;}
.ycc{bottom:362.946667pt;}
.y90{bottom:365.826667pt;}
.y2e{bottom:369.186667pt;}
.y16e{bottom:370.306667pt;}
.y47{bottom:370.466667pt;}
.y10e{bottom:371.266667pt;}
.y139{bottom:372.866667pt;}
.y64{bottom:377.666667pt;}
.ycb{bottom:378.946667pt;}
.y19a{bottom:380.546667pt;}
.y8f{bottom:381.186667pt;}
.y2d{bottom:384.546667pt;}
.y16d{bottom:385.666667pt;}
.y46{bottom:385.826667pt;}
.y10d{bottom:386.466667pt;}
.y138{bottom:388.866667pt;}
.y63{bottom:393.666667pt;}
.yc9{bottom:394.946667pt;}
.y8e{bottom:396.546667pt;}
.y1d9{bottom:397.026667pt;}
.y2c{bottom:399.906667pt;}
.y16c{bottom:401.026667pt;}
.y45{bottom:401.186667pt;}
.y10c{bottom:401.826667pt;}
.y137{bottom:404.866667pt;}
.y199{bottom:405.186667pt;}
.y62{bottom:409.666667pt;}
.y1cf{bottom:410.306667pt;}
.yca{bottom:410.946667pt;}
.y8d{bottom:411.906667pt;}
.y1d8{bottom:412.386667pt;}
.y2b{bottom:415.266667pt;}
.y16b{bottom:416.386667pt;}
.y44{bottom:416.546667pt;}
.y10b{bottom:417.186667pt;}
.y136{bottom:420.866667pt;}
.y61{bottom:425.666667pt;}
.y8c{bottom:427.106667pt;}
.y1d7{bottom:427.746667pt;}
.y198{bottom:429.346667pt;}
.yc8{bottom:429.826667pt;}
.y2a{bottom:430.466667pt;}
.y16a{bottom:431.746667pt;}
.y43{bottom:431.906667pt;}
.y10a{bottom:432.546667pt;}
.y135{bottom:436.866667pt;}
.y1ce{bottom:441.026667pt;}
.y60{bottom:441.666667pt;}
.y8b{bottom:442.466667pt;}
.y1d6{bottom:443.106667pt;}
.y196{bottom:444.706667pt;}
.yc7{bottom:445.186667pt;}
.y29{bottom:445.826667pt;}
.y42{bottom:447.106667pt;}
.y109{bottom:447.906667pt;}
.y134{bottom:452.866667pt;}
.y1cd{bottom:456.386667pt;}
.y5f{bottom:457.666667pt;}
.y8a{bottom:457.826667pt;}
.y1d5{bottom:458.306667pt;}
.y195{bottom:460.066667pt;}
.yc6{bottom:460.546667pt;}
.y28{bottom:461.186667pt;}
.y169{bottom:462.306667pt;}
.y41{bottom:462.466667pt;}
.y108{bottom:463.266667pt;}
.y133{bottom:468.866667pt;}
.y1cc{bottom:471.746667pt;}
.y89{bottom:473.186667pt;}
.y5e{bottom:473.666667pt;}
.y197{bottom:474.946667pt;}
.y194{bottom:475.426667pt;}
.yc5{bottom:475.906667pt;}
.y27{bottom:476.546667pt;}
.y168{bottom:477.666667pt;}
.y40{bottom:477.826667pt;}
.y107{bottom:478.466667pt;}
.y132{bottom:484.866667pt;}
.y1cb{bottom:486.946667pt;}
.y88{bottom:488.546667pt;}
.y1d4{bottom:489.026667pt;}
.y5c{bottom:489.666667pt;}
.y193{bottom:490.626667pt;}
.yc4{bottom:491.106667pt;}
.y26{bottom:491.906667pt;}
.y167{bottom:493.026667pt;}
.y3f{bottom:493.186667pt;}
.y106{bottom:493.826667pt;}
.y131{bottom:500.866667pt;}
.y1ca{bottom:502.306667pt;}
.y87{bottom:503.906667pt;}
.y1d3{bottom:504.386667pt;}
.y192{bottom:505.986667pt;}
.yc3{bottom:506.466667pt;}
.y25{bottom:507.266667pt;}
.y166{bottom:508.386667pt;}
.y3e{bottom:508.546667pt;}
.y105{bottom:509.186667pt;}
.y130{bottom:516.866667pt;}
.y1c9{bottom:517.666667pt;}
.y86{bottom:519.106667pt;}
.y1d2{bottom:520.866667pt;}
.y191{bottom:521.346667pt;}
.yc2{bottom:521.826667pt;}
.y24{bottom:522.466667pt;}
.y165{bottom:523.746667pt;}
.y3d{bottom:523.906667pt;}
.y104{bottom:524.546667pt;}
.y12f{bottom:532.866667pt;}
.y1c8{bottom:533.506667pt;}
.y9d{bottom:534.466667pt;}
.y1d1{bottom:536.386667pt;}
.y190{bottom:536.706667pt;}
.yc1{bottom:537.186667pt;}
.y23{bottom:537.826667pt;}
.y3c{bottom:539.106667pt;}
.y12e{bottom:548.866667pt;}
.y85{bottom:549.826667pt;}
.y1c7{bottom:550.626667pt;}
.y1d0{bottom:551.746667pt;}
.y164{bottom:552.066667pt;}
.yc0{bottom:552.546667pt;}
.y103{bottom:553.026667pt;}
.y22{bottom:553.186667pt;}
.y3b{bottom:554.466667pt;}
.y84{bottom:565.186667pt;}
.y1c6{bottom:566.946667pt;}
.y1e5{bottom:567.746667pt;}
.y21{bottom:568.546667pt;}
.y102{bottom:569.053333pt;}
.y3a{bottom:569.853333pt;}
.y163{bottom:573.213333pt;}
.y12d{bottom:580.253333pt;}
.y83{bottom:580.573333pt;}
.ybd{bottom:581.053333pt;}
.y1c5{bottom:582.333333pt;}
.y1e4{bottom:583.133333pt;}
.y1dc{bottom:583.773333pt;}
.y20{bottom:583.933333pt;}
.y101{bottom:585.053333pt;}
.y39{bottom:585.213333pt;}
.y162{bottom:592.893333pt;}
.y82{bottom:595.773333pt;}
.y1e3{bottom:598.493333pt;}
.y1f{bottom:599.133333pt;}
.y38{bottom:600.573333pt;}
.y100{bottom:601.053333pt;}
.y18e{bottom:602.493333pt;}
.y1b9{bottom:610.813333pt;}
.y81{bottom:611.133333pt;}
.y12c{bottom:611.613333pt;}
.ybc{bottom:612.253333pt;}
.y161{bottom:612.573333pt;}
.y1e2{bottom:613.853333pt;}
.y1e{bottom:614.493333pt;}
.y37{bottom:615.773333pt;}
.yff{bottom:617.053333pt;}
.y18d{bottom:623.133333pt;}
.y80{bottom:626.493333pt;}
.y12b{bottom:627.613333pt;}
.ybb{bottom:628.253333pt;}
.y1e1{bottom:629.053333pt;}
.y1d{bottom:629.853333pt;}
.y36{bottom:631.133333pt;}
.y160{bottom:632.413333pt;}
.yfe{bottom:633.053333pt;}
.y7f{bottom:641.853333pt;}
.y12a{bottom:643.613333pt;}
.y18c{bottom:643.773333pt;}
.yba{bottom:644.253333pt;}
.y1e0{bottom:644.413333pt;}
.y1c{bottom:645.213333pt;}
.y35{bottom:646.493333pt;}
.yfd{bottom:649.053333pt;}
.y15f{bottom:652.093333pt;}
.y7e{bottom:657.213333pt;}
.y129{bottom:659.613333pt;}
.y1df{bottom:659.773333pt;}
.yb9{bottom:660.253333pt;}
.y1b{bottom:660.573333pt;}
.y34{bottom:661.853333pt;}
.y18b{bottom:664.573333pt;}
.yfb{bottom:665.053333pt;}
.y1be{bottom:668.253333pt;}
.y15e{bottom:671.773333pt;}
.y7d{bottom:672.573333pt;}
.y1de{bottom:675.133333pt;}
.y128{bottom:675.613333pt;}
.y1db{bottom:675.773333pt;}
.y1a{bottom:675.933333pt;}
.yb8{bottom:676.253333pt;}
.y33{bottom:677.213333pt;}
.yfc{bottom:681.053333pt;}
.y18a{bottom:685.213333pt;}
.y7c{bottom:687.773333pt;}
.y1dd{bottom:690.813333pt;}
.y19{bottom:691.133333pt;}
.y127{bottom:691.613333pt;}
.yb7{bottom:692.253333pt;}
.y32{bottom:692.573333pt;}
.yfa{bottom:699.933333pt;}
.y7b{bottom:703.133333pt;}
.y189{bottom:705.853333pt;}
.y18{bottom:706.493333pt;}
.y126{bottom:707.613333pt;}
.y31{bottom:707.773333pt;}
.yb4{bottom:708.253333pt;}
.y15d{bottom:711.293333pt;}
.y1bd{bottom:715.613333pt;}
.y7a{bottom:718.493333pt;}
.y30{bottom:720.253333pt;}
.y48{bottom:720.480000pt;}
.y17{bottom:721.853333pt;}
.y125{bottom:723.613333pt;}
.yb6{bottom:724.253333pt;}
.y188{bottom:726.493333pt;}
.yf9{bottom:730.493333pt;}
.y15c{bottom:730.973333pt;}
.y79{bottom:733.853333pt;}
.y1da{bottom:734.333333pt;}
.y1ed{bottom:735.360000pt;}
.y16{bottom:737.213333pt;}
.y122{bottom:739.613333pt;}
.yb3{bottom:743.133333pt;}
.yf8{bottom:745.853333pt;}
.y78{bottom:746.333333pt;}
.y9f{bottom:746.400000pt;}
.y187{bottom:747.133333pt;}
.y15b{bottom:750.813333pt;}
.y15{bottom:752.573333pt;}
.y121{bottom:757.693333pt;}
.yf7{bottom:761.213333pt;}
.y1bb{bottom:762.333333pt;}
.y186{bottom:767.773333pt;}
.y14{bottom:767.933333pt;}
.y15a{bottom:770.493333pt;}
.yb2{bottom:773.853333pt;}
.yf6{bottom:776.573333pt;}
.y1b3{bottom:782.973333pt;}
.y13{bottom:783.133333pt;}
.yb1{bottom:786.333333pt;}
.ydb{bottom:787.520000pt;}
.y184{bottom:788.573333pt;}
.y158{bottom:790.173333pt;}
.yf5{bottom:791.933333pt;}
.y12{bottom:798.533333pt;}
.y1b5{bottom:803.653333pt;}
.yf4{bottom:807.173333pt;}
.y183{bottom:809.253333pt;}
.y157{bottom:810.053333pt;}
.y11{bottom:813.893333pt;}
.yf3{bottom:822.533333pt;}
.y10{bottom:829.253333pt;}
.y156{bottom:829.733333pt;}
.y182{bottom:829.893333pt;}
.yf2{bottom:837.893333pt;}
.y1b2{bottom:840.293333pt;}
.yf{bottom:844.613333pt;}
.y155{bottom:849.413333pt;}
.y181{bottom:850.533333pt;}
.y120{bottom:853.253333pt;}
.ye{bottom:859.973333pt;}
.yef{bottom:866.373333pt;}
.y153{bottom:869.253333pt;}
.y180{bottom:871.173333pt;}
.yd{bottom:875.173333pt;}
.y1b1{bottom:878.533333pt;}
.y11f{bottom:881.733333pt;}
.y152{bottom:888.933333pt;}
.yc{bottom:890.533333pt;}
.y17e{bottom:891.813333pt;}
.y1b0{bottom:893.893333pt;}
.yee{bottom:897.733333pt;}
.yb{bottom:905.893333pt;}
.y151{bottom:908.613333pt;}
.y1af{bottom:909.253333pt;}
.y17d{bottom:912.613333pt;}
.yed{bottom:913.733333pt;}
.ya{bottom:921.253333pt;}
.y1ae{bottom:924.613333pt;}
.yec{bottom:929.733333pt;}
.y17b{bottom:933.253333pt;}
.y9{bottom:936.613333pt;}
.y14b{bottom:939.973333pt;}
.yeb{bottom:945.733333pt;}
.y8{bottom:951.813333pt;}
.y17a{bottom:953.893333pt;}
.y1ac{bottom:954.373333pt;}
.yea{bottom:961.733333pt;}
.y7{bottom:967.173333pt;}
.y177{bottom:975.813333pt;}
.ye9{bottom:977.733333pt;}
.y1a8{bottom:979.013333pt;}
.y6{bottom:982.533333pt;}
.y14e{bottom:987.973333pt;}
.ye7{bottom:993.733333pt;}
.y178{bottom:996.293333pt;}
.y5{bottom:997.893333pt;}
.ye8{bottom:1009.733333pt;}
.y4{bottom:1013.253333pt;}
.y175{bottom:1019.680000pt;}
.y149{bottom:1020.640000pt;}
.ye6{bottom:1028.640000pt;}
.y3{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.h19{height:15.200000pt;}
.h18{height:15.232000pt;}
.ha{height:15.360000pt;}
.h13{height:15.392000pt;}
.h1f{height:17.440000pt;}
.h2f{height:18.560000pt;}
.h27{height:19.040000pt;}
.h28{height:19.200000pt;}
.h29{height:19.232000pt;}
.h30{height:20.000000pt;}
.h31{height:20.032000pt;}
.h24{height:20.320000pt;}
.h2a{height:20.512000pt;}
.h2c{height:21.280000pt;}
.h34{height:21.440000pt;}
.h2e{height:21.472000pt;}
.h32{height:22.560000pt;}
.h11{height:30.560000pt;}
.h1c{height:30.720000pt;}
.h22{height:30.752000pt;}
.h1a{height:31.200000pt;}
.h17{height:31.232000pt;}
.h10{height:31.360000pt;}
.h1b{height:31.392000pt;}
.h14{height:31.406250pt;}
.h3b{height:33.901875pt;}
.h37{height:36.000000pt;}
.h35{height:38.752000pt;}
.h2d{height:41.952000pt;}
.h26{height:46.080000pt;}
.h12{height:46.480000pt;}
.h39{height:46.720000pt;}
.h3{height:47.109375pt;}
.h21{height:47.621250pt;}
.h8{height:47.742188pt;}
.h9{height:47.869500pt;}
.h2b{height:48.375000pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.hd{height:52.461875pt;}
.h23{height:52.478750pt;}
.h2{height:52.834688pt;}
.h16{height:52.962000pt;}
.h4{height:53.535000pt;}
.h1e{height:53.550000pt;}
.h3c{height:54.598989pt;}
.h36{height:56.672000pt;}
.h3a{height:56.800000pt;}
.hf{height:65.022187pt;}
.h33{height:66.752000pt;}
.h20{height:68.008125pt;}
.h25{height:78.752000pt;}
.h3e{height:99.368854pt;}
.h1d{height:113.574375pt;}
.hc{height:115.582187pt;}
.hb{height:167.315521pt;}
.h38{height:171.520000pt;}
.h15{height:268.800000pt;}
.h3f{height:306.880000pt;}
.he{height:309.920000pt;}
.h3d{height:320.960000pt;}
.h7{height:335.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4a{width:20.000000pt;}
.w58{width:20.320000pt;}
.w37{width:47.200000pt;}
.w3a{width:47.232000pt;}
.w2f{width:47.520000pt;}
.w33{width:47.552000pt;}
.w32{width:47.680000pt;}
.w39{width:57.760000pt;}
.w38{width:57.792000pt;}
.w3b{width:57.920000pt;}
.w30{width:58.112000pt;}
.w34{width:58.240000pt;}
.w46{width:65.632000pt;}
.w55{width:66.240000pt;}
.w49{width:66.560000pt;}
.w57{width:68.032000pt;}
.w48{width:68.160000pt;}
.w54{width:68.480000pt;}
.w5a{width:68.800000pt;}
.w2b{width:69.280000pt;}
.w35{width:70.400000pt;}
.w36{width:70.720000pt;}
.w31{width:71.040000pt;}
.w4c{width:82.400000pt;}
.w4f{width:83.840000pt;}
.w4d{width:83.872000pt;}
.w59{width:97.760000pt;}
.w4b{width:97.920000pt;}
.w3f{width:112.512000pt;}
.w40{width:114.720000pt;}
.w43{width:115.360000pt;}
.w44{width:117.920000pt;}
.w51{width:118.400000pt;}
.w28{width:119.520000pt;}
.w4{width:120.160000pt;}
.w6{width:120.480000pt;}
.w5{width:120.512000pt;}
.w21{width:121.312000pt;}
.wc{width:125.952000pt;}
.w23{width:126.720000pt;}
.w26{width:132.672000pt;}
.w22{width:135.520000pt;}
.w42{width:136.026667pt;}
.w3e{width:136.346667pt;}
.w15{width:138.106667pt;}
.w56{width:139.706667pt;}
.w1a{width:140.000000pt;}
.wf{width:140.320000pt;}
.w27{width:140.480000pt;}
.w47{width:140.506667pt;}
.w53{width:140.826667pt;}
.wd{width:141.760000pt;}
.w45{width:141.786667pt;}
.w17{width:142.560000pt;}
.w9{width:144.346667pt;}
.w1e{width:148.026667pt;}
.w1c{width:149.626667pt;}
.w11{width:149.946667pt;}
.we{width:152.026667pt;}
.w19{width:153.946667pt;}
.w18{width:155.386667pt;}
.w1d{width:157.946667pt;}
.w12{width:159.066667pt;}
.w14{width:165.146667pt;}
.w50{width:174.266667pt;}
.w4e{width:176.346667pt;}
.w2e{width:176.826667pt;}
.w2c{width:177.306667pt;}
.w2d{width:177.626667pt;}
.wa{width:181.146667pt;}
.w1f{width:196.666667pt;}
.w24{width:201.506667pt;}
.w52{width:208.066667pt;}
.w3c{width:237.626667pt;}
.w41{width:239.226667pt;}
.w20{width:257.466667pt;}
.wb{width:268.346667pt;}
.w25{width:273.946667pt;}
.w16{width:298.746667pt;}
.w1b{width:308.226667pt;}
.w10{width:309.666667pt;}
.w3d{width:364.226667pt;}
.w13{width:431.040000pt;}
.w29{width:483.293333pt;}
.w7{width:529.920000pt;}
.w5b{width:548.320000pt;}
.w3{width:576.000000pt;}
.w5c{width:596.960000pt;}
.w2a{width:604.733333pt;}
.w8{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x71{left:6.880000pt;}
.x9f{left:7.840000pt;}
.x11{left:8.768000pt;}
.x79{left:9.760000pt;}
.x72{left:10.720000pt;}
.x9a{left:12.000000pt;}
.x76{left:13.760000pt;}
.x20{left:14.848000pt;}
.x35{left:16.000000pt;}
.x10{left:17.824000pt;}
.x64{left:19.040000pt;}
.x81{left:20.840000pt;}
.xa1{left:21.760000pt;}
.x6e{left:22.720000pt;}
.x95{left:23.680000pt;}
.x59{left:25.440000pt;}
.x5a{left:27.680000pt;}
.x82{left:28.640000pt;}
.x1e{left:29.626667pt;}
.x6f{left:31.200000pt;}
.x93{left:32.640000pt;}
.x80{left:33.600000pt;}
.x90{left:35.040000pt;}
.x97{left:37.600000pt;}
.x1f{left:38.653333pt;}
.x21{left:40.253333pt;}
.x63{left:41.914667pt;}
.x1c{left:44.474667pt;}
.x65{left:45.440000pt;}
.x18{left:47.080000pt;}
.x16{left:48.954667pt;}
.x3a{left:49.920000pt;}
.x1d{left:52.040000pt;}
.x4a{left:53.146667pt;}
.x25{left:54.720000pt;}
.x43{left:55.840000pt;}
.x58{left:57.280000pt;}
.xa0{left:58.240000pt;}
.x41{left:59.200000pt;}
.x2e{left:60.986667pt;}
.x3f{left:62.560000pt;}
.x77{left:64.026667pt;}
.x46{left:64.954667pt;}
.x4c{left:66.440000pt;}
.x3e{left:67.520000pt;}
.x3c{left:68.794667pt;}
.x61{left:70.554667pt;}
.x2a{left:74.013333pt;}
.x37{left:76.000000pt;}
.x8c{left:77.920000pt;}
.x40{left:78.880000pt;}
.x8b{left:80.480000pt;}
.x3d{left:82.240000pt;}
.x5e{left:83.840000pt;}
.x89{left:84.960000pt;}
.x68{left:86.120000pt;}
.x42{left:87.200000pt;}
.x6c{left:89.000000pt;}
.x62{left:90.080000pt;}
.x1{left:94.591988pt;}
.x74{left:95.552000pt;}
.xaa{left:97.760000pt;}
.x13{left:98.751988pt;}
.xd{left:100.031988pt;}
.x8a{left:101.146667pt;}
.x39{left:104.480000pt;}
.x88{left:105.626667pt;}
.x6a{left:107.200000pt;}
.xf{left:108.800000pt;}
.x87{left:111.194667pt;}
.x92{left:115.552000pt;}
.x56{left:119.680000pt;}
.x9{left:120.991988pt;}
.x15{left:122.751988pt;}
.xab{left:124.066667pt;}
.x49{left:125.146667pt;}
.x23{left:129.151988pt;}
.x24{left:131.840000pt;}
.x34{left:132.831988pt;}
.x2{left:135.066655pt;}
.xac{left:142.946667pt;}
.x4f{left:149.093333pt;}
.x51{left:150.080000pt;}
.x52{left:152.160000pt;}
.xad{left:161.826667pt;}
.xa9{left:163.040000pt;}
.xa7{left:164.346655pt;}
.x75{left:165.946667pt;}
.x96{left:178.906667pt;}
.x4e{left:180.800000pt;}
.x70{left:182.786667pt;}
.x66{left:186.586655pt;}
.x26{left:190.266667pt;}
.x45{left:197.786655pt;}
.xae{left:199.586667pt;}
.x2b{left:209.573333pt;}
.x31{left:210.746655pt;}
.x7a{left:213.786667pt;}
.x17{left:215.706667pt;}
.xaf{left:218.466667pt;}
.x84{left:220.834667pt;}
.x67{left:222.586667pt;}
.x73{left:226.754667pt;}
.x12{left:229.760000pt;}
.x50{left:233.093333pt;}
.xb0{left:237.346667pt;}
.x2f{left:238.786667pt;}
.x36{left:244.386667pt;}
.x47{left:248.066667pt;}
.x5b{left:249.826667pt;}
.x94{left:254.274667pt;}
.xb1{left:256.226667pt;}
.x54{left:261.186667pt;}
.x98{left:263.266667pt;}
.x9c{left:268.674667pt;}
.x7b{left:272.226667pt;}
.xb2{left:275.106667pt;}
.x2c{left:277.346667pt;}
.xa8{left:291.706667pt;}
.xb3{left:293.986667pt;}
.x4d{left:313.026655pt;}
.xe{left:321.026655pt;}
.x27{left:325.826667pt;}
.xb4{left:331.746667pt;}
.x85{left:334.146667pt;}
.x19{left:336.546667pt;}
.x14{left:343.746655pt;}
.xb5{left:350.626667pt;}
.x9e{left:353.666667pt;}
.x53{left:355.520000pt;}
.x8e{left:356.546667pt;}
.xb6{left:369.506667pt;}
.x6d{left:371.746655pt;}
.x48{left:389.026667pt;}
.x5c{left:390.466667pt;}
.x7c{left:391.586667pt;}
.x28{left:396.640000pt;}
.x55{left:399.933333pt;}
.xa{left:406.493322pt;}
.x8f{left:422.493333pt;}
.x69{left:424.733333pt;}
.x38{left:426.173333pt;}
.x4{left:429.693322pt;}
.xb{left:432.893322pt;}
.x99{left:439.933333pt;}
.x5f{left:441.213333pt;}
.xb7{left:445.026667pt;}
.x7d{left:450.173333pt;}
.xa4{left:452.573322pt;}
.x1a{left:457.373333pt;}
.x29{left:464.386667pt;}
.x86{left:470.813333pt;}
.x7{left:478.173322pt;}
.x2d{left:480.666667pt;}
.x6{left:482.973322pt;}
.x8d{left:488.733322pt;}
.xb8{left:501.666667pt;}
.xa5{left:517.373322pt;}
.xb9{left:520.546667pt;}
.x78{left:521.533333pt;}
.x9b{left:524.093333pt;}
.x4b{left:539.613333pt;}
.x5d{left:540.733333pt;}
.x57{left:543.293333pt;}
.x3b{left:552.773333pt;}
.x6b{left:558.213333pt;}
.x60{left:563.173333pt;}
.x7e{left:569.413333pt;}
.x32{left:576.453310pt;}
.x1b{left:578.213333pt;}
.x33{left:583.173322pt;}
.x30{left:612.933322pt;}
.x3{left:623.013322pt;}
.x7f{left:627.973333pt;}
.x5{left:629.733322pt;}
.x91{left:631.813333pt;}
.x9d{left:632.773333pt;}
.x83{left:652.293322pt;}
.xa3{left:657.253310pt;}
.x44{left:659.013322pt;}
.x22{left:661.893322pt;}
.xa2{left:671.973322pt;}
.xc{left:684.933322pt;}
.xa6{left:695.973322pt;}
.x8{left:699.333322pt;}
}




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