
    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_ecd69ff134758e4e313a525a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_d48a9b32ce76b97cb2ea6d50.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_40609339a5b65042f6c655d6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_518fc9a1e3005bd28db55d05.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_45bce2628255773d97932ecb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_c953827b4b1a8131b348e265.woff')format("woff");}.ff6{font-family:ff6;line-height:0.884277;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_82f18fd1a0e47e0be948002b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_2276da3bfd31508c031d8102.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372559;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_702f1f96ee1f7322a7e60dd8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1359921b51456d19012caa3a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.452637;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_8f1612e67a77ef67c8c318dc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.036133;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_0fdd6151948b49eb8b6c3029.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2bed08ef8aa200bf8f951a80.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_370bb8f73a79282b9894e236.woff')format("woff");}.fff{font-family:fff;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_87ff18acd79a9f5231a2ba8f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7b0d8c4663865b8e134bcec6.woff')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v12{vertical-align:-136.080000px;}
.vd{vertical-align:-82.800000px;}
.vf{vertical-align:-80.640000px;}
.ve{vertical-align:-77.760000px;}
.v10{vertical-align:-76.320000px;}
.v1{vertical-align:-66.960000px;}
.vc{vertical-align:-64.800000px;}
.v11{vertical-align:-59.760000px;}
.v7{vertical-align:-28.080000px;}
.v3{vertical-align:-23.760000px;}
.vb{vertical-align:-20.880000px;}
.v5{vertical-align:-17.280000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.440000px;}
.v6{vertical-align:17.280000px;}
.va{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.ls13{letter-spacing:-10.560000px;}
.ls10{letter-spacing:-5.184000px;}
.ls12{letter-spacing:-2.664000px;}
.lsf{letter-spacing:-1.944000px;}
.ls1{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.083400px;}
.ls6{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000003px;}
.ls22{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.057600px;}
.ls11{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.256200px;}
.ls14{letter-spacing:0.269400px;}
.ls3{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.353400px;}
.ls18{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.656000px;}
.ls24{letter-spacing:3.744000px;}
.lse{letter-spacing:5.976000px;}
.ls9{letter-spacing:33.984000px;}
.ls26{letter-spacing:51.984000px;}
.ls25{letter-spacing:55.584000px;}
.ls19{letter-spacing:77.040000px;}
.ls1a{letter-spacing:115.920000px;}
.ls1c{letter-spacing:154.080000px;}
.ls1e{letter-spacing:318.360000px;}
.ls1f{letter-spacing:320.520000px;}
.ls21{letter-spacing:714.360000px;}
.ls20{letter-spacing:726.660000px;}
.ls23{letter-spacing:743.220000px;}
.ls1b{letter-spacing:803.700000px;}
.ls27{letter-spacing:1763.040000px;}
.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;}
}
.ws16{word-spacing:-66.496200px;}
.ws1{word-spacing:-66.240000px;}
.ws9{word-spacing:-27.057480px;}
.wsd{word-spacing:-23.112000px;}
.ws11{word-spacing:-22.896000px;}
.wsf{word-spacing:-22.824003px;}
.wsb{word-spacing:-22.824000px;}
.wsc{word-spacing:-22.608000px;}
.wse{word-spacing:-22.536000px;}
.wsa{word-spacing:-20.998080px;}
.ws4{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws15{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.640000px;}
.ws0{word-spacing:-16.560000px;}
.ws17{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws1b{word-spacing:-13.860000px;}
.ws19{word-spacing:-13.500000px;}
.ws14{word-spacing:-12.329400px;}
.ws12{word-spacing:-12.264000px;}
.ws1a{word-spacing:-12.240000px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws18{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._57{margin-left:-1639.191840px;}
._a0{margin-left:-1521.329280px;}
._5f{margin-left:-1498.380000px;}
._a8{margin-left:-1391.652480px;}
._88{margin-left:-1127.148240px;}
._c{margin-left:-1103.285280px;}
._30{margin-left:-1087.627680px;}
._85{margin-left:-1012.692000px;}
._a1{margin-left:-1007.409120px;}
._9b{margin-left:-991.787760px;}
._86{margin-left:-984.702240px;}
._56{margin-left:-965.460000px;}
._9d{margin-left:-941.195520px;}
._2c{margin-left:-920.249040px;}
._bc{margin-left:-898.848480px;}
._c2{margin-left:-876.818880px;}
._bf{margin-left:-873.218880px;}
._be{margin-left:-865.020000px;}
._a6{margin-left:-826.104000px;}
._93{margin-left:-806.308800px;}
._c8{margin-left:-805.221600px;}
._8b{margin-left:-772.655760px;}
._a9{margin-left:-735.742080px;}
._3d{margin-left:-730.080000px;}
._4d{margin-left:-696.924000px;}
._4e{margin-left:-690.219840px;}
._65{margin-left:-667.488000px;}
._8c{margin-left:-647.015520px;}
._bb{margin-left:-645.024000px;}
._74{margin-left:-630.443760px;}
._75{margin-left:-628.416480px;}
._81{margin-left:-619.804560px;}
._82{margin-left:-596.737920px;}
._92{margin-left:-591.804000px;}
._43{margin-left:-578.355840px;}
._39{margin-left:-577.215360px;}
._66{margin-left:-571.606080px;}
._41{margin-left:-570.451680px;}
._9f{margin-left:-558.504000px;}
._16{margin-left:-552.537840px;}
._54{margin-left:-545.982960px;}
._b9{margin-left:-540.816000px;}
._38{margin-left:-535.362240px;}
._4b{margin-left:-529.229280px;}
._19{margin-left:-521.522400px;}
._1a{margin-left:-511.602240px;}
._aa{margin-left:-479.952000px;}
._98{margin-left:-476.208000px;}
._a{margin-left:-469.627200px;}
._8f{margin-left:-461.220000px;}
._cd{margin-left:-459.676800px;}
._14{margin-left:-449.910000px;}
._6b{margin-left:-442.392000px;}
._a5{margin-left:-440.784000px;}
._9{margin-left:-436.998960px;}
._4a{margin-left:-428.921040px;}
._c1{margin-left:-426.620400px;}
._48{margin-left:-424.044000px;}
._3a{margin-left:-422.841960px;}
._89{margin-left:-411.016560px;}
._7e{margin-left:-408.216000px;}
._d{margin-left:-402.498000px;}
._76{margin-left:-397.344000px;}
._77{margin-left:-394.341840px;}
._95{margin-left:-392.803680px;}
._6f{margin-left:-391.116720px;}
._ba{margin-left:-389.700000px;}
._6e{margin-left:-384.384000px;}
._3b{margin-left:-379.638720px;}
._97{margin-left:-376.967760px;}
._94{margin-left:-375.180000px;}
._12{margin-left:-369.396000px;}
._ce{margin-left:-365.624640px;}
._33{margin-left:-362.041200px;}
._71{margin-left:-357.120000px;}
._8e{margin-left:-353.561040px;}
._70{margin-left:-349.704000px;}
._64{margin-left:-343.943040px;}
._84{margin-left:-334.008960px;}
._55{margin-left:-328.105440px;}
._69{margin-left:-326.015520px;}
._7d{margin-left:-320.184000px;}
._68{margin-left:-313.164000px;}
._96{margin-left:-311.112000px;}
._73{margin-left:-310.080000px;}
._b8{margin-left:-304.788000px;}
._9a{margin-left:-295.320000px;}
._7b{margin-left:-294.120000px;}
._9c{margin-left:-290.473920px;}
._ab{margin-left:-289.080000px;}
._83{margin-left:-283.584000px;}
._3{margin-left:-279.576000px;}
._9e{margin-left:-274.464480px;}
._34{margin-left:-267.827760px;}
._13{margin-left:-263.340000px;}
._90{margin-left:-260.796000px;}
._2{margin-left:-258.480000px;}
._6c{margin-left:-252.360000px;}
._72{margin-left:-249.120014px;}
._6a{margin-left:-246.720000px;}
._63{margin-left:-245.304000px;}
._47{margin-left:-237.355920px;}
._99{margin-left:-235.728000px;}
._60{margin-left:-234.287520px;}
._58{margin-left:-232.992000px;}
._36{margin-left:-216.784080px;}
._61{margin-left:-215.424000px;}
._31{margin-left:-214.096320px;}
._7a{margin-left:-211.080000px;}
._52{margin-left:-206.236560px;}
._6d{margin-left:-199.080000px;}
._a2{margin-left:-197.316000px;}
._4{margin-left:-196.272000px;}
._7{margin-left:-192.456000px;}
._32{margin-left:-191.309040px;}
._5{margin-left:-189.360000px;}
._5b{margin-left:-186.096000px;}
._8d{margin-left:-183.360000px;}
._bd{margin-left:-177.777120px;}
._8a{margin-left:-171.144000px;}
._4c{margin-left:-163.440240px;}
._5a{margin-left:-160.525440px;}
._79{margin-left:-158.400000px;}
._50{margin-left:-156.300240px;}
._11{margin-left:-149.652000px;}
._4f{margin-left:-147.888000px;}
._7c{margin-left:-140.760000px;}
._59{margin-left:-138.024000px;}
._18{margin-left:-136.906560px;}
._7f{margin-left:-135.864000px;}
._5d{margin-left:-127.762560px;}
._0{margin-left:-125.784000px;}
._51{margin-left:-122.880000px;}
._78{margin-left:-120.240000px;}
._cb{margin-left:-111.075840px;}
._c0{margin-left:-106.646400px;}
._c6{margin-left:-105.095760px;}
._a3{margin-left:-102.744000px;}
._35{margin-left:-101.646480px;}
._10{margin-left:-95.724000px;}
._c3{margin-left:-93.795840px;}
._f{margin-left:-92.538000px;}
._1{margin-left:-90.000000px;}
._80{margin-left:-85.680480px;}
._91{margin-left:-80.856000px;}
._5c{margin-left:-77.760000px;}
._17{margin-left:-76.320000px;}
._15{margin-left:-70.999680px;}
._ac{margin-left:-60.312000px;}
._a4{margin-left:-58.392000px;}
._3e{margin-left:-55.558080px;}
._ad{margin-left:-53.208000px;}
._62{margin-left:-50.472000px;}
._c4{margin-left:-48.888000px;}
._3f{margin-left:-47.082240px;}
._5e{margin-left:-42.156000px;}
._40{margin-left:-39.778560px;}
._67{margin-left:-37.944000px;}
._44{margin-left:-34.122240px;}
._46{margin-left:-32.002560px;}
._45{margin-left:-29.551680px;}
._a7{margin-left:-27.864000px;}
._e{margin-left:-22.698000px;}
._2d{margin-left:-19.712160px;}
._53{margin-left:-17.280000px;}
._42{margin-left:-15.963840px;}
._49{margin-left:-14.471040px;}
._2e{margin-left:-13.391760px;}
._2f{margin-left:-12.251760px;}
._3c{margin-left:-10.267200px;}
._37{margin-left:-6.654960px;}
._1e{margin-left:-5.112000px;}
._1f{margin-left:-4.033440px;}
._1d{margin-left:-3.024000px;}
._6{margin-left:-1.080000px;}
._b{width:1.008480px;}
._1b{width:2.232000px;}
._22{width:3.743520px;}
._20{width:4.824000px;}
._21{width:6.420000px;}
._24{width:8.208000px;}
._25{width:9.719520px;}
._23{width:11.232000px;}
._28{width:12.744000px;}
._1c{width:14.232000px;}
._26{width:15.240000px;}
._27{width:16.992000px;}
._87{width:18.371760px;}
._ae{width:19.656000px;}
._b1{width:20.698800px;}
._b7{width:22.069200px;}
._b2{width:23.688000px;}
._b3{width:24.690480px;}
._b5{width:25.704000px;}
._b4{width:26.784000px;}
._29{width:28.224000px;}
._2a{width:29.520000px;}
._af{width:30.960000px;}
._b0{width:32.256000px;}
._b6{width:34.416000px;}
._c5{width:35.976000px;}
._c7{width:53.976000px;}
._d1{width:58.104000px;}
._d2{width:62.568000px;}
._d3{width:64.007520px;}
._d0{width:107.976000px;}
._8{width:418.320000px;}
._c9{width:682.788000px;}
._cc{width:781.431840px;}
._ca{width:808.791840px;}
._cf{width:825.556320px;}
._2b{width:846.156000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,255);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y12d{bottom:3.225000px;}
.y9a{bottom:3.240000px;}
.y121{bottom:3.255000px;}
.y12b{bottom:3.405000px;}
.y94{bottom:3.411000px;}
.y14{bottom:3.420000px;}
.y9c{bottom:3.600000px;}
.y96{bottom:3.771000px;}
.yf{bottom:4.140000px;}
.ya{bottom:6.840000px;}
.y2{bottom:9.750000px;}
.y11e{bottom:10.080000px;}
.y122{bottom:10.800000px;}
.y8{bottom:17.685000px;}
.y11f{bottom:18.540000px;}
.y93{bottom:20.685000px;}
.ye{bottom:22.140000px;}
.y5{bottom:26.865000px;}
.y7{bottom:31.530000px;}
.y12{bottom:33.120000px;}
.y11{bottom:34.740000px;}
.yd{bottom:37.620000px;}
.y10{bottom:37.980000px;}
.y6{bottom:45.390000px;}
.y3{bottom:47.550000px;}
.yc{bottom:48.600000px;}
.y137{bottom:114.336000px;}
.y11a{bottom:117.936000px;}
.y13e{bottom:121.356000px;}
.yb1{bottom:123.876000px;}
.y7e{bottom:124.056000px;}
.y95{bottom:124.425000px;}
.y151{bottom:124.776000px;}
.y55{bottom:126.036000px;}
.yd4{bottom:126.216000px;}
.y136{bottom:135.036000px;}
.y119{bottom:138.636000px;}
.y13d{bottom:141.516000px;}
.yc0{bottom:141.876000px;}
.y92{bottom:142.425000px;}
.yb0{bottom:144.576000px;}
.y7d{bottom:144.756000px;}
.y54{bottom:146.736000px;}
.yd3{bottom:146.916000px;}
.y150{bottom:148.536000px;}
.y135{bottom:155.730000px;}
.y13c{bottom:156.630000px;}
.y118{bottom:159.330000px;}
.y38{bottom:160.410000px;}
.ye5{bottom:162.570000px;}
.yaf{bottom:164.910000px;}
.y7c{bottom:165.450000px;}
.y53{bottom:167.070000px;}
.yd2{bottom:167.610000px;}
.y14f{bottom:172.470000px;}
.y134{bottom:176.430000px;}
.y170{bottom:178.410000px;}
.y117{bottom:180.030000px;}
.y37{bottom:181.290000px;}
.ye4{bottom:183.270000px;}
.y7b{bottom:186.150000px;}
.yd1{bottom:188.310000px;}
.y91{bottom:190.290000px;}
.y106{bottom:195.870000px;}
.y14e{bottom:196.230000px;}
.y133{bottom:197.130000px;}
.y16f{bottom:199.110000px;}
.ybf{bottom:201.630000px;}
.y105{bottom:201.810000px;}
.y36{bottom:201.990000px;}
.y116{bottom:203.250000px;}
.ye3{bottom:203.970000px;}
.y7a{bottom:206.850000px;}
.yae{bottom:207.030000px;}
.yd0{bottom:209.010000px;}
.y52{bottom:213.330000px;}
.y104{bottom:215.310000px;}
.y132{bottom:216.570000px;}
.y14d{bottom:219.990000px;}
.ybe{bottom:222.330000px;}
.ye2{bottom:224.670000px;}
.y90{bottom:227.190000px;}
.y79{bottom:227.550000px;}
.yad{bottom:227.730000px;}
.ycf{bottom:229.710000px;}
.y103{bottom:231.510000px;}
.y35{bottom:231.690000px;}
.y131{bottom:232.230000px;}
.y16e{bottom:237.630000px;}
.y115{bottom:239.430000px;}
.ybd{bottom:243.030000px;}
.y51{bottom:243.210000px;}
.y14c{bottom:243.750000px;}
.y130{bottom:245.205000px;}
.ye1{bottom:245.370000px;}
.y8f{bottom:247.890000px;}
.y78{bottom:248.250000px;}
.yac{bottom:248.430000px;}
.yce{bottom:250.410000px;}
.y34{bottom:252.390000px;}
.y114{bottom:260.130000px;}
.y12f{bottom:261.405000px;}
.y16d{bottom:261.570000px;}
.ybc{bottom:263.730000px;}
.y14b{bottom:267.690000px;}
.y8e{bottom:268.590000px;}
.ye0{bottom:268.770000px;}
.y77{bottom:268.950000px;}
.yab{bottom:269.130000px;}
.ycd{bottom:271.110000px;}
.y33{bottom:273.090000px;}
.y12e{bottom:277.785000px;}
.y113{bottom:280.830000px;}
.ybb{bottom:284.430000px;}
.y16c{bottom:285.330000px;}
.y8d{bottom:289.290000px;}
.y76{bottom:289.650000px;}
.yaa{bottom:289.830000px;}
.y14a{bottom:291.450000px;}
.ycc{bottom:291.810000px;}
.y32{bottom:293.790000px;}
.y12c{bottom:293.985000px;}
.y112{bottom:301.530000px;}
.y50{bottom:302.970000px;}
.ydf{bottom:304.950000px;}
.yba{bottom:305.130000px;}
.yf4{bottom:308.550000px;}
.y16b{bottom:309.090000px;}
.y8c{bottom:309.990000px;}
.y12a{bottom:310.185000px;}
.y75{bottom:310.350000px;}
.ya9{bottom:310.530000px;}
.ycb{bottom:312.510000px;}
.y31{bottom:314.490000px;}
.y149{bottom:315.210000px;}
.y111{bottom:322.230000px;}
.yde{bottom:325.695000px;}
.yb9{bottom:325.875000px;}
.y129{bottom:326.595000px;}
.yf3{bottom:327.675000px;}
.y4f{bottom:328.575000px;}
.y8b{bottom:330.735000px;}
.y74{bottom:331.095000px;}
.ya8{bottom:331.275000px;}
.ydd{bottom:331.635000px;}
.y4e{bottom:332.895000px;}
.yca{bottom:333.255000px;}
.y30{bottom:335.235000px;}
.y148{bottom:339.015000px;}
.ydc{bottom:341.895000px;}
.yf2{bottom:342.615000px;}
.y128{bottom:342.795000px;}
.y110{bottom:342.975000px;}
.yb8{bottom:346.575000px;}
.y8a{bottom:351.435000px;}
.y73{bottom:351.795000px;}
.ya7{bottom:351.975000px;}
.yc9{bottom:353.955000px;}
.y2f{bottom:355.935000px;}
.y16a{bottom:356.835000px;}
.y127{bottom:359.175000px;}
.y4d{bottom:362.775000px;}
.y147{bottom:362.955000px;}
.y10f{bottom:363.675000px;}
.yb7{bottom:367.275000px;}
.y89{bottom:372.135000px;}
.y72{bottom:372.495000px;}
.ya6{bottom:372.675000px;}
.yc8{bottom:374.655000px;}
.y126{bottom:375.375000px;}
.y2e{bottom:376.635000px;}
.y169{bottom:380.595000px;}
.y146{bottom:386.715000px;}
.y10e{bottom:387.075000px;}
.yb6{bottom:387.975000px;}
.y125{bottom:391.755000px;}
.y4c{bottom:392.475000px;}
.y88{bottom:392.835000px;}
.y71{bottom:393.195000px;}
.ya5{bottom:393.375000px;}
.yc7{bottom:395.355000px;}
.y2d{bottom:397.335000px;}
.y168{bottom:404.355000px;}
.y145{bottom:407.235000px;}
.y124{bottom:407.955000px;}
.yb5{bottom:408.675000px;}
.y87{bottom:413.535000px;}
.y70{bottom:413.895000px;}
.yc6{bottom:416.055000px;}
.y2c{bottom:418.035000px;}
.y4b{bottom:422.355000px;}
.y123{bottom:424.155000px;}
.y167{bottom:428.115000px;}
.yb4{bottom:429.015000px;}
.ya4{bottom:432.435000px;}
.y86{bottom:434.235000px;}
.y6f{bottom:434.595000px;}
.yc5{bottom:436.755000px;}
.y144{bottom:437.295000px;}
.y2b{bottom:438.735000px;}
.y120{bottom:440.520000px;}
.y11d{bottom:440.535000px;}
.y10d{bottom:443.415000px;}
.yb3{bottom:447.915000px;}
.y10c{bottom:449.355000px;}
.ya3{bottom:451.515000px;}
.y166{bottom:452.055000px;}
.y4a{bottom:452.235000px;}
.y85{bottom:454.935000px;}
.y6e{bottom:455.295000px;}
.y143{bottom:457.995000px;}
.y2a{bottom:459.435000px;}
.yc4{bottom:459.975000px;}
.y102{bottom:461.955000px;}
.yb2{bottom:463.035000px;}
.ya2{bottom:466.635000px;}
.y11c{bottom:470.595000px;}
.y84{bottom:475.635000px;}
.y165{bottom:475.815000px;}
.y6d{bottom:475.995000px;}
.y10b{bottom:477.435000px;}
.y142{bottom:478.335000px;}
.y29{bottom:480.135000px;}
.yc3{bottom:480.675000px;}
.y49{bottom:482.115000px;}
.y101{bottom:482.655000px;}
.yf1{bottom:493.815000px;}
.y83{bottom:496.335000px;}
.y6c{bottom:496.695000px;}
.ydb{bottom:497.595000px;}
.y164{bottom:499.575000px;}
.yc2{bottom:499.755000px;}
.y28{bottom:500.835000px;}
.y11b{bottom:501.195000px;}
.y100{bottom:503.355000px;}
.yda{bottom:503.535000px;}
.y141{bottom:508.395000px;}
.y48{bottom:511.995000px;}
.yd9{bottom:513.795000px;}
.yf0{bottom:513.975000px;}
.yc1{bottom:514.695000px;}
.y81{bottom:517.035000px;}
.y6b{bottom:517.395000px;}
.y27{bottom:521.535000px;}
.y163{bottom:523.335000px;}
.y82{bottom:523.875000px;}
.yff{bottom:524.055000px;}
.y140{bottom:528.735000px;}
.yef{bottom:528.915000px;}
.y80{bottom:537.735000px;}
.y6a{bottom:538.095000px;}
.y46{bottom:541.695000px;}
.y26{bottom:542.235000px;}
.yfe{bottom:544.755000px;}
.y162{bottom:547.275000px;}
.y47{bottom:548.535000px;}
.y7f{bottom:558.105000px;}
.y69{bottom:558.825000px;}
.y25{bottom:562.965000px;}
.yfd{bottom:565.485000px;}
.y161{bottom:571.065000px;}
.y44{bottom:571.605000px;}
.y45{bottom:578.445000px;}
.y68{bottom:579.525000px;}
.y24{bottom:583.665000px;}
.yfc{bottom:586.185000px;}
.y160{bottom:594.825000px;}
.y67{bottom:600.225000px;}
.y43{bottom:601.485000px;}
.y23{bottom:604.365000px;}
.yfb{bottom:606.885000px;}
.y15f{bottom:618.585000px;}
.y66{bottom:620.925000px;}
.y22{bottom:625.065000px;}
.yfa{bottom:627.585000px;}
.y42{bottom:631.365000px;}
.ya1{bottom:637.125000px;}
.y65{bottom:641.625000px;}
.y15e{bottom:642.345000px;}
.y21{bottom:645.765000px;}
.yf9{bottom:648.285000px;}
.ya0{bottom:656.025000px;}
.y41{bottom:661.065000px;}
.y64{bottom:662.325000px;}
.y15d{bottom:666.285000px;}
.yf8{bottom:671.685000px;}
.y13b{bottom:672.765000px;}
.y9f{bottom:675.105000px;}
.y20{bottom:679.785000px;}
.y63{bottom:683.025000px;}
.yd8{bottom:684.825000px;}
.y10a{bottom:687.165000px;}
.y9e{bottom:690.045000px;}
.y40{bottom:690.945000px;}
.y109{bottom:693.105000px;}
.y13a{bottom:693.465000px;}
.y62{bottom:703.725000px;}
.yd7{bottom:705.525000px;}
.y108{bottom:706.605000px;}
.yf7{bottom:707.865000px;}
.yd6{bottom:711.465000px;}
.y139{bottom:713.625000px;}
.y15c{bottom:713.805000px;}
.y1f{bottom:714.165000px;}
.y3f{bottom:720.825000px;}
.yd5{bottom:721.725000px;}
.y107{bottom:722.985000px;}
.y61{bottom:724.425000px;}
.yee{bottom:726.945000px;}
.yf6{bottom:728.025000px;}
.y15b{bottom:737.565000px;}
.yf5{bottom:743.145000px;}
.y60{bottom:745.125000px;}
.yed{bottom:747.645000px;}
.y1e{bottom:748.185000px;}
.y138{bottom:749.445000px;}
.y3e{bottom:750.705000px;}
.y15a{bottom:761.505000px;}
.y5f{bottom:765.825000px;}
.y1d{bottom:767.265000px;}
.yec{bottom:768.345000px;}
.y3d{bottom:780.585000px;}
.y159{bottom:785.265000px;}
.y1c{bottom:786.165000px;}
.y5e{bottom:786.570000px;}
.yeb{bottom:789.090000px;}
.y1b{bottom:804.750000px;}
.y5d{bottom:807.270000px;}
.y158{bottom:809.070000px;}
.yea{bottom:809.790000px;}
.y1a{bottom:824.550000px;}
.y5c{bottom:827.970000px;}
.ye9{bottom:830.490000px;}
.y3c{bottom:830.850000px;}
.y157{bottom:832.830000px;}
.y9d{bottom:843.270000px;}
.y19{bottom:845.430000px;}
.y5b{bottom:848.670000px;}
.ye8{bottom:851.190000px;}
.y156{bottom:856.770000px;}
.y3b{bottom:858.030000px;}
.y9b{bottom:860.370000px;}
.y5a{bottom:869.370000px;}
.y18{bottom:869.730000px;}
.ye7{bottom:871.530000px;}
.y99{bottom:878.370000px;}
.y155{bottom:880.530000px;}
.y59{bottom:890.070000px;}
.y17{bottom:893.670000px;}
.ye6{bottom:895.290000px;}
.y154{bottom:904.290000px;}
.y98{bottom:908.610000px;}
.y3a{bottom:908.970000px;}
.y58{bottom:910.770000px;}
.y16{bottom:916.530000px;}
.y153{bottom:928.050000px;}
.y57{bottom:931.470000px;}
.y15{bottom:933.810000px;}
.y39{bottom:943.710000px;}
.y97{bottom:944.610000px;}
.y13{bottom:951.090000px;}
.y13f{bottom:951.630000px;}
.y152{bottom:951.990000px;}
.y56{bottom:952.170000px;}
.yb{bottom:971.610000px;}
.y9{bottom:990.510000px;}
.y4{bottom:1014.975000px;}
.y1{bottom:1014.990000px;}
.h31{height:15.465000px;}
.h32{height:15.480000px;}
.h30{height:15.645000px;}
.h33{height:15.681000px;}
.h29{height:17.085000px;}
.h11{height:17.265000px;}
.h26{height:17.271000px;}
.h8{height:24.465000px;}
.h2d{height:29.325000px;}
.h2e{height:29.335500px;}
.h2f{height:29.340000px;}
.h24{height:34.551000px;}
.h20{height:35.473359px;}
.h2c{height:40.985156px;}
.h7{height:42.115781px;}
.h25{height:42.164648px;}
.hc{height:42.846680px;}
.h2{height:47.144531px;}
.h23{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:50.256000px;}
.hd{height:50.265000px;}
.h12{height:52.173281px;}
.hf{height:52.558594px;}
.ha{height:52.998047px;}
.he{height:58.283437px;}
.h27{height:58.651172px;}
.h28{height:59.038594px;}
.h13{height:60.226875px;}
.h14{height:62.211094px;}
.h1b{height:63.264375px;}
.h15{height:63.351562px;}
.h9{height:65.010937px;}
.h10{height:65.884219px;}
.h18{height:66.757500px;}
.h1d{height:68.765625px;}
.h1c{height:70.574062px;}
.h17{height:70.664062px;}
.h1{height:71.130000px;}
.h3{height:71.136000px;}
.h5{height:71.145000px;}
.h4{height:72.562500px;}
.h34{height:74.004654px;}
.h19{height:74.704922px;}
.h22{height:74.953125px;}
.h1e{height:76.710938px;}
.h1f{height:78.150938px;}
.h1a{height:80.455781px;}
.h16{height:84.898125px;}
.h21{height:93.990937px;}
.h2b{height:145.125000px;}
.h2a{height:148.702500px;}
.h0{height:1134.000000px;}
.w15{width:40.491000px;}
.w23{width:50.385000px;}
.w1c{width:51.300000px;}
.w21{width:51.465000px;}
.w24{width:53.265000px;}
.w19{width:53.271000px;}
.w22{width:53.275500px;}
.w1a{width:53.280000px;}
.w25{width:53.301000px;}
.w1b{width:53.302500px;}
.w1f{width:53.316000px;}
.w20{width:53.325000px;}
.w1d{width:53.455500px;}
.w1e{width:53.460000px;}
.w10{width:73.821000px;}
.w9{width:78.291000px;}
.wd{width:94.845000px;}
.we{width:94.881000px;}
.wf{width:116.316000px;}
.w11{width:116.640000px;}
.w13{width:121.860000px;}
.w12{width:136.102500px;}
.wb{width:136.116000px;}
.w2{width:141.336000px;}
.w3{width:141.345000px;}
.w4{width:148.702500px;}
.w18{width:158.595000px;}
.w16{width:159.315000px;}
.w17{width:159.690000px;}
.wc{width:161.655000px;}
.w8{width:182.535000px;}
.wa{width:186.855000px;}
.w1{width:191.715000px;}
.w6{width:224.520000px;}
.w7{width:224.535000px;}
.w14{width:227.400000px;}
.w5{width:481.770000px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x2{left:1.245000px;}
.x78{left:7.725000px;}
.x7{left:8.805000px;}
.x74{left:10.971000px;}
.x52{left:12.585000px;}
.x79{left:14.205000px;}
.x56{left:16.740000px;}
.x9{left:18.705000px;}
.x4b{left:20.685000px;}
.x8{left:23.205000px;}
.x4e{left:24.510000px;}
.x11{left:25.905000px;}
.x53{left:27.345000px;}
.x57{left:29.340000px;}
.x4d{left:30.810000px;}
.x77{left:44.985000px;}
.x14{left:48.225000px;}
.x17{left:55.965000px;}
.x18{left:58.485000px;}
.xd{left:64.110000px;}
.x5{left:74.700000px;}
.x16{left:87.300000px;}
.x4{left:100.980000px;}
.xf{left:104.070000px;}
.xa{left:107.445000px;}
.x59{left:125.100000px;}
.x73{left:138.645000px;}
.x58{left:140.790000px;}
.x28{left:143.136000px;}
.xb{left:148.896000px;}
.x6{left:150.705000px;}
.x1a{left:151.950000px;}
.x7f{left:153.390000px;}
.x81{left:155.370000px;}
.x3c{left:156.456000px;}
.x4a{left:159.885000px;}
.x54{left:163.650000px;}
.x6e{left:164.730000px;}
.xe{left:168.870000px;}
.x61{left:171.210000px;}
.x5f{left:175.890000px;}
.x5d{left:178.590000px;}
.x6f{left:179.850000px;}
.x82{left:180.930000px;}
.x7e{left:193.170000px;}
.x37{left:196.590000px;}
.x72{left:198.390000px;}
.x20{left:209.370000px;}
.x1e{left:212.970000px;}
.x1f{left:218.550000px;}
.x31{left:222.690000px;}
.x36{left:225.030000px;}
.x10{left:227.205000px;}
.x7a{left:233.865000px;}
.x1d{left:239.790000px;}
.x5a{left:242.175000px;}
.x35{left:249.510000px;}
.x5b{left:252.390000px;}
.x4c{left:255.645000px;}
.x49{left:256.710000px;}
.x29{left:269.496000px;}
.x55{left:274.755000px;}
.x2c{left:276.735000px;}
.x2e{left:282.636000px;}
.x34{left:285.555000px;}
.x7b{left:287.895000px;}
.x3{left:299.415000px;}
.x2a{left:300.996000px;}
.x1b{left:303.375000px;}
.x33{left:304.455000px;}
.x15{left:311.295000px;}
.x47{left:316.875000px;}
.x22{left:331.995000px;}
.x75{left:339.915000px;}
.x4f{left:351.255000px;}
.x5e{left:357.375000px;}
.x80{left:383.475000px;}
.x1c{left:391.575000px;}
.x7c{left:394.095000px;}
.x24{left:405.975000px;}
.xc{left:409.755000px;}
.x48{left:418.035000px;}
.x1{left:440.760000px;}
.x3a{left:445.245000px;}
.x46{left:446.325000px;}
.x13{left:447.420000px;}
.x6a{left:449.565000px;}
.x45{left:452.265000px;}
.x64{left:453.705000px;}
.x67{left:456.225000px;}
.x70{left:466.305000px;}
.x50{left:468.300000px;}
.x63{left:470.265000px;}
.x66{left:472.785000px;}
.x69{left:474.405000px;}
.x44{left:480.885000px;}
.x43{left:486.825000px;}
.x39{left:491.325000px;}
.x2b{left:498.996000px;}
.x76{left:500.340000px;}
.x23{left:502.845000px;}
.x6c{left:522.465000px;}
.x3f{left:534.885000px;}
.x30{left:541.365000px;}
.x68{left:543.345000px;}
.x65{left:551.265000px;}
.x6b{left:553.965000px;}
.x42{left:556.845000px;}
.x62{left:558.465000px;}
.x3b{left:562.605000px;}
.x51{left:563.880000px;}
.x38{left:566.745000px;}
.x41{left:568.905000px;}
.x3d{left:571.785000px;}
.x40{left:576.465000px;}
.x71{left:578.265000px;}
.x6d{left:583.125000px;}
.x27{left:584.745000px;}
.x2f{left:585.825000px;}
.x32{left:600.585000px;}
.x3e{left:604.770000px;}
.x21{left:606.210000px;}
.x7d{left:608.550000px;}
.x2d{left:615.390000px;}
.x12{left:624.570000px;}
.x19{left:626.190000px;}
.x26{left:628.710000px;}
.x25{left:630.510000px;}
.x5c{left:635.010000px;}
.x60{left:641.670000px;}
@media print{
.v12{vertical-align:-120.960000pt;}
.vd{vertical-align:-73.600000pt;}
.vf{vertical-align:-71.680000pt;}
.ve{vertical-align:-69.120000pt;}
.v10{vertical-align:-67.840000pt;}
.v1{vertical-align:-59.520000pt;}
.vc{vertical-align:-57.600000pt;}
.v11{vertical-align:-53.120000pt;}
.v7{vertical-align:-24.960000pt;}
.v3{vertical-align:-21.120000pt;}
.vb{vertical-align:-18.560000pt;}
.v5{vertical-align:-15.360000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.280000pt;}
.v6{vertical-align:15.360000pt;}
.va{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls13{letter-spacing:-9.386667pt;}
.ls10{letter-spacing:-4.608000pt;}
.ls12{letter-spacing:-2.368000pt;}
.lsf{letter-spacing:-1.728000pt;}
.ls1{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.074133pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000003pt;}
.ls22{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.051200pt;}
.ls11{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.227733pt;}
.ls14{letter-spacing:0.239467pt;}
.ls3{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.314133pt;}
.ls18{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.472000pt;}
.ls24{letter-spacing:3.328000pt;}
.lse{letter-spacing:5.312000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls26{letter-spacing:46.208000pt;}
.ls25{letter-spacing:49.408000pt;}
.ls19{letter-spacing:68.480000pt;}
.ls1a{letter-spacing:103.040000pt;}
.ls1c{letter-spacing:136.960000pt;}
.ls1e{letter-spacing:282.986667pt;}
.ls1f{letter-spacing:284.906667pt;}
.ls21{letter-spacing:634.986667pt;}
.ls20{letter-spacing:645.920000pt;}
.ls23{letter-spacing:660.640000pt;}
.ls1b{letter-spacing:714.400000pt;}
.ls27{letter-spacing:1567.146667pt;}
.ws16{word-spacing:-59.107733pt;}
.ws1{word-spacing:-58.880000pt;}
.ws9{word-spacing:-24.051093pt;}
.wsd{word-spacing:-20.544000pt;}
.ws11{word-spacing:-20.352000pt;}
.wsf{word-spacing:-20.288003pt;}
.wsb{word-spacing:-20.288000pt;}
.wsc{word-spacing:-20.096000pt;}
.wse{word-spacing:-20.032000pt;}
.wsa{word-spacing:-18.664960pt;}
.ws4{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws15{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.680000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws17{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-12.320000pt;}
.ws19{word-spacing:-12.000000pt;}
.ws14{word-spacing:-10.959467pt;}
.ws12{word-spacing:-10.901333pt;}
.ws1a{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws18{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._57{margin-left:-1457.059413pt;}
._a0{margin-left:-1352.292693pt;}
._5f{margin-left:-1331.893333pt;}
._a8{margin-left:-1237.024427pt;}
._88{margin-left:-1001.909547pt;}
._c{margin-left:-980.698027pt;}
._30{margin-left:-966.780160pt;}
._85{margin-left:-900.170667pt;}
._a1{margin-left:-895.474773pt;}
._9b{margin-left:-881.589120pt;}
._86{margin-left:-875.290880pt;}
._56{margin-left:-858.186667pt;}
._9d{margin-left:-836.618240pt;}
._2c{margin-left:-817.999147pt;}
._bc{margin-left:-798.976427pt;}
._c2{margin-left:-779.394560pt;}
._bf{margin-left:-776.194560pt;}
._be{margin-left:-768.906667pt;}
._a6{margin-left:-734.314667pt;}
._93{margin-left:-716.718933pt;}
._c8{margin-left:-715.752533pt;}
._8b{margin-left:-686.805120pt;}
._a9{margin-left:-653.992960pt;}
._3d{margin-left:-648.960000pt;}
._4d{margin-left:-619.488000pt;}
._4e{margin-left:-613.528747pt;}
._65{margin-left:-593.322667pt;}
._8c{margin-left:-575.124907pt;}
._bb{margin-left:-573.354667pt;}
._74{margin-left:-560.394453pt;}
._75{margin-left:-558.592427pt;}
._81{margin-left:-550.937387pt;}
._82{margin-left:-530.433707pt;}
._92{margin-left:-526.048000pt;}
._43{margin-left:-514.094080pt;}
._39{margin-left:-513.080320pt;}
._66{margin-left:-508.094293pt;}
._41{margin-left:-507.068160pt;}
._9f{margin-left:-496.448000pt;}
._16{margin-left:-491.144747pt;}
._54{margin-left:-485.318187pt;}
._b9{margin-left:-480.725333pt;}
._38{margin-left:-475.877547pt;}
._4b{margin-left:-470.426027pt;}
._19{margin-left:-463.575467pt;}
._1a{margin-left:-454.757547pt;}
._aa{margin-left:-426.624000pt;}
._98{margin-left:-423.296000pt;}
._a{margin-left:-417.446400pt;}
._8f{margin-left:-409.973333pt;}
._cd{margin-left:-408.601600pt;}
._14{margin-left:-399.920000pt;}
._6b{margin-left:-393.237333pt;}
._a5{margin-left:-391.808000pt;}
._9{margin-left:-388.443520pt;}
._4a{margin-left:-381.263147pt;}
._c1{margin-left:-379.218133pt;}
._48{margin-left:-376.928000pt;}
._3a{margin-left:-375.859520pt;}
._89{margin-left:-365.348053pt;}
._7e{margin-left:-362.858667pt;}
._d{margin-left:-357.776000pt;}
._76{margin-left:-353.194667pt;}
._77{margin-left:-350.526080pt;}
._95{margin-left:-349.158827pt;}
._6f{margin-left:-347.659307pt;}
._ba{margin-left:-346.400000pt;}
._6e{margin-left:-341.674667pt;}
._3b{margin-left:-337.456640pt;}
._97{margin-left:-335.082453pt;}
._94{margin-left:-333.493333pt;}
._12{margin-left:-328.352000pt;}
._ce{margin-left:-324.999680pt;}
._33{margin-left:-321.814400pt;}
._71{margin-left:-317.440000pt;}
._8e{margin-left:-314.276480pt;}
._70{margin-left:-310.848000pt;}
._64{margin-left:-305.727147pt;}
._84{margin-left:-296.896853pt;}
._55{margin-left:-291.649280pt;}
._69{margin-left:-289.791573pt;}
._7d{margin-left:-284.608000pt;}
._68{margin-left:-278.368000pt;}
._96{margin-left:-276.544000pt;}
._73{margin-left:-275.626667pt;}
._b8{margin-left:-270.922667pt;}
._9a{margin-left:-262.506667pt;}
._7b{margin-left:-261.440000pt;}
._9c{margin-left:-258.199040pt;}
._ab{margin-left:-256.960000pt;}
._83{margin-left:-252.074667pt;}
._3{margin-left:-248.512000pt;}
._9e{margin-left:-243.968427pt;}
._34{margin-left:-238.069120pt;}
._13{margin-left:-234.080000pt;}
._90{margin-left:-231.818667pt;}
._2{margin-left:-229.760000pt;}
._6c{margin-left:-224.320000pt;}
._72{margin-left:-221.440013pt;}
._6a{margin-left:-219.306667pt;}
._63{margin-left:-218.048000pt;}
._47{margin-left:-210.983040pt;}
._99{margin-left:-209.536000pt;}
._60{margin-left:-208.255573pt;}
._58{margin-left:-207.104000pt;}
._36{margin-left:-192.696960pt;}
._61{margin-left:-191.488000pt;}
._31{margin-left:-190.307840pt;}
._7a{margin-left:-187.626667pt;}
._52{margin-left:-183.321387pt;}
._6d{margin-left:-176.960000pt;}
._a2{margin-left:-175.392000pt;}
._4{margin-left:-174.464000pt;}
._7{margin-left:-171.072000pt;}
._32{margin-left:-170.052480pt;}
._5{margin-left:-168.320000pt;}
._5b{margin-left:-165.418667pt;}
._8d{margin-left:-162.986667pt;}
._bd{margin-left:-158.024107pt;}
._8a{margin-left:-152.128000pt;}
._4c{margin-left:-145.280213pt;}
._5a{margin-left:-142.689280pt;}
._79{margin-left:-140.800000pt;}
._50{margin-left:-138.933547pt;}
._11{margin-left:-133.024000pt;}
._4f{margin-left:-131.456000pt;}
._7c{margin-left:-125.120000pt;}
._59{margin-left:-122.688000pt;}
._18{margin-left:-121.694720pt;}
._7f{margin-left:-120.768000pt;}
._5d{margin-left:-113.566720pt;}
._0{margin-left:-111.808000pt;}
._51{margin-left:-109.226667pt;}
._78{margin-left:-106.880000pt;}
._cb{margin-left:-98.734080pt;}
._c0{margin-left:-94.796800pt;}
._c6{margin-left:-93.418453pt;}
._a3{margin-left:-91.328000pt;}
._35{margin-left:-90.352427pt;}
._10{margin-left:-85.088000pt;}
._c3{margin-left:-83.374080pt;}
._f{margin-left:-82.256000pt;}
._1{margin-left:-80.000000pt;}
._80{margin-left:-76.160427pt;}
._91{margin-left:-71.872000pt;}
._5c{margin-left:-69.120000pt;}
._17{margin-left:-67.840000pt;}
._15{margin-left:-63.110827pt;}
._ac{margin-left:-53.610667pt;}
._a4{margin-left:-51.904000pt;}
._3e{margin-left:-49.384960pt;}
._ad{margin-left:-47.296000pt;}
._62{margin-left:-44.864000pt;}
._c4{margin-left:-43.456000pt;}
._3f{margin-left:-41.850880pt;}
._5e{margin-left:-37.472000pt;}
._40{margin-left:-35.358720pt;}
._67{margin-left:-33.728000pt;}
._44{margin-left:-30.330880pt;}
._46{margin-left:-28.446720pt;}
._45{margin-left:-26.268160pt;}
._a7{margin-left:-24.768000pt;}
._e{margin-left:-20.176000pt;}
._2d{margin-left:-17.521920pt;}
._53{margin-left:-15.360000pt;}
._42{margin-left:-14.190080pt;}
._49{margin-left:-12.863147pt;}
._2e{margin-left:-11.903787pt;}
._2f{margin-left:-10.890453pt;}
._3c{margin-left:-9.126400pt;}
._37{margin-left:-5.915520pt;}
._1e{margin-left:-4.544000pt;}
._1f{margin-left:-3.585280pt;}
._1d{margin-left:-2.688000pt;}
._6{margin-left:-0.960000pt;}
._b{width:0.896427pt;}
._1b{width:1.984000pt;}
._22{width:3.327573pt;}
._20{width:4.288000pt;}
._21{width:5.706667pt;}
._24{width:7.296000pt;}
._25{width:8.639573pt;}
._23{width:9.984000pt;}
._28{width:11.328000pt;}
._1c{width:12.650667pt;}
._26{width:13.546667pt;}
._27{width:15.104000pt;}
._87{width:16.330453pt;}
._ae{width:17.472000pt;}
._b1{width:18.398933pt;}
._b7{width:19.617067pt;}
._b2{width:21.056000pt;}
._b3{width:21.947093pt;}
._b5{width:22.848000pt;}
._b4{width:23.808000pt;}
._29{width:25.088000pt;}
._2a{width:26.240000pt;}
._af{width:27.520000pt;}
._b0{width:28.672000pt;}
._b6{width:30.592000pt;}
._c5{width:31.978667pt;}
._c7{width:47.978667pt;}
._d1{width:51.648000pt;}
._d2{width:55.616000pt;}
._d3{width:56.895573pt;}
._d0{width:95.978667pt;}
._8{width:371.840000pt;}
._c9{width:606.922667pt;}
._cc{width:694.606080pt;}
._ca{width:718.926080pt;}
._cf{width:733.827840pt;}
._2b{width:752.138667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:2.866667pt;}
.y9a{bottom:2.880000pt;}
.y121{bottom:2.893333pt;}
.y12b{bottom:3.026667pt;}
.y94{bottom:3.032000pt;}
.y14{bottom:3.040000pt;}
.y9c{bottom:3.200000pt;}
.y96{bottom:3.352000pt;}
.yf{bottom:3.680000pt;}
.ya{bottom:6.080000pt;}
.y2{bottom:8.666667pt;}
.y11e{bottom:8.960000pt;}
.y122{bottom:9.600000pt;}
.y8{bottom:15.720000pt;}
.y11f{bottom:16.480000pt;}
.y93{bottom:18.386667pt;}
.ye{bottom:19.680000pt;}
.y5{bottom:23.880000pt;}
.y7{bottom:28.026667pt;}
.y12{bottom:29.440000pt;}
.y11{bottom:30.880000pt;}
.yd{bottom:33.440000pt;}
.y10{bottom:33.760000pt;}
.y6{bottom:40.346667pt;}
.y3{bottom:42.266667pt;}
.yc{bottom:43.200000pt;}
.y137{bottom:101.632000pt;}
.y11a{bottom:104.832000pt;}
.y13e{bottom:107.872000pt;}
.yb1{bottom:110.112000pt;}
.y7e{bottom:110.272000pt;}
.y95{bottom:110.600000pt;}
.y151{bottom:110.912000pt;}
.y55{bottom:112.032000pt;}
.yd4{bottom:112.192000pt;}
.y136{bottom:120.032000pt;}
.y119{bottom:123.232000pt;}
.y13d{bottom:125.792000pt;}
.yc0{bottom:126.112000pt;}
.y92{bottom:126.600000pt;}
.yb0{bottom:128.512000pt;}
.y7d{bottom:128.672000pt;}
.y54{bottom:130.432000pt;}
.yd3{bottom:130.592000pt;}
.y150{bottom:132.032000pt;}
.y135{bottom:138.426667pt;}
.y13c{bottom:139.226667pt;}
.y118{bottom:141.626667pt;}
.y38{bottom:142.586667pt;}
.ye5{bottom:144.506667pt;}
.yaf{bottom:146.586667pt;}
.y7c{bottom:147.066667pt;}
.y53{bottom:148.506667pt;}
.yd2{bottom:148.986667pt;}
.y14f{bottom:153.306667pt;}
.y134{bottom:156.826667pt;}
.y170{bottom:158.586667pt;}
.y117{bottom:160.026667pt;}
.y37{bottom:161.146667pt;}
.ye4{bottom:162.906667pt;}
.y7b{bottom:165.466667pt;}
.yd1{bottom:167.386667pt;}
.y91{bottom:169.146667pt;}
.y106{bottom:174.106667pt;}
.y14e{bottom:174.426667pt;}
.y133{bottom:175.226667pt;}
.y16f{bottom:176.986667pt;}
.ybf{bottom:179.226667pt;}
.y105{bottom:179.386667pt;}
.y36{bottom:179.546667pt;}
.y116{bottom:180.666667pt;}
.ye3{bottom:181.306667pt;}
.y7a{bottom:183.866667pt;}
.yae{bottom:184.026667pt;}
.yd0{bottom:185.786667pt;}
.y52{bottom:189.626667pt;}
.y104{bottom:191.386667pt;}
.y132{bottom:192.506667pt;}
.y14d{bottom:195.546667pt;}
.ybe{bottom:197.626667pt;}
.ye2{bottom:199.706667pt;}
.y90{bottom:201.946667pt;}
.y79{bottom:202.266667pt;}
.yad{bottom:202.426667pt;}
.ycf{bottom:204.186667pt;}
.y103{bottom:205.786667pt;}
.y35{bottom:205.946667pt;}
.y131{bottom:206.426667pt;}
.y16e{bottom:211.226667pt;}
.y115{bottom:212.826667pt;}
.ybd{bottom:216.026667pt;}
.y51{bottom:216.186667pt;}
.y14c{bottom:216.666667pt;}
.y130{bottom:217.960000pt;}
.ye1{bottom:218.106667pt;}
.y8f{bottom:220.346667pt;}
.y78{bottom:220.666667pt;}
.yac{bottom:220.826667pt;}
.yce{bottom:222.586667pt;}
.y34{bottom:224.346667pt;}
.y114{bottom:231.226667pt;}
.y12f{bottom:232.360000pt;}
.y16d{bottom:232.506667pt;}
.ybc{bottom:234.426667pt;}
.y14b{bottom:237.946667pt;}
.y8e{bottom:238.746667pt;}
.ye0{bottom:238.906667pt;}
.y77{bottom:239.066667pt;}
.yab{bottom:239.226667pt;}
.ycd{bottom:240.986667pt;}
.y33{bottom:242.746667pt;}
.y12e{bottom:246.920000pt;}
.y113{bottom:249.626667pt;}
.ybb{bottom:252.826667pt;}
.y16c{bottom:253.626667pt;}
.y8d{bottom:257.146667pt;}
.y76{bottom:257.466667pt;}
.yaa{bottom:257.626667pt;}
.y14a{bottom:259.066667pt;}
.ycc{bottom:259.386667pt;}
.y32{bottom:261.146667pt;}
.y12c{bottom:261.320000pt;}
.y112{bottom:268.026667pt;}
.y50{bottom:269.306667pt;}
.ydf{bottom:271.066667pt;}
.yba{bottom:271.226667pt;}
.yf4{bottom:274.266667pt;}
.y16b{bottom:274.746667pt;}
.y8c{bottom:275.546667pt;}
.y12a{bottom:275.720000pt;}
.y75{bottom:275.866667pt;}
.ya9{bottom:276.026667pt;}
.ycb{bottom:277.786667pt;}
.y31{bottom:279.546667pt;}
.y149{bottom:280.186667pt;}
.y111{bottom:286.426667pt;}
.yde{bottom:289.506667pt;}
.yb9{bottom:289.666667pt;}
.y129{bottom:290.306667pt;}
.yf3{bottom:291.266667pt;}
.y4f{bottom:292.066667pt;}
.y8b{bottom:293.986667pt;}
.y74{bottom:294.306667pt;}
.ya8{bottom:294.466667pt;}
.ydd{bottom:294.786667pt;}
.y4e{bottom:295.906667pt;}
.yca{bottom:296.226667pt;}
.y30{bottom:297.986667pt;}
.y148{bottom:301.346667pt;}
.ydc{bottom:303.906667pt;}
.yf2{bottom:304.546667pt;}
.y128{bottom:304.706667pt;}
.y110{bottom:304.866667pt;}
.yb8{bottom:308.066667pt;}
.y8a{bottom:312.386667pt;}
.y73{bottom:312.706667pt;}
.ya7{bottom:312.866667pt;}
.yc9{bottom:314.626667pt;}
.y2f{bottom:316.386667pt;}
.y16a{bottom:317.186667pt;}
.y127{bottom:319.266667pt;}
.y4d{bottom:322.466667pt;}
.y147{bottom:322.626667pt;}
.y10f{bottom:323.266667pt;}
.yb7{bottom:326.466667pt;}
.y89{bottom:330.786667pt;}
.y72{bottom:331.106667pt;}
.ya6{bottom:331.266667pt;}
.yc8{bottom:333.026667pt;}
.y126{bottom:333.666667pt;}
.y2e{bottom:334.786667pt;}
.y169{bottom:338.306667pt;}
.y146{bottom:343.746667pt;}
.y10e{bottom:344.066667pt;}
.yb6{bottom:344.866667pt;}
.y125{bottom:348.226667pt;}
.y4c{bottom:348.866667pt;}
.y88{bottom:349.186667pt;}
.y71{bottom:349.506667pt;}
.ya5{bottom:349.666667pt;}
.yc7{bottom:351.426667pt;}
.y2d{bottom:353.186667pt;}
.y168{bottom:359.426667pt;}
.y145{bottom:361.986667pt;}
.y124{bottom:362.626667pt;}
.yb5{bottom:363.266667pt;}
.y87{bottom:367.586667pt;}
.y70{bottom:367.906667pt;}
.yc6{bottom:369.826667pt;}
.y2c{bottom:371.586667pt;}
.y4b{bottom:375.426667pt;}
.y123{bottom:377.026667pt;}
.y167{bottom:380.546667pt;}
.yb4{bottom:381.346667pt;}
.ya4{bottom:384.386667pt;}
.y86{bottom:385.986667pt;}
.y6f{bottom:386.306667pt;}
.yc5{bottom:388.226667pt;}
.y144{bottom:388.706667pt;}
.y2b{bottom:389.986667pt;}
.y120{bottom:391.573333pt;}
.y11d{bottom:391.586667pt;}
.y10d{bottom:394.146667pt;}
.yb3{bottom:398.146667pt;}
.y10c{bottom:399.426667pt;}
.ya3{bottom:401.346667pt;}
.y166{bottom:401.826667pt;}
.y4a{bottom:401.986667pt;}
.y85{bottom:404.386667pt;}
.y6e{bottom:404.706667pt;}
.y143{bottom:407.106667pt;}
.y2a{bottom:408.386667pt;}
.yc4{bottom:408.866667pt;}
.y102{bottom:410.626667pt;}
.yb2{bottom:411.586667pt;}
.ya2{bottom:414.786667pt;}
.y11c{bottom:418.306667pt;}
.y84{bottom:422.786667pt;}
.y165{bottom:422.946667pt;}
.y6d{bottom:423.106667pt;}
.y10b{bottom:424.386667pt;}
.y142{bottom:425.186667pt;}
.y29{bottom:426.786667pt;}
.yc3{bottom:427.266667pt;}
.y49{bottom:428.546667pt;}
.y101{bottom:429.026667pt;}
.yf1{bottom:438.946667pt;}
.y83{bottom:441.186667pt;}
.y6c{bottom:441.506667pt;}
.ydb{bottom:442.306667pt;}
.y164{bottom:444.066667pt;}
.yc2{bottom:444.226667pt;}
.y28{bottom:445.186667pt;}
.y11b{bottom:445.506667pt;}
.y100{bottom:447.426667pt;}
.yda{bottom:447.586667pt;}
.y141{bottom:451.906667pt;}
.y48{bottom:455.106667pt;}
.yd9{bottom:456.706667pt;}
.yf0{bottom:456.866667pt;}
.yc1{bottom:457.506667pt;}
.y81{bottom:459.586667pt;}
.y6b{bottom:459.906667pt;}
.y27{bottom:463.586667pt;}
.y163{bottom:465.186667pt;}
.y82{bottom:465.666667pt;}
.yff{bottom:465.826667pt;}
.y140{bottom:469.986667pt;}
.yef{bottom:470.146667pt;}
.y80{bottom:477.986667pt;}
.y6a{bottom:478.306667pt;}
.y46{bottom:481.506667pt;}
.y26{bottom:481.986667pt;}
.yfe{bottom:484.226667pt;}
.y162{bottom:486.466667pt;}
.y47{bottom:487.586667pt;}
.y7f{bottom:496.093333pt;}
.y69{bottom:496.733333pt;}
.y25{bottom:500.413333pt;}
.yfd{bottom:502.653333pt;}
.y161{bottom:507.613333pt;}
.y44{bottom:508.093333pt;}
.y45{bottom:514.173333pt;}
.y68{bottom:515.133333pt;}
.y24{bottom:518.813333pt;}
.yfc{bottom:521.053333pt;}
.y160{bottom:528.733333pt;}
.y67{bottom:533.533333pt;}
.y43{bottom:534.653333pt;}
.y23{bottom:537.213333pt;}
.yfb{bottom:539.453333pt;}
.y15f{bottom:549.853333pt;}
.y66{bottom:551.933333pt;}
.y22{bottom:555.613333pt;}
.yfa{bottom:557.853333pt;}
.y42{bottom:561.213333pt;}
.ya1{bottom:566.333333pt;}
.y65{bottom:570.333333pt;}
.y15e{bottom:570.973333pt;}
.y21{bottom:574.013333pt;}
.yf9{bottom:576.253333pt;}
.ya0{bottom:583.133333pt;}
.y41{bottom:587.613333pt;}
.y64{bottom:588.733333pt;}
.y15d{bottom:592.253333pt;}
.yf8{bottom:597.053333pt;}
.y13b{bottom:598.013333pt;}
.y9f{bottom:600.093333pt;}
.y20{bottom:604.253333pt;}
.y63{bottom:607.133333pt;}
.yd8{bottom:608.733333pt;}
.y10a{bottom:610.813333pt;}
.y9e{bottom:613.373333pt;}
.y40{bottom:614.173333pt;}
.y109{bottom:616.093333pt;}
.y13a{bottom:616.413333pt;}
.y62{bottom:625.533333pt;}
.yd7{bottom:627.133333pt;}
.y108{bottom:628.093333pt;}
.yf7{bottom:629.213333pt;}
.yd6{bottom:632.413333pt;}
.y139{bottom:634.333333pt;}
.y15c{bottom:634.493333pt;}
.y1f{bottom:634.813333pt;}
.y3f{bottom:640.733333pt;}
.yd5{bottom:641.533333pt;}
.y107{bottom:642.653333pt;}
.y61{bottom:643.933333pt;}
.yee{bottom:646.173333pt;}
.yf6{bottom:647.133333pt;}
.y15b{bottom:655.613333pt;}
.yf5{bottom:660.573333pt;}
.y60{bottom:662.333333pt;}
.yed{bottom:664.573333pt;}
.y1e{bottom:665.053333pt;}
.y138{bottom:666.173333pt;}
.y3e{bottom:667.293333pt;}
.y15a{bottom:676.893333pt;}
.y5f{bottom:680.733333pt;}
.y1d{bottom:682.013333pt;}
.yec{bottom:682.973333pt;}
.y3d{bottom:693.853333pt;}
.y159{bottom:698.013333pt;}
.y1c{bottom:698.813333pt;}
.y5e{bottom:699.173333pt;}
.yeb{bottom:701.413333pt;}
.y1b{bottom:715.333333pt;}
.y5d{bottom:717.573333pt;}
.y158{bottom:719.173333pt;}
.yea{bottom:719.813333pt;}
.y1a{bottom:732.933333pt;}
.y5c{bottom:735.973333pt;}
.ye9{bottom:738.213333pt;}
.y3c{bottom:738.533333pt;}
.y157{bottom:740.293333pt;}
.y9d{bottom:749.573333pt;}
.y19{bottom:751.493333pt;}
.y5b{bottom:754.373333pt;}
.ye8{bottom:756.613333pt;}
.y156{bottom:761.573333pt;}
.y3b{bottom:762.693333pt;}
.y9b{bottom:764.773333pt;}
.y5a{bottom:772.773333pt;}
.y18{bottom:773.093333pt;}
.ye7{bottom:774.693333pt;}
.y99{bottom:780.773333pt;}
.y155{bottom:782.693333pt;}
.y59{bottom:791.173333pt;}
.y17{bottom:794.373333pt;}
.ye6{bottom:795.813333pt;}
.y154{bottom:803.813333pt;}
.y98{bottom:807.653333pt;}
.y3a{bottom:807.973333pt;}
.y58{bottom:809.573333pt;}
.y16{bottom:814.693333pt;}
.y153{bottom:824.933333pt;}
.y57{bottom:827.973333pt;}
.y15{bottom:830.053333pt;}
.y39{bottom:838.853333pt;}
.y97{bottom:839.653333pt;}
.y13{bottom:845.413333pt;}
.y13f{bottom:845.893333pt;}
.y152{bottom:846.213333pt;}
.y56{bottom:846.373333pt;}
.yb{bottom:863.653333pt;}
.y9{bottom:880.453333pt;}
.y4{bottom:902.200000pt;}
.y1{bottom:902.213333pt;}
.h31{height:13.746667pt;}
.h32{height:13.760000pt;}
.h30{height:13.906667pt;}
.h33{height:13.938667pt;}
.h29{height:15.186667pt;}
.h11{height:15.346667pt;}
.h26{height:15.352000pt;}
.h8{height:21.746667pt;}
.h2d{height:26.066667pt;}
.h2e{height:26.076000pt;}
.h2f{height:26.080000pt;}
.h24{height:30.712000pt;}
.h20{height:31.531875pt;}
.h2c{height:36.431250pt;}
.h7{height:37.436250pt;}
.h25{height:37.479688pt;}
.hc{height:38.085938pt;}
.h2{height:41.906250pt;}
.h23{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:44.672000pt;}
.hd{height:44.680000pt;}
.h12{height:46.376250pt;}
.hf{height:46.718750pt;}
.ha{height:47.109375pt;}
.he{height:51.807500pt;}
.h27{height:52.134375pt;}
.h28{height:52.478750pt;}
.h13{height:53.535000pt;}
.h14{height:55.298750pt;}
.h1b{height:56.235000pt;}
.h15{height:56.312500pt;}
.h9{height:57.787500pt;}
.h10{height:58.563750pt;}
.h18{height:59.340000pt;}
.h1d{height:61.125000pt;}
.h1c{height:62.732500pt;}
.h17{height:62.812500pt;}
.h1{height:63.226667pt;}
.h3{height:63.232000pt;}
.h5{height:63.240000pt;}
.h4{height:64.500000pt;}
.h34{height:65.781915pt;}
.h19{height:66.404375pt;}
.h22{height:66.625000pt;}
.h1e{height:68.187500pt;}
.h1f{height:69.467500pt;}
.h1a{height:71.516250pt;}
.h16{height:75.465000pt;}
.h21{height:83.547500pt;}
.h2b{height:129.000000pt;}
.h2a{height:132.180000pt;}
.h0{height:1008.000000pt;}
.w15{width:35.992000pt;}
.w23{width:44.786667pt;}
.w1c{width:45.600000pt;}
.w21{width:45.746667pt;}
.w24{width:47.346667pt;}
.w19{width:47.352000pt;}
.w22{width:47.356000pt;}
.w1a{width:47.360000pt;}
.w25{width:47.378667pt;}
.w1b{width:47.380000pt;}
.w1f{width:47.392000pt;}
.w20{width:47.400000pt;}
.w1d{width:47.516000pt;}
.w1e{width:47.520000pt;}
.w10{width:65.618667pt;}
.w9{width:69.592000pt;}
.wd{width:84.306667pt;}
.we{width:84.338667pt;}
.wf{width:103.392000pt;}
.w11{width:103.680000pt;}
.w13{width:108.320000pt;}
.w12{width:120.980000pt;}
.wb{width:120.992000pt;}
.w2{width:125.632000pt;}
.w3{width:125.640000pt;}
.w4{width:132.180000pt;}
.w18{width:140.973333pt;}
.w16{width:141.613333pt;}
.w17{width:141.946667pt;}
.wc{width:143.693333pt;}
.w8{width:162.253333pt;}
.wa{width:166.093333pt;}
.w1{width:170.413333pt;}
.w6{width:199.573333pt;}
.w7{width:199.586667pt;}
.w14{width:202.133333pt;}
.w5{width:428.240000pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.106667pt;}
.x78{left:6.866667pt;}
.x7{left:7.826667pt;}
.x74{left:9.752000pt;}
.x52{left:11.186667pt;}
.x79{left:12.626667pt;}
.x56{left:14.880000pt;}
.x9{left:16.626667pt;}
.x4b{left:18.386667pt;}
.x8{left:20.626667pt;}
.x4e{left:21.786667pt;}
.x11{left:23.026667pt;}
.x53{left:24.306667pt;}
.x57{left:26.080000pt;}
.x4d{left:27.386667pt;}
.x77{left:39.986667pt;}
.x14{left:42.866667pt;}
.x17{left:49.746667pt;}
.x18{left:51.986667pt;}
.xd{left:56.986667pt;}
.x5{left:66.400000pt;}
.x16{left:77.600000pt;}
.x4{left:89.760000pt;}
.xf{left:92.506667pt;}
.xa{left:95.506667pt;}
.x59{left:111.200000pt;}
.x73{left:123.240000pt;}
.x58{left:125.146667pt;}
.x28{left:127.232000pt;}
.xb{left:132.352000pt;}
.x6{left:133.960000pt;}
.x1a{left:135.066667pt;}
.x7f{left:136.346667pt;}
.x81{left:138.106667pt;}
.x3c{left:139.072000pt;}
.x4a{left:142.120000pt;}
.x54{left:145.466667pt;}
.x6e{left:146.426667pt;}
.xe{left:150.106667pt;}
.x61{left:152.186667pt;}
.x5f{left:156.346667pt;}
.x5d{left:158.746667pt;}
.x6f{left:159.866667pt;}
.x82{left:160.826667pt;}
.x7e{left:171.706667pt;}
.x37{left:174.746667pt;}
.x72{left:176.346667pt;}
.x20{left:186.106667pt;}
.x1e{left:189.306667pt;}
.x1f{left:194.266667pt;}
.x31{left:197.946667pt;}
.x36{left:200.026667pt;}
.x10{left:201.960000pt;}
.x7a{left:207.880000pt;}
.x1d{left:213.146667pt;}
.x5a{left:215.266667pt;}
.x35{left:221.786667pt;}
.x5b{left:224.346667pt;}
.x4c{left:227.240000pt;}
.x49{left:228.186667pt;}
.x29{left:239.552000pt;}
.x55{left:244.226667pt;}
.x2c{left:245.986667pt;}
.x2e{left:251.232000pt;}
.x34{left:253.826667pt;}
.x7b{left:255.906667pt;}
.x3{left:266.146667pt;}
.x2a{left:267.552000pt;}
.x1b{left:269.666667pt;}
.x33{left:270.626667pt;}
.x15{left:276.706667pt;}
.x47{left:281.666667pt;}
.x22{left:295.106667pt;}
.x75{left:302.146667pt;}
.x4f{left:312.226667pt;}
.x5e{left:317.666667pt;}
.x80{left:340.866667pt;}
.x1c{left:348.066667pt;}
.x7c{left:350.306667pt;}
.x24{left:360.866667pt;}
.xc{left:364.226667pt;}
.x48{left:371.586667pt;}
.x1{left:391.786667pt;}
.x3a{left:395.773333pt;}
.x46{left:396.733333pt;}
.x13{left:397.706667pt;}
.x6a{left:399.613333pt;}
.x45{left:402.013333pt;}
.x64{left:403.293333pt;}
.x67{left:405.533333pt;}
.x70{left:414.493333pt;}
.x50{left:416.266667pt;}
.x63{left:418.013333pt;}
.x66{left:420.253333pt;}
.x69{left:421.693333pt;}
.x44{left:427.453333pt;}
.x43{left:432.733333pt;}
.x39{left:436.733333pt;}
.x2b{left:443.552000pt;}
.x76{left:444.746667pt;}
.x23{left:446.973333pt;}
.x6c{left:464.413333pt;}
.x3f{left:475.453333pt;}
.x30{left:481.213333pt;}
.x68{left:482.973333pt;}
.x65{left:490.013333pt;}
.x6b{left:492.413333pt;}
.x42{left:494.973333pt;}
.x62{left:496.413333pt;}
.x3b{left:500.093333pt;}
.x51{left:501.226667pt;}
.x38{left:503.773333pt;}
.x41{left:505.693333pt;}
.x3d{left:508.253333pt;}
.x40{left:512.413333pt;}
.x71{left:514.013333pt;}
.x6d{left:518.333333pt;}
.x27{left:519.773333pt;}
.x2f{left:520.733333pt;}
.x32{left:533.853333pt;}
.x3e{left:537.573333pt;}
.x21{left:538.853333pt;}
.x7d{left:540.933333pt;}
.x2d{left:547.013333pt;}
.x12{left:555.173333pt;}
.x19{left:556.613333pt;}
.x26{left:558.853333pt;}
.x25{left:560.453333pt;}
.x5c{left:564.453333pt;}
.x60{left:570.373333pt;}
}




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