
    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_94f6b90f4878c7a9dcbedfbb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_55e2ac9f3eda08ca03eccacf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1cedcab5d96298b4f008f555.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_e50169d776c9bdfe272e1ce1.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_b15b4459e2f9cebb0b8db714.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.852539;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_60ed430d1f28f787aa4b3121.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_db37a35885a51d3047eb3217.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956543;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_69938142b5561623e56bd76e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_70d86321fdd9d1813c1b3d28.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7624e60460e2247cf2b40360.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936035;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_044d75ac41f7935a2976a9a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.903809;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;}
.md{transform:matrix(0.000000,-0.258893,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.258893,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.258893,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.mc{transform:matrix(0.241413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241413,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245748,0.000000,-0.081908,0.236201,0,0);-ms-transform:matrix(0.245748,0.000000,-0.081908,0.236201,0,0);-webkit-transform:matrix(0.245748,0.000000,-0.081908,0.236201,0,0);}
.ma{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,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);}
.m9{transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.258117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258117,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.259248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259248,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.267420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267420,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.271286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271286,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v7{vertical-align:-29.646916px;}
.v5{vertical-align:-17.959543px;}
.va{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.360000px;}
.v6{vertical-align:11.687373px;}
.v4{vertical-align:12.775885px;}
.vb{vertical-align:17.262303px;}
.v3{vertical-align:29.855512px;}
.v1{vertical-align:33.120000px;}
.v9{vertical-align:46.015848px;}
.ls5{letter-spacing:-15.720000px;}
.lsd{letter-spacing:-3.165189px;}
.lsc{letter-spacing:-1.139413px;}
.ls3{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.403785px;}
.ls15{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.181200px;}
.ls9{letter-spacing:0.181440px;}
.lse{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.269280px;}
.ls16{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.792000px;}
.ls21{letter-spacing:1.152000px;}
.ls1a{letter-spacing:1.674419px;}
.ls1b{letter-spacing:1.751883px;}
.ls18{letter-spacing:1.877464px;}
.ls19{letter-spacing:1.900853px;}
.ls17{letter-spacing:1.985597px;}
.ls20{letter-spacing:2.160000px;}
.ls1d{letter-spacing:14.400000px;}
.ls1e{letter-spacing:25.488000px;}
.ls22{letter-spacing:51.264000px;}
.ls1c{letter-spacing:61.488000px;}
.ls6{letter-spacing:82.224000px;}
.ls7{letter-spacing:83.615899px;}
.ls11{letter-spacing:194.544000px;}
.ls13{letter-spacing:198.144000px;}
.ls10{letter-spacing:237.168053px;}
.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;}
}
.ws13{word-spacing:-41.989456px;}
.ws1a{word-spacing:-39.948681px;}
.ws6{word-spacing:-39.528000px;}
.ws2a{word-spacing:-18.792000px;}
.ws4{word-spacing:-18.504000px;}
.ws22{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.191567px;}
.ws27{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.065515px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.661730px;}
.ws2{word-spacing:-17.280000px;}
.ws1d{word-spacing:-17.052154px;}
.ws25{word-spacing:-16.327415px;}
.ws23{word-spacing:-15.622153px;}
.ws1f{word-spacing:-15.259338px;}
.ws10{word-spacing:-15.037125px;}
.ws29{word-spacing:-13.197519px;}
.ws28{word-spacing:-12.711674px;}
.ws19{word-spacing:-11.069947px;}
.ws14{word-spacing:-10.812026px;}
.wsb{word-spacing:-10.636160px;}
.ws15{word-spacing:-10.238226px;}
.ws7{word-spacing:-10.063562px;}
.ws26{word-spacing:-9.513540px;}
.ws1{word-spacing:-0.048240px;}
.ws3{word-spacing:0.000000px;}
.ws11{word-spacing:65.490184px;}
.ws16{word-spacing:65.920965px;}
.ws1b{word-spacing:65.947142px;}
.wsc{word-spacing:66.380929px;}
.ws8{word-spacing:66.808931px;}
.ws21{word-spacing:111.074883px;}
.wse{word-spacing:145.591977px;}
.ws9{word-spacing:145.643875px;}
.ws24{word-spacing:182.073926px;}
.wsd{word-spacing:365.226689px;}
.ws20{word-spacing:403.527006px;}
.ws1e{word-spacing:429.213271px;}
.ws17{word-spacing:454.211072px;}
.ws1c{word-spacing:492.117966px;}
.wsf{word-spacing:910.976829px;}
._46{margin-left:-265.312212px;}
._4f{margin-left:-258.123313px;}
._36{margin-left:-219.126756px;}
._2c{margin-left:-197.277503px;}
._40{margin-left:-194.150236px;}
._41{margin-left:-191.425815px;}
._55{margin-left:-187.032344px;}
._30{margin-left:-183.685364px;}
._48{margin-left:-182.033183px;}
._3a{margin-left:-169.265693px;}
._3c{margin-left:-168.231819px;}
._31{margin-left:-158.926406px;}
._35{margin-left:-157.777657px;}
._32{margin-left:-156.405057px;}
._4a{margin-left:-148.707242px;}
._26{margin-left:-142.157676px;}
._2d{margin-left:-130.928437px;}
._59{margin-left:-129.665586px;}
._3e{margin-left:-128.371572px;}
._54{margin-left:-127.348996px;}
._38{margin-left:-121.078731px;}
._50{margin-left:-119.543467px;}
._3f{margin-left:-117.907656px;}
._2e{margin-left:-114.204307px;}
._2f{margin-left:-112.168558px;}
._39{margin-left:-106.394266px;}
._47{margin-left:-104.836827px;}
._2b{margin-left:-98.391493px;}
._45{margin-left:-97.246522px;}
._25{margin-left:-90.887036px;}
._3d{margin-left:-89.826485px;}
._56{margin-left:-88.371735px;}
._27{margin-left:-82.503177px;}
._37{margin-left:-81.380100px;}
._28{margin-left:-79.621544px;}
._4c{margin-left:-78.067376px;}
._58{margin-left:-76.913170px;}
._52{margin-left:-75.906832px;}
._51{margin-left:-73.411165px;}
._4b{margin-left:-68.772735px;}
._34{margin-left:-53.574888px;}
._57{margin-left:-52.214915px;}
._33{margin-left:-46.865935px;}
._68{margin-left:-27.936000px;}
._19{margin-left:-26.604000px;}
._62{margin-left:-24.552000px;}
._5{margin-left:-23.532000px;}
._63{margin-left:-20.088000px;}
._22{margin-left:-16.080000px;}
._21{margin-left:-14.880000px;}
._53{margin-left:-9.360000px;}
._61{margin-left:-7.920000px;}
._49{margin-left:-5.997751px;}
._5f{margin-left:-3.942029px;}
._4{margin-left:-2.520000px;}
._0{margin-left:-1.152000px;}
._1{width:1.020000px;}
._2{width:2.352000px;}
._b{width:3.840000px;}
._8{width:4.968000px;}
._9{width:6.264000px;}
._7{width:8.040000px;}
._11{width:9.096000px;}
._10{width:10.800000px;}
._e{width:11.808000px;}
._f{width:12.816000px;}
._12{width:14.400000px;}
._23{width:15.408000px;}
._a{width:16.416000px;}
._17{width:19.008000px;}
._1e{width:20.016000px;}
._1c{width:21.024000px;}
._d{width:22.032000px;}
._c{width:23.328000px;}
._5c{width:24.984000px;}
._5b{width:25.992000px;}
._5e{width:27.072000px;}
._5d{width:28.080000px;}
._1b{width:30.144000px;}
._1a{width:31.176000px;}
._6{width:32.400000px;}
._60{width:33.624000px;}
._1d{width:35.400000px;}
._65{width:37.806029px;}
._64{width:38.880000px;}
._67{width:40.368000px;}
._16{width:42.168000px;}
._3{width:43.920000px;}
._66{width:45.216000px;}
._1f{width:96.228000px;}
._29{width:112.671316px;}
._14{width:122.184000px;}
._18{width:123.252000px;}
._5a{width:177.300000px;}
._24{width:189.434015px;}
._15{width:193.728000px;}
._13{width:194.796000px;}
._20{width:198.000000px;}
._2a{width:424.251417px;}
._42{width:435.831087px;}
._4d{width:442.933354px;}
._4e{width:469.157013px;}
._44{width:497.720758px;}
._43{width:562.716000px;}
._3b{width:652.750188px;}
.fc6{color:rgb(0,0,128);}
.fc5{color:transparent;}
.fc4{color:rgb(0,176,240);}
.fc2{color:rgb(57,111,48);}
.fc1{color:rgb(0,128,128);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:38.054160px;}
.fs17{font-size:38.984041px;}
.fs18{font-size:40.370774px;}
.fs4{font-size:48.240000px;}
.fs13{font-size:49.260198px;}
.fs16{font-size:56.246347px;}
.fs15{font-size:58.247131px;}
.fs14{font-size:58.396100px;}
.fs5{font-size:59.760000px;}
.fsa{font-size:60.148501px;}
.fs7{font-size:60.568187px;}
.fsf{font-size:62.488612px;}
.fs10{font-size:65.309660px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.262060px;}
.fs8{font-size:72.766268px;}
.fsd{font-size:73.698108px;}
.fse{font-size:75.893905px;}
.fsb{font-size:76.483526px;}
.fs1{font-size:84.240000px;}
.fsc{font-size:96.207734px;}
.fs6{font-size:97.023619px;}
.fs12{font-size:97.833979px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.420000px;}
.y2b{bottom:3.960000px;}
.y109{bottom:4.500000px;}
.yf1{bottom:5.309239px;}
.ye5{bottom:5.465130px;}
.yde{bottom:6.748159px;}
.y7f{bottom:6.840000px;}
.ybe{bottom:7.099486px;}
.yaf{bottom:7.355721px;}
.yb6{bottom:7.447340px;}
.y137{bottom:7.740000px;}
.y150{bottom:8.156088px;}
.y87{bottom:8.994000px;}
.y80{bottom:9.000000px;}
.yae{bottom:11.625627px;}
.yb7{bottom:11.687517px;}
.yb5{bottom:14.859069px;}
.yea{bottom:18.217099px;}
.ye0{bottom:19.012065px;}
.y151{bottom:21.228174px;}
.yb0{bottom:22.964666px;}
.ye8{bottom:24.863621px;}
.y114{bottom:27.000000px;}
.y108{bottom:27.045000px;}
.ydf{bottom:28.872610px;}
.yeb{bottom:36.670748px;}
.ye6{bottom:40.448757px;}
.ye7{bottom:41.225023px;}
.ye9{bottom:47.735597px;}
.yec{bottom:57.012723px;}
.yfe{bottom:79.056000px;}
.y1b0{bottom:85.716000px;}
.y51{bottom:87.876000px;}
.y89{bottom:88.956000px;}
.ya7{bottom:98.676000px;}
.y167{bottom:103.716000px;}
.y149{bottom:104.539448px;}
.yfd{bottom:104.616000px;}
.y111{bottom:107.676000px;}
.y1a2{bottom:108.396000px;}
.y1af{bottom:111.276000px;}
.y50{bottom:113.436000px;}
.y88{bottom:115.956000px;}
.y25{bottom:117.936000px;}
.y136{bottom:118.476000px;}
.ya6{bottom:124.236000px;}
.y166{bottom:129.276000px;}
.yfc{bottom:130.176000px;}
.y110{bottom:130.716000px;}
.y1a1{bottom:133.956000px;}
.y1ae{bottom:136.836000px;}
.yd0{bottom:137.376000px;}
.y4f{bottom:138.996000px;}
.y153{bottom:142.191525px;}
.y86{bottom:142.956000px;}
.y24{bottom:143.496000px;}
.y14a{bottom:143.755706px;}
.y135{bottom:144.036000px;}
.ya5{bottom:149.796000px;}
.y183{bottom:150.510000px;}
.y74{bottom:151.950000px;}
.y165{bottom:154.830000px;}
.yfb{bottom:155.730000px;}
.y10f{bottom:157.710000px;}
.y1a0{bottom:159.510000px;}
.y1ad{bottom:162.390000px;}
.ycf{bottom:162.930000px;}
.y4e{bottom:164.550000px;}
.y23{bottom:169.050000px;}
.y152{bottom:169.229516px;}
.y134{bottom:169.590000px;}
.y85{bottom:169.950000px;}
.ya4{bottom:175.350000px;}
.y182{bottom:176.070000px;}
.y73{bottom:177.510000px;}
.y164{bottom:180.390000px;}
.yfa{bottom:181.290000px;}
.y14b{bottom:182.934723px;}
.y10e{bottom:184.710000px;}
.y19f{bottom:185.070000px;}
.y1ac{bottom:187.950000px;}
.yce{bottom:188.490000px;}
.y4d{bottom:190.110000px;}
.y22{bottom:194.610000px;}
.y133{bottom:195.150000px;}
.y84{bottom:196.950000px;}
.y181{bottom:201.630000px;}
.y72{bottom:203.070000px;}
.y163{bottom:205.950000px;}
.yf9{bottom:206.850000px;}
.y19e{bottom:210.630000px;}
.y10d{bottom:211.710000px;}
.y1ab{bottom:213.510000px;}
.ycd{bottom:214.050000px;}
.y4c{bottom:215.670000px;}
.y155{bottom:218.550000px;}
.ya3{bottom:218.910000px;}
.y21{bottom:220.170000px;}
.y132{bottom:220.710000px;}
.y14c{bottom:222.143533px;}
.y83{bottom:223.950000px;}
.y180{bottom:227.190000px;}
.y71{bottom:228.630000px;}
.y162{bottom:231.510000px;}
.yf8{bottom:232.410000px;}
.y19d{bottom:236.190000px;}
.y10c{bottom:238.710000px;}
.y1aa{bottom:239.070000px;}
.ycc{bottom:239.610000px;}
.y4b{bottom:241.230000px;}
.y20{bottom:245.730000px;}
.y131{bottom:246.270000px;}
.y82{bottom:250.950000px;}
.y17f{bottom:252.750000px;}
.y70{bottom:254.190000px;}
.y161{bottom:257.070000px;}
.yf7{bottom:257.970000px;}
.y154{bottom:258.150000px;}
.y148{bottom:260.414545px;}
.y14d{bottom:261.322550px;}
.y19c{bottom:261.750000px;}
.ya2{bottom:262.110000px;}
.y1a9{bottom:264.630000px;}
.ycb{bottom:265.170000px;}
.y10b{bottom:265.710000px;}
.y4a{bottom:266.790000px;}
.y1f{bottom:271.290000px;}
.y130{bottom:271.830000px;}
.y17e{bottom:278.310000px;}
.y81{bottom:279.030000px;}
.y6f{bottom:279.750000px;}
.y160{bottom:282.630000px;}
.yf6{bottom:283.530000px;}
.ya1{bottom:283.710000px;}
.y19b{bottom:287.310000px;}
.y1a8{bottom:290.190000px;}
.y49{bottom:292.350000px;}
.y10a{bottom:292.710000px;}
.y1e{bottom:296.850000px;}
.y12f{bottom:297.390000px;}
.yca{bottom:299.730000px;}
.y14e{bottom:300.546257px;}
.y17d{bottom:303.870000px;}
.y6e{bottom:305.310000px;}
.y7e{bottom:306.030000px;}
.y15f{bottom:308.190000px;}
.yf5{bottom:309.090000px;}
.y19a{bottom:312.870000px;}
.y1a7{bottom:315.750000px;}
.y48{bottom:317.910000px;}
.y107{bottom:320.790000px;}
.y1d{bottom:322.410000px;}
.y12e{bottom:322.950000px;}
.y17c{bottom:329.430000px;}
.y6d{bottom:330.870000px;}
.y15e{bottom:333.750000px;}
.yc9{bottom:334.290000px;}
.yf4{bottom:334.650000px;}
.y199{bottom:338.430000px;}
.y1a6{bottom:341.355000px;}
.y47{bottom:343.515000px;}
.y7d{bottom:347.835000px;}
.y1c{bottom:348.015000px;}
.y12d{bottom:348.555000px;}
.y14f{bottom:353.148148px;}
.y17b{bottom:355.035000px;}
.y6c{bottom:356.475000px;}
.y15d{bottom:359.355000px;}
.yc8{bottom:359.895000px;}
.yf3{bottom:360.255000px;}
.y198{bottom:364.035000px;}
.y106{bottom:365.835000px;}
.y1a5{bottom:366.915000px;}
.y46{bottom:369.075000px;}
.y7c{bottom:373.395000px;}
.y1b{bottom:373.575000px;}
.y12c{bottom:374.115000px;}
.y17a{bottom:380.595000px;}
.y6b{bottom:382.035000px;}
.y15c{bottom:384.915000px;}
.yc7{bottom:385.455000px;}
.y197{bottom:389.595000px;}
.y1a4{bottom:392.475000px;}
.y45{bottom:394.635000px;}
.y1a{bottom:399.135000px;}
.y12b{bottom:399.675000px;}
.yf2{bottom:403.815000px;}
.y179{bottom:406.155000px;}
.y6a{bottom:407.595000px;}
.y15b{bottom:410.475000px;}
.yc6{bottom:411.015000px;}
.y196{bottom:415.155000px;}
.y7b{bottom:416.955000px;}
.y44{bottom:420.195000px;}
.y19{bottom:424.695000px;}
.yf0{bottom:425.055000px;}
.y12a{bottom:425.235000px;}
.yef{bottom:430.995000px;}
.y178{bottom:431.715000px;}
.y69{bottom:433.155000px;}
.yc5{bottom:434.235000px;}
.y1a3{bottom:435.675000px;}
.y15a{bottom:436.035000px;}
.yc4{bottom:436.575000px;}
.y195{bottom:440.715000px;}
.y7a{bottom:442.515000px;}
.y43{bottom:445.755000px;}
.y18{bottom:450.255000px;}
.y129{bottom:450.795000px;}
.yee{bottom:454.935000px;}
.y177{bottom:457.275000px;}
.y9e{bottom:458.715000px;}
.yc3{bottom:459.795000px;}
.y159{bottom:461.595000px;}
.yc2{bottom:462.135000px;}
.y194{bottom:466.275000px;}
.y79{bottom:468.075000px;}
.y42{bottom:471.315000px;}
.y17{bottom:475.815000px;}
.y128{bottom:476.355000px;}
.y68{bottom:476.715000px;}
.yed{bottom:480.495000px;}
.y176{bottom:482.835000px;}
.y9d{bottom:484.275000px;}
.y158{bottom:487.155000px;}
.yc1{bottom:487.695000px;}
.y193{bottom:491.835000px;}
.y78{bottom:493.635000px;}
.y41{bottom:496.875000px;}
.y16{bottom:501.375000px;}
.ye4{bottom:501.780000px;}
.y127{bottom:501.915000px;}
.y105{bottom:502.275000px;}
.y175{bottom:508.395000px;}
.y9c{bottom:509.835000px;}
.y157{bottom:512.715000px;}
.yc0{bottom:513.255000px;}
.y192{bottom:517.395000px;}
.y77{bottom:519.195000px;}
.y67{bottom:519.915000px;}
.ye3{bottom:521.175000px;}
.y40{bottom:522.435000px;}
.y15{bottom:526.935000px;}
.y126{bottom:527.475000px;}
.y104{bottom:527.835000px;}
.y174{bottom:533.955000px;}
.ybd{bottom:534.480000px;}
.y9b{bottom:535.395000px;}
.y156{bottom:538.275000px;}
.ybf{bottom:542.055000px;}
.y191{bottom:542.955000px;}
.y76{bottom:544.755000px;}
.y3f{bottom:547.995000px;}
.y14{bottom:552.495000px;}
.y125{bottom:553.035000px;}
.y103{bottom:553.395000px;}
.y173{bottom:559.515000px;}
.y9a{bottom:560.955000px;}
.y66{bottom:563.835000px;}
.ybc{bottom:564.375000px;}
.y190{bottom:568.515000px;}
.y3e{bottom:573.555000px;}
.ye2{bottom:577.335000px;}
.y13{bottom:578.055000px;}
.y124{bottom:578.595000px;}
.y102{bottom:578.955000px;}
.y75{bottom:583.995000px;}
.y172{bottom:585.075000px;}
.ybb{bottom:585.630000px;}
.y99{bottom:586.515000px;}
.y65{bottom:589.395000px;}
.y18f{bottom:594.075000px;}
.ydd{bottom:598.605000px;}
.y3d{bottom:599.115000px;}
.yba{bottom:600.555000px;}
.y123{bottom:604.185000px;}
.y101{bottom:604.545000px;}
.y147{bottom:605.625000px;}
.y171{bottom:610.665000px;}
.y98{bottom:612.105000px;}
.y64{bottom:614.985000px;}
.y18e{bottom:619.665000px;}
.ye1{bottom:621.105000px;}
.y12{bottom:624.165000px;}
.y3c{bottom:624.705000px;}
.y122{bottom:629.745000px;}
.y100{bottom:630.105000px;}
.yb9{bottom:633.705000px;}
.y170{bottom:636.225000px;}
.y97{bottom:637.665000px;}
.y63{bottom:640.545000px;}
.y18d{bottom:645.225000px;}
.yb8{bottom:648.645000px;}
.y146{bottom:649.185000px;}
.y11{bottom:649.725000px;}
.y3b{bottom:650.265000px;}
.y121{bottom:655.305000px;}
.ydc{bottom:655.665000px;}
.y16f{bottom:661.785000px;}
.y96{bottom:663.225000px;}
.ya0{bottom:663.945000px;}
.y62{bottom:666.105000px;}
.y18c{bottom:670.785000px;}
.y145{bottom:674.745000px;}
.y10{bottom:675.285000px;}
.yb4{bottom:675.630000px;}
.y3a{bottom:675.825000px;}
.y120{bottom:680.865000px;}
.ydb{bottom:681.225000px;}
.y9f{bottom:685.545000px;}
.y16e{bottom:687.345000px;}
.y95{bottom:688.785000px;}
.yb3{bottom:690.585000px;}
.y61{bottom:691.665000px;}
.y18b{bottom:696.345000px;}
.y144{bottom:700.305000px;}
.y39{bottom:701.385000px;}
.y11f{bottom:706.425000px;}
.yda{bottom:706.785000px;}
.y16d{bottom:712.905000px;}
.y94{bottom:714.345000px;}
.y60{bottom:717.225000px;}
.yb2{bottom:717.555000px;}
.yf{bottom:718.845000px;}
.y18a{bottom:721.905000px;}
.y143{bottom:725.865000px;}
.y38{bottom:726.945000px;}
.y11e{bottom:731.985000px;}
.yd9{bottom:732.345000px;}
.yb1{bottom:732.525000px;}
.y16c{bottom:738.465000px;}
.y93{bottom:739.905000px;}
.y5f{bottom:742.785000px;}
.ye{bottom:744.405000px;}
.y189{bottom:747.465000px;}
.y142{bottom:751.425000px;}
.y37{bottom:752.505000px;}
.y11d{bottom:757.545000px;}
.yd8{bottom:757.905000px;}
.y16b{bottom:764.025000px;}
.yad{bottom:765.630000px;}
.y5e{bottom:768.345000px;}
.y188{bottom:773.025000px;}
.y141{bottom:776.985000px;}
.y36{bottom:778.065000px;}
.yac{bottom:780.585000px;}
.y11c{bottom:783.105000px;}
.y92{bottom:783.465000px;}
.yd{bottom:787.965000px;}
.y16a{bottom:789.585000px;}
.y5d{bottom:793.905000px;}
.y187{bottom:798.585000px;}
.yff{bottom:801.105000px;}
.y140{bottom:802.545000px;}
.y35{bottom:803.625000px;}
.yd7{bottom:809.025000px;}
.yab{bottom:818.025000px;}
.y5c{bottom:819.465000px;}
.yc{bottom:821.805000px;}
.y11b{bottom:823.785000px;}
.y91{bottom:827.025000px;}
.y13f{bottom:828.105000px;}
.y34{bottom:829.185000px;}
.y169{bottom:832.785000px;}
.yd6{bottom:834.585000px;}
.y186{bottom:841.785000px;}
.yaa{bottom:843.585000px;}
.y5b{bottom:845.025000px;}
.yb{bottom:847.365000px;}
.y11a{bottom:850.785000px;}
.y90{bottom:852.585000px;}
.y33{bottom:854.745000px;}
.yd5{bottom:860.145000px;}
.y13e{bottom:868.830000px;}
.y5a{bottom:870.630000px;}
.y119{bottom:877.830000px;}
.y8f{bottom:878.190000px;}
.y32{bottom:880.350000px;}
.ya{bottom:882.330000px;}
.y185{bottom:885.390000px;}
.yd4{bottom:885.750000px;}
.y13d{bottom:895.830000px;}
.y59{bottom:896.190000px;}
.y8e{bottom:903.750000px;}
.y118{bottom:904.830000px;}
.yd3{bottom:911.310000px;}
.y58{bottom:921.750000px;}
.y13c{bottom:922.830000px;}
.y31{bottom:923.550000px;}
.y9{bottom:927.870000px;}
.y184{bottom:928.950000px;}
.y8d{bottom:929.310000px;}
.y117{bottom:931.830000px;}
.yd2{bottom:936.870000px;}
.y57{bottom:947.310000px;}
.y13b{bottom:949.830000px;}
.y8c{bottom:954.870000px;}
.y116{bottom:958.830000px;}
.y8{bottom:959.550000px;}
.yd1{bottom:962.430000px;}
.y56{bottom:972.870000px;}
.y13a{bottom:976.830000px;}
.y168{bottom:980.070000px;}
.y8b{bottom:980.430000px;}
.y115{bottom:985.830000px;}
.ya9{bottom:989.430000px;}
.y7{bottom:991.230000px;}
.y55{bottom:998.430000px;}
.y139{bottom:1003.830000px;}
.y30{bottom:1005.990000px;}
.y113{bottom:1013.910000px;}
.ya8{bottom:1014.990000px;}
.y54{bottom:1023.990000px;}
.y6{bottom:1030.290000px;}
.y138{bottom:1030.830000px;}
.y2f{bottom:1031.550000px;}
.y53{bottom:1049.550000px;}
.y5{bottom:1051.530000px;}
.y2e{bottom:1057.110000px;}
.y112{bottom:1058.910000px;}
.y4{bottom:1072.410000px;}
.y52{bottom:1075.110000px;}
.y8a{bottom:1082.670000px;}
.y3{bottom:1099.230000px;}
.y2d{bottom:1100.670000px;}
.y2c{bottom:1126.230000px;}
.y26{bottom:1137.600000px;}
.y2{bottom:1137.780000px;}
.y29{bottom:1151.820000px;}
.y1{bottom:1166.760000px;}
.y2a{bottom:1172.700000px;}
.y28{bottom:1177.380000px;}
.h2d{height:17.624035px;}
.h9{height:17.640000px;}
.h1b{height:23.999893px;}
.hb{height:25.560000px;}
.hd{height:27.000000px;}
.h31{height:27.036000px;}
.h29{height:28.187579px;}
.h15{height:32.924584px;}
.h2b{height:37.329496px;}
.h26{height:37.348077px;}
.h10{height:39.075503px;}
.h37{height:39.104532px;}
.h20{height:43.724893px;}
.h34{height:44.168845px;}
.h33{height:44.281809px;}
.h30{height:45.000000px;}
.h2f{height:45.036000px;}
.h25{height:45.346844px;}
.h36{height:46.728756px;}
.h8{height:47.344922px;}
.h2e{height:48.322137px;}
.h27{height:48.376345px;}
.h38{height:48.539955px;}
.h1d{height:56.216335px;}
.h19{height:56.653081px;}
.h13{height:59.444363px;}
.ha{height:60.226875px;}
.h21{height:61.298644px;}
.h22{height:61.329156px;}
.h2a{height:64.065970px;}
.h24{height:64.097859px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h17{height:70.690468px;}
.h18{height:70.885976px;}
.h16{height:70.921260px;}
.h23{height:71.249250px;}
.h1a{height:71.263248px;}
.h11{height:71.867593px;}
.h1c{height:72.330662px;}
.h28{height:72.467845px;}
.h2{height:72.562500px;}
.hf{height:74.004654px;}
.h1e{height:79.988906px;}
.h1f{height:80.024063px;}
.hc{height:80.464922px;}
.he{height:80.584922px;}
.h3{height:82.676953px;}
.h2c{height:83.345345px;}
.h12{height:101.271625px;}
.h7{height:108.843750px;}
.h14{height:121.880147px;}
.h4{height:141.257812px;}
.h3a{height:157.535399px;}
.h39{height:184.349934px;}
.h35{height:216.750832px;}
.h32{height:321.774431px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w15{width:13.499996px;}
.w3{width:27.000000px;}
.wc{width:65.340000px;}
.wb{width:65.700000px;}
.w9{width:65.880000px;}
.w8{width:65.916000px;}
.w24{width:79.380000px;}
.w1a{width:80.100000px;}
.w1d{width:80.136000px;}
.w1c{width:80.280000px;}
.w1b{width:80.316000px;}
.w23{width:80.460000px;}
.w22{width:80.496000px;}
.wa{width:88.956000px;}
.w2a{width:90.627106px;}
.w7{width:96.120000px;}
.w28{width:103.573836px;}
.w2{width:118.980000px;}
.wd{width:121.500244px;}
.w13{width:148.877160px;}
.w12{width:158.926617px;}
.w21{width:159.690000px;}
.w19{width:160.230000px;}
.w18{width:160.380000px;}
.w17{width:160.410000px;}
.w20{width:160.740000px;}
.w1f{width:160.770000px;}
.w14{width:163.579717px;}
.w29{width:167.228589px;}
.we{width:182.846685px;}
.w26{width:193.170000px;}
.w11{width:211.499173px;}
.w6{width:219.990000px;}
.w10{width:221.928379px;}
.w5{width:227.910000px;}
.w25{width:238.170000px;}
.w1e{width:246.675000px;}
.w16{width:251.535000px;}
.w4{width:286.815000px;}
.wf{width:325.432507px;}
.w27{width:517.869180px;}
.w1{width:893.250000px;}
.w0{width:893.520000px;}
.x0{left:0.000000px;}
.x27{left:2.614132px;}
.x47{left:4.056813px;}
.x9{left:7.380000px;}
.x63{left:9.422342px;}
.x4d{left:15.480000px;}
.x17{left:17.100000px;}
.x14{left:18.360000px;}
.x52{left:19.800000px;}
.x28{left:21.170924px;}
.x4e{left:22.320000px;}
.x12{left:24.300000px;}
.x1e{left:25.740000px;}
.x16{left:27.180000px;}
.x1f{left:35.280000px;}
.x1b{left:40.320000px;}
.x60{left:45.493369px;}
.x1a{left:47.520000px;}
.x1d{left:49.320000px;}
.x4b{left:53.100000px;}
.x1c{left:56.520000px;}
.x11{left:61.380000px;}
.xf{left:65.340000px;}
.x29{left:72.164231px;}
.x1{left:74.520000px;}
.x5d{left:76.320000px;}
.x46{left:77.701715px;}
.xc{left:79.380000px;}
.x44{left:81.083982px;}
.x53{left:82.980000px;}
.x40{left:85.772728px;}
.x3f{left:94.448391px;}
.x6{left:96.120000px;}
.x24{left:101.556000px;}
.x3e{left:103.021480px;}
.xb{left:105.696000px;}
.x66{left:109.116000px;}
.x42{left:113.772932px;}
.x7{left:116.676000px;}
.x43{left:117.792243px;}
.x3a{left:122.405760px;}
.x3d{left:124.088442px;}
.x3c{left:127.740000px;}
.x45{left:131.456278px;}
.x5a{left:134.496000px;}
.x34{left:136.620760px;}
.x48{left:141.156000px;}
.xd{left:143.310000px;}
.x2d{left:144.881184px;}
.x41{left:151.149278px;}
.x25{left:155.550000px;}
.x33{left:159.765000px;}
.x36{left:169.770000px;}
.x37{left:182.730000px;}
.x5f{left:187.318894px;}
.x38{left:193.530000px;}
.x61{left:203.502306px;}
.x5e{left:208.830000px;}
.x21{left:246.630000px;}
.x2e{left:291.474462px;}
.x2c{left:316.423840px;}
.x35{left:318.675000px;}
.x39{left:320.115000px;}
.x54{left:329.655000px;}
.x49{left:331.995000px;}
.x62{left:342.679648px;}
.xe{left:366.195000px;}
.x5b{left:372.675000px;}
.x26{left:391.965000px;}
.x30{left:393.240000px;}
.x57{left:409.935000px;}
.x4f{left:412.095000px;}
.x23{left:436.755000px;}
.x13{left:462.315000px;}
.x3b{left:468.975000px;}
.x55{left:490.425000px;}
.x4a{left:492.405000px;}
.x2a{left:513.465000px;}
.x15{left:528.225000px;}
.x5{left:538.305000px;}
.x5c{left:565.845000px;}
.x58{left:570.525000px;}
.x50{left:572.505000px;}
.x2b{left:574.845000px;}
.x3{left:579.705000px;}
.x10{left:594.105000px;}
.x32{left:603.465000px;}
.x64{left:609.166497px;}
.x31{left:615.165000px;}
.x22{left:631.365000px;}
.x56{left:650.985000px;}
.x4c{left:652.785000px;}
.x18{left:683.070000px;}
.x4{left:696.390000px;}
.x8{left:699.990000px;}
.x65{left:707.370000px;}
.x2f{left:717.450000px;}
.x59{left:731.310000px;}
.x51{left:732.930000px;}
.x19{left:748.770000px;}
.xa{left:792.150000px;}
.x20{left:815.010000px;}
.x2{left:818.970000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v7{vertical-align:-26.352814pt;}
.v5{vertical-align:-15.964038pt;}
.va{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.320000pt;}
.v6{vertical-align:10.388776pt;}
.v4{vertical-align:11.356342pt;}
.vb{vertical-align:15.344270pt;}
.v3{vertical-align:26.538233pt;}
.v1{vertical-align:29.440000pt;}
.v9{vertical-align:40.902976pt;}
.ls5{letter-spacing:-13.973333pt;}
.lsd{letter-spacing:-2.813501pt;}
.lsc{letter-spacing:-1.012812pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.358920pt;}
.ls15{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.161067pt;}
.ls9{letter-spacing:0.161280pt;}
.lse{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.239360pt;}
.ls16{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls21{letter-spacing:1.024000pt;}
.ls1a{letter-spacing:1.488372pt;}
.ls1b{letter-spacing:1.557229pt;}
.ls18{letter-spacing:1.668857pt;}
.ls19{letter-spacing:1.689647pt;}
.ls17{letter-spacing:1.764975pt;}
.ls20{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:12.800000pt;}
.ls1e{letter-spacing:22.656000pt;}
.ls22{letter-spacing:45.568000pt;}
.ls1c{letter-spacing:54.656000pt;}
.ls6{letter-spacing:73.088000pt;}
.ls7{letter-spacing:74.325244pt;}
.ls11{letter-spacing:172.928000pt;}
.ls13{letter-spacing:176.128000pt;}
.ls10{letter-spacing:210.816047pt;}
.ws13{word-spacing:-37.323961pt;}
.ws1a{word-spacing:-35.509939pt;}
.ws6{word-spacing:-35.136000pt;}
.ws2a{word-spacing:-16.704000pt;}
.ws4{word-spacing:-16.448000pt;}
.ws22{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.170282pt;}
.ws27{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.058236pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.699315pt;}
.ws2{word-spacing:-15.360000pt;}
.ws1d{word-spacing:-15.157470pt;}
.ws25{word-spacing:-14.513258pt;}
.ws23{word-spacing:-13.886358pt;}
.ws1f{word-spacing:-13.563856pt;}
.ws10{word-spacing:-13.366334pt;}
.ws29{word-spacing:-11.731128pt;}
.ws28{word-spacing:-11.299266pt;}
.ws19{word-spacing:-9.839953pt;}
.ws14{word-spacing:-9.610690pt;}
.wsb{word-spacing:-9.454364pt;}
.ws15{word-spacing:-9.100645pt;}
.ws7{word-spacing:-8.945388pt;}
.ws26{word-spacing:-8.456480pt;}
.ws1{word-spacing:-0.042880pt;}
.ws3{word-spacing:0.000000pt;}
.ws11{word-spacing:58.213497pt;}
.ws16{word-spacing:58.596413pt;}
.ws1b{word-spacing:58.619682pt;}
.wsc{word-spacing:59.005270pt;}
.ws8{word-spacing:59.385717pt;}
.ws21{word-spacing:98.733229pt;}
.wse{word-spacing:129.415091pt;}
.ws9{word-spacing:129.461222pt;}
.ws24{word-spacing:161.843489pt;}
.wsd{word-spacing:324.645946pt;}
.ws20{word-spacing:358.690672pt;}
.ws1e{word-spacing:381.522908pt;}
.ws17{word-spacing:403.743175pt;}
.ws1c{word-spacing:437.438192pt;}
.wsf{word-spacing:809.757182pt;}
._46{margin-left:-235.833077pt;}
._4f{margin-left:-229.442945pt;}
._36{margin-left:-194.779338pt;}
._2c{margin-left:-175.357780pt;}
._40{margin-left:-172.577988pt;}
._41{margin-left:-170.156280pt;}
._55{margin-left:-166.250973pt;}
._30{margin-left:-163.275879pt;}
._48{margin-left:-161.807274pt;}
._3a{margin-left:-150.458394pt;}
._3c{margin-left:-149.539395pt;}
._31{margin-left:-141.267916pt;}
._35{margin-left:-140.246806pt;}
._32{margin-left:-139.026717pt;}
._4a{margin-left:-132.184215pt;}
._26{margin-left:-126.362379pt;}
._2d{margin-left:-116.380833pt;}
._59{margin-left:-115.258299pt;}
._3e{margin-left:-114.108064pt;}
._54{margin-left:-113.199108pt;}
._38{margin-left:-107.625538pt;}
._50{margin-left:-106.260859pt;}
._3f{margin-left:-104.806805pt;}
._2e{margin-left:-101.514940pt;}
._2f{margin-left:-99.705385pt;}
._39{margin-left:-94.572681pt;}
._47{margin-left:-93.188291pt;}
._2b{margin-left:-87.459105pt;}
._45{margin-left:-86.441353pt;}
._25{margin-left:-80.788476pt;}
._3d{margin-left:-79.845764pt;}
._56{margin-left:-78.552653pt;}
._27{margin-left:-73.336157pt;}
._37{margin-left:-72.337867pt;}
._28{margin-left:-70.774706pt;}
._4c{margin-left:-69.393223pt;}
._58{margin-left:-68.367262pt;}
._52{margin-left:-67.472739pt;}
._51{margin-left:-65.254368pt;}
._4b{margin-left:-61.131320pt;}
._34{margin-left:-47.622123pt;}
._57{margin-left:-46.413258pt;}
._33{margin-left:-41.658609pt;}
._68{margin-left:-24.832000pt;}
._19{margin-left:-23.648000pt;}
._62{margin-left:-21.824000pt;}
._5{margin-left:-20.917333pt;}
._63{margin-left:-17.856000pt;}
._22{margin-left:-14.293333pt;}
._21{margin-left:-13.226667pt;}
._53{margin-left:-8.320000pt;}
._61{margin-left:-7.040000pt;}
._49{margin-left:-5.331334pt;}
._5f{margin-left:-3.504026pt;}
._4{margin-left:-2.240000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.906667pt;}
._2{width:2.090667pt;}
._b{width:3.413333pt;}
._8{width:4.416000pt;}
._9{width:5.568000pt;}
._7{width:7.146667pt;}
._11{width:8.085333pt;}
._10{width:9.600000pt;}
._e{width:10.496000pt;}
._f{width:11.392000pt;}
._12{width:12.800000pt;}
._23{width:13.696000pt;}
._a{width:14.592000pt;}
._17{width:16.896000pt;}
._1e{width:17.792000pt;}
._1c{width:18.688000pt;}
._d{width:19.584000pt;}
._c{width:20.736000pt;}
._5c{width:22.208000pt;}
._5b{width:23.104000pt;}
._5e{width:24.064000pt;}
._5d{width:24.960000pt;}
._1b{width:26.794667pt;}
._1a{width:27.712000pt;}
._6{width:28.800000pt;}
._60{width:29.888000pt;}
._1d{width:31.466667pt;}
._65{width:33.605359pt;}
._64{width:34.560000pt;}
._67{width:35.882667pt;}
._16{width:37.482667pt;}
._3{width:39.040000pt;}
._66{width:40.192000pt;}
._1f{width:85.536000pt;}
._29{width:100.152281pt;}
._14{width:108.608000pt;}
._18{width:109.557333pt;}
._5a{width:157.600000pt;}
._24{width:168.385791pt;}
._15{width:172.202667pt;}
._13{width:173.152000pt;}
._20{width:176.000000pt;}
._2a{width:377.112370pt;}
._42{width:387.405410pt;}
._4d{width:393.718536pt;}
._4e{width:417.028456pt;}
._44{width:442.418452pt;}
._43{width:500.192000pt;}
._3b{width:580.222389pt;}
.fs11{font-size:33.825920pt;}
.fs17{font-size:34.652481pt;}
.fs18{font-size:35.885132pt;}
.fs4{font-size:42.880000pt;}
.fs13{font-size:43.786842pt;}
.fs16{font-size:49.996753pt;}
.fs15{font-size:51.775227pt;}
.fs14{font-size:51.907645pt;}
.fs5{font-size:53.120000pt;}
.fsa{font-size:53.465334pt;}
.fs7{font-size:53.838389pt;}
.fsf{font-size:55.545433pt;}
.fs10{font-size:58.053031pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.232942pt;}
.fs8{font-size:64.681127pt;}
.fsd{font-size:65.509429pt;}
.fse{font-size:67.461249pt;}
.fsb{font-size:67.985357pt;}
.fs1{font-size:74.880000pt;}
.fsc{font-size:85.517986pt;}
.fs6{font-size:86.243217pt;}
.fs12{font-size:86.963537pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:3.040000pt;}
.y2b{bottom:3.520000pt;}
.y109{bottom:4.000000pt;}
.yf1{bottom:4.719324pt;}
.ye5{bottom:4.857893pt;}
.yde{bottom:5.998364pt;}
.y7f{bottom:6.080000pt;}
.ybe{bottom:6.310654pt;}
.yaf{bottom:6.538418pt;}
.yb6{bottom:6.619858pt;}
.y137{bottom:6.880000pt;}
.y150{bottom:7.249856pt;}
.y87{bottom:7.994667pt;}
.y80{bottom:8.000000pt;}
.yae{bottom:10.333891pt;}
.yb7{bottom:10.388904pt;}
.yb5{bottom:13.208061pt;}
.yea{bottom:16.192977pt;}
.ye0{bottom:16.899613pt;}
.y151{bottom:18.869488pt;}
.yb0{bottom:20.413037pt;}
.ye8{bottom:22.100997pt;}
.y114{bottom:24.000000pt;}
.y108{bottom:24.040000pt;}
.ydf{bottom:25.664542pt;}
.yeb{bottom:32.596221pt;}
.ye6{bottom:35.954451pt;}
.ye7{bottom:36.644465pt;}
.ye9{bottom:42.431642pt;}
.yec{bottom:50.677976pt;}
.yfe{bottom:70.272000pt;}
.y1b0{bottom:76.192000pt;}
.y51{bottom:78.112000pt;}
.y89{bottom:79.072000pt;}
.ya7{bottom:87.712000pt;}
.y167{bottom:92.192000pt;}
.y149{bottom:92.923953pt;}
.yfd{bottom:92.992000pt;}
.y111{bottom:95.712000pt;}
.y1a2{bottom:96.352000pt;}
.y1af{bottom:98.912000pt;}
.y50{bottom:100.832000pt;}
.y88{bottom:103.072000pt;}
.y25{bottom:104.832000pt;}
.y136{bottom:105.312000pt;}
.ya6{bottom:110.432000pt;}
.y166{bottom:114.912000pt;}
.yfc{bottom:115.712000pt;}
.y110{bottom:116.192000pt;}
.y1a1{bottom:119.072000pt;}
.y1ae{bottom:121.632000pt;}
.yd0{bottom:122.112000pt;}
.y4f{bottom:123.552000pt;}
.y153{bottom:126.392467pt;}
.y86{bottom:127.072000pt;}
.y24{bottom:127.552000pt;}
.y14a{bottom:127.782850pt;}
.y135{bottom:128.032000pt;}
.ya5{bottom:133.152000pt;}
.y183{bottom:133.786667pt;}
.y74{bottom:135.066667pt;}
.y165{bottom:137.626667pt;}
.yfb{bottom:138.426667pt;}
.y10f{bottom:140.186667pt;}
.y1a0{bottom:141.786667pt;}
.y1ad{bottom:144.346667pt;}
.ycf{bottom:144.826667pt;}
.y4e{bottom:146.266667pt;}
.y23{bottom:150.266667pt;}
.y152{bottom:150.426236pt;}
.y134{bottom:150.746667pt;}
.y85{bottom:151.066667pt;}
.ya4{bottom:155.866667pt;}
.y182{bottom:156.506667pt;}
.y73{bottom:157.786667pt;}
.y164{bottom:160.346667pt;}
.yfa{bottom:161.146667pt;}
.y14b{bottom:162.608643pt;}
.y10e{bottom:164.186667pt;}
.y19f{bottom:164.506667pt;}
.y1ac{bottom:167.066667pt;}
.yce{bottom:167.546667pt;}
.y4d{bottom:168.986667pt;}
.y22{bottom:172.986667pt;}
.y133{bottom:173.466667pt;}
.y84{bottom:175.066667pt;}
.y181{bottom:179.226667pt;}
.y72{bottom:180.506667pt;}
.y163{bottom:183.066667pt;}
.yf9{bottom:183.866667pt;}
.y19e{bottom:187.226667pt;}
.y10d{bottom:188.186667pt;}
.y1ab{bottom:189.786667pt;}
.ycd{bottom:190.266667pt;}
.y4c{bottom:191.706667pt;}
.y155{bottom:194.266667pt;}
.ya3{bottom:194.586667pt;}
.y21{bottom:195.706667pt;}
.y132{bottom:196.186667pt;}
.y14c{bottom:197.460918pt;}
.y83{bottom:199.066667pt;}
.y180{bottom:201.946667pt;}
.y71{bottom:203.226667pt;}
.y162{bottom:205.786667pt;}
.yf8{bottom:206.586667pt;}
.y19d{bottom:209.946667pt;}
.y10c{bottom:212.186667pt;}
.y1aa{bottom:212.506667pt;}
.ycc{bottom:212.986667pt;}
.y4b{bottom:214.426667pt;}
.y20{bottom:218.426667pt;}
.y131{bottom:218.906667pt;}
.y82{bottom:223.066667pt;}
.y17f{bottom:224.666667pt;}
.y70{bottom:225.946667pt;}
.y161{bottom:228.506667pt;}
.yf7{bottom:229.306667pt;}
.y154{bottom:229.466667pt;}
.y148{bottom:231.479595pt;}
.y14d{bottom:232.286711pt;}
.y19c{bottom:232.666667pt;}
.ya2{bottom:232.986667pt;}
.y1a9{bottom:235.226667pt;}
.ycb{bottom:235.706667pt;}
.y10b{bottom:236.186667pt;}
.y4a{bottom:237.146667pt;}
.y1f{bottom:241.146667pt;}
.y130{bottom:241.626667pt;}
.y17e{bottom:247.386667pt;}
.y81{bottom:248.026667pt;}
.y6f{bottom:248.666667pt;}
.y160{bottom:251.226667pt;}
.yf6{bottom:252.026667pt;}
.ya1{bottom:252.186667pt;}
.y19b{bottom:255.386667pt;}
.y1a8{bottom:257.946667pt;}
.y49{bottom:259.866667pt;}
.y10a{bottom:260.186667pt;}
.y1e{bottom:263.866667pt;}
.y12f{bottom:264.346667pt;}
.yca{bottom:266.426667pt;}
.y14e{bottom:267.152228pt;}
.y17d{bottom:270.106667pt;}
.y6e{bottom:271.386667pt;}
.y7e{bottom:272.026667pt;}
.y15f{bottom:273.946667pt;}
.yf5{bottom:274.746667pt;}
.y19a{bottom:278.106667pt;}
.y1a7{bottom:280.666667pt;}
.y48{bottom:282.586667pt;}
.y107{bottom:285.146667pt;}
.y1d{bottom:286.586667pt;}
.y12e{bottom:287.066667pt;}
.y17c{bottom:292.826667pt;}
.y6d{bottom:294.106667pt;}
.y15e{bottom:296.666667pt;}
.yc9{bottom:297.146667pt;}
.yf4{bottom:297.466667pt;}
.y199{bottom:300.826667pt;}
.y1a6{bottom:303.426667pt;}
.y47{bottom:305.346667pt;}
.y7d{bottom:309.186667pt;}
.y1c{bottom:309.346667pt;}
.y12d{bottom:309.826667pt;}
.y14f{bottom:313.909465pt;}
.y17b{bottom:315.586667pt;}
.y6c{bottom:316.866667pt;}
.y15d{bottom:319.426667pt;}
.yc8{bottom:319.906667pt;}
.yf3{bottom:320.226667pt;}
.y198{bottom:323.586667pt;}
.y106{bottom:325.186667pt;}
.y1a5{bottom:326.146667pt;}
.y46{bottom:328.066667pt;}
.y7c{bottom:331.906667pt;}
.y1b{bottom:332.066667pt;}
.y12c{bottom:332.546667pt;}
.y17a{bottom:338.306667pt;}
.y6b{bottom:339.586667pt;}
.y15c{bottom:342.146667pt;}
.yc7{bottom:342.626667pt;}
.y197{bottom:346.306667pt;}
.y1a4{bottom:348.866667pt;}
.y45{bottom:350.786667pt;}
.y1a{bottom:354.786667pt;}
.y12b{bottom:355.266667pt;}
.yf2{bottom:358.946667pt;}
.y179{bottom:361.026667pt;}
.y6a{bottom:362.306667pt;}
.y15b{bottom:364.866667pt;}
.yc6{bottom:365.346667pt;}
.y196{bottom:369.026667pt;}
.y7b{bottom:370.626667pt;}
.y44{bottom:373.506667pt;}
.y19{bottom:377.506667pt;}
.yf0{bottom:377.826667pt;}
.y12a{bottom:377.986667pt;}
.yef{bottom:383.106667pt;}
.y178{bottom:383.746667pt;}
.y69{bottom:385.026667pt;}
.yc5{bottom:385.986667pt;}
.y1a3{bottom:387.266667pt;}
.y15a{bottom:387.586667pt;}
.yc4{bottom:388.066667pt;}
.y195{bottom:391.746667pt;}
.y7a{bottom:393.346667pt;}
.y43{bottom:396.226667pt;}
.y18{bottom:400.226667pt;}
.y129{bottom:400.706667pt;}
.yee{bottom:404.386667pt;}
.y177{bottom:406.466667pt;}
.y9e{bottom:407.746667pt;}
.yc3{bottom:408.706667pt;}
.y159{bottom:410.306667pt;}
.yc2{bottom:410.786667pt;}
.y194{bottom:414.466667pt;}
.y79{bottom:416.066667pt;}
.y42{bottom:418.946667pt;}
.y17{bottom:422.946667pt;}
.y128{bottom:423.426667pt;}
.y68{bottom:423.746667pt;}
.yed{bottom:427.106667pt;}
.y176{bottom:429.186667pt;}
.y9d{bottom:430.466667pt;}
.y158{bottom:433.026667pt;}
.yc1{bottom:433.506667pt;}
.y193{bottom:437.186667pt;}
.y78{bottom:438.786667pt;}
.y41{bottom:441.666667pt;}
.y16{bottom:445.666667pt;}
.ye4{bottom:446.026667pt;}
.y127{bottom:446.146667pt;}
.y105{bottom:446.466667pt;}
.y175{bottom:451.906667pt;}
.y9c{bottom:453.186667pt;}
.y157{bottom:455.746667pt;}
.yc0{bottom:456.226667pt;}
.y192{bottom:459.906667pt;}
.y77{bottom:461.506667pt;}
.y67{bottom:462.146667pt;}
.ye3{bottom:463.266667pt;}
.y40{bottom:464.386667pt;}
.y15{bottom:468.386667pt;}
.y126{bottom:468.866667pt;}
.y104{bottom:469.186667pt;}
.y174{bottom:474.626667pt;}
.ybd{bottom:475.093333pt;}
.y9b{bottom:475.906667pt;}
.y156{bottom:478.466667pt;}
.ybf{bottom:481.826667pt;}
.y191{bottom:482.626667pt;}
.y76{bottom:484.226667pt;}
.y3f{bottom:487.106667pt;}
.y14{bottom:491.106667pt;}
.y125{bottom:491.586667pt;}
.y103{bottom:491.906667pt;}
.y173{bottom:497.346667pt;}
.y9a{bottom:498.626667pt;}
.y66{bottom:501.186667pt;}
.ybc{bottom:501.666667pt;}
.y190{bottom:505.346667pt;}
.y3e{bottom:509.826667pt;}
.ye2{bottom:513.186667pt;}
.y13{bottom:513.826667pt;}
.y124{bottom:514.306667pt;}
.y102{bottom:514.626667pt;}
.y75{bottom:519.106667pt;}
.y172{bottom:520.066667pt;}
.ybb{bottom:520.560000pt;}
.y99{bottom:521.346667pt;}
.y65{bottom:523.906667pt;}
.y18f{bottom:528.066667pt;}
.ydd{bottom:532.093333pt;}
.y3d{bottom:532.546667pt;}
.yba{bottom:533.826667pt;}
.y123{bottom:537.053333pt;}
.y101{bottom:537.373333pt;}
.y147{bottom:538.333333pt;}
.y171{bottom:542.813333pt;}
.y98{bottom:544.093333pt;}
.y64{bottom:546.653333pt;}
.y18e{bottom:550.813333pt;}
.ye1{bottom:552.093333pt;}
.y12{bottom:554.813333pt;}
.y3c{bottom:555.293333pt;}
.y122{bottom:559.773333pt;}
.y100{bottom:560.093333pt;}
.yb9{bottom:563.293333pt;}
.y170{bottom:565.533333pt;}
.y97{bottom:566.813333pt;}
.y63{bottom:569.373333pt;}
.y18d{bottom:573.533333pt;}
.yb8{bottom:576.573333pt;}
.y146{bottom:577.053333pt;}
.y11{bottom:577.533333pt;}
.y3b{bottom:578.013333pt;}
.y121{bottom:582.493333pt;}
.ydc{bottom:582.813333pt;}
.y16f{bottom:588.253333pt;}
.y96{bottom:589.533333pt;}
.ya0{bottom:590.173333pt;}
.y62{bottom:592.093333pt;}
.y18c{bottom:596.253333pt;}
.y145{bottom:599.773333pt;}
.y10{bottom:600.253333pt;}
.yb4{bottom:600.560000pt;}
.y3a{bottom:600.733333pt;}
.y120{bottom:605.213333pt;}
.ydb{bottom:605.533333pt;}
.y9f{bottom:609.373333pt;}
.y16e{bottom:610.973333pt;}
.y95{bottom:612.253333pt;}
.yb3{bottom:613.853333pt;}
.y61{bottom:614.813333pt;}
.y18b{bottom:618.973333pt;}
.y144{bottom:622.493333pt;}
.y39{bottom:623.453333pt;}
.y11f{bottom:627.933333pt;}
.yda{bottom:628.253333pt;}
.y16d{bottom:633.693333pt;}
.y94{bottom:634.973333pt;}
.y60{bottom:637.533333pt;}
.yb2{bottom:637.826667pt;}
.yf{bottom:638.973333pt;}
.y18a{bottom:641.693333pt;}
.y143{bottom:645.213333pt;}
.y38{bottom:646.173333pt;}
.y11e{bottom:650.653333pt;}
.yd9{bottom:650.973333pt;}
.yb1{bottom:651.133333pt;}
.y16c{bottom:656.413333pt;}
.y93{bottom:657.693333pt;}
.y5f{bottom:660.253333pt;}
.ye{bottom:661.693333pt;}
.y189{bottom:664.413333pt;}
.y142{bottom:667.933333pt;}
.y37{bottom:668.893333pt;}
.y11d{bottom:673.373333pt;}
.yd8{bottom:673.693333pt;}
.y16b{bottom:679.133333pt;}
.yad{bottom:680.560000pt;}
.y5e{bottom:682.973333pt;}
.y188{bottom:687.133333pt;}
.y141{bottom:690.653333pt;}
.y36{bottom:691.613333pt;}
.yac{bottom:693.853333pt;}
.y11c{bottom:696.093333pt;}
.y92{bottom:696.413333pt;}
.yd{bottom:700.413333pt;}
.y16a{bottom:701.853333pt;}
.y5d{bottom:705.693333pt;}
.y187{bottom:709.853333pt;}
.yff{bottom:712.093333pt;}
.y140{bottom:713.373333pt;}
.y35{bottom:714.333333pt;}
.yd7{bottom:719.133333pt;}
.yab{bottom:727.133333pt;}
.y5c{bottom:728.413333pt;}
.yc{bottom:730.493333pt;}
.y11b{bottom:732.253333pt;}
.y91{bottom:735.133333pt;}
.y13f{bottom:736.093333pt;}
.y34{bottom:737.053333pt;}
.y169{bottom:740.253333pt;}
.yd6{bottom:741.853333pt;}
.y186{bottom:748.253333pt;}
.yaa{bottom:749.853333pt;}
.y5b{bottom:751.133333pt;}
.yb{bottom:753.213333pt;}
.y11a{bottom:756.253333pt;}
.y90{bottom:757.853333pt;}
.y33{bottom:759.773333pt;}
.yd5{bottom:764.573333pt;}
.y13e{bottom:772.293333pt;}
.y5a{bottom:773.893333pt;}
.y119{bottom:780.293333pt;}
.y8f{bottom:780.613333pt;}
.y32{bottom:782.533333pt;}
.ya{bottom:784.293333pt;}
.y185{bottom:787.013333pt;}
.yd4{bottom:787.333333pt;}
.y13d{bottom:796.293333pt;}
.y59{bottom:796.613333pt;}
.y8e{bottom:803.333333pt;}
.y118{bottom:804.293333pt;}
.yd3{bottom:810.053333pt;}
.y58{bottom:819.333333pt;}
.y13c{bottom:820.293333pt;}
.y31{bottom:820.933333pt;}
.y9{bottom:824.773333pt;}
.y184{bottom:825.733333pt;}
.y8d{bottom:826.053333pt;}
.y117{bottom:828.293333pt;}
.yd2{bottom:832.773333pt;}
.y57{bottom:842.053333pt;}
.y13b{bottom:844.293333pt;}
.y8c{bottom:848.773333pt;}
.y116{bottom:852.293333pt;}
.y8{bottom:852.933333pt;}
.yd1{bottom:855.493333pt;}
.y56{bottom:864.773333pt;}
.y13a{bottom:868.293333pt;}
.y168{bottom:871.173333pt;}
.y8b{bottom:871.493333pt;}
.y115{bottom:876.293333pt;}
.ya9{bottom:879.493333pt;}
.y7{bottom:881.093333pt;}
.y55{bottom:887.493333pt;}
.y139{bottom:892.293333pt;}
.y30{bottom:894.213333pt;}
.y113{bottom:901.253333pt;}
.ya8{bottom:902.213333pt;}
.y54{bottom:910.213333pt;}
.y6{bottom:915.813333pt;}
.y138{bottom:916.293333pt;}
.y2f{bottom:916.933333pt;}
.y53{bottom:932.933333pt;}
.y5{bottom:934.693333pt;}
.y2e{bottom:939.653333pt;}
.y112{bottom:941.253333pt;}
.y4{bottom:953.253333pt;}
.y52{bottom:955.653333pt;}
.y8a{bottom:962.373333pt;}
.y3{bottom:977.093333pt;}
.y2d{bottom:978.373333pt;}
.y2c{bottom:1001.093333pt;}
.y26{bottom:1011.200000pt;}
.y2{bottom:1011.360000pt;}
.y29{bottom:1023.840000pt;}
.y1{bottom:1037.120000pt;}
.y2a{bottom:1042.400000pt;}
.y28{bottom:1046.560000pt;}
.h2d{height:15.665809pt;}
.h9{height:15.680000pt;}
.h1b{height:21.333238pt;}
.hb{height:22.720000pt;}
.hd{height:24.000000pt;}
.h31{height:24.032000pt;}
.h29{height:25.055626pt;}
.h15{height:29.266297pt;}
.h2b{height:33.181774pt;}
.h26{height:33.198291pt;}
.h10{height:34.733781pt;}
.h37{height:34.759584pt;}
.h20{height:38.866571pt;}
.h34{height:39.261195pt;}
.h33{height:39.361608pt;}
.h30{height:40.000000pt;}
.h2f{height:40.032000pt;}
.h25{height:40.308306pt;}
.h36{height:41.536672pt;}
.h8{height:42.084375pt;}
.h2e{height:42.953011pt;}
.h27{height:43.001195pt;}
.h38{height:43.146626pt;}
.h1d{height:49.970075pt;}
.h19{height:50.358294pt;}
.h13{height:52.839434pt;}
.ha{height:53.535000pt;}
.h21{height:54.487683pt;}
.h22{height:54.514805pt;}
.h2a{height:56.947529pt;}
.h24{height:56.975875pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h17{height:62.835971pt;}
.h18{height:63.009756pt;}
.h16{height:63.041120pt;}
.h23{height:63.332666pt;}
.h1a{height:63.345110pt;}
.h11{height:63.882305pt;}
.h1c{height:64.293922pt;}
.h28{height:64.415862pt;}
.h2{height:64.500000pt;}
.hf{height:65.781915pt;}
.h1e{height:71.101250pt;}
.h1f{height:71.132500pt;}
.hc{height:71.524375pt;}
.he{height:71.631042pt;}
.h3{height:73.490625pt;}
.h2c{height:74.084751pt;}
.h12{height:90.019222pt;}
.h7{height:96.750000pt;}
.h14{height:108.337908pt;}
.h4{height:125.562500pt;}
.h3a{height:140.031465pt;}
.h39{height:163.866608pt;}
.h35{height:192.667406pt;}
.h32{height:286.021716pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w15{width:11.999997pt;}
.w3{width:24.000000pt;}
.wc{width:58.080000pt;}
.wb{width:58.400000pt;}
.w9{width:58.560000pt;}
.w8{width:58.592000pt;}
.w24{width:70.560000pt;}
.w1a{width:71.200000pt;}
.w1d{width:71.232000pt;}
.w1c{width:71.360000pt;}
.w1b{width:71.392000pt;}
.w23{width:71.520000pt;}
.w22{width:71.552000pt;}
.wa{width:79.072000pt;}
.w2a{width:80.557428pt;}
.w7{width:85.440000pt;}
.w28{width:92.065632pt;}
.w2{width:105.760000pt;}
.wd{width:108.000217pt;}
.w13{width:132.335253pt;}
.w12{width:141.268104pt;}
.w21{width:141.946667pt;}
.w19{width:142.426667pt;}
.w18{width:142.560000pt;}
.w17{width:142.586667pt;}
.w20{width:142.880000pt;}
.w1f{width:142.906667pt;}
.w14{width:145.404193pt;}
.w29{width:148.647635pt;}
.we{width:162.530386pt;}
.w26{width:171.706667pt;}
.w11{width:187.999265pt;}
.w6{width:195.546667pt;}
.w10{width:197.269670pt;}
.w5{width:202.586667pt;}
.w25{width:211.706667pt;}
.w1e{width:219.266667pt;}
.w16{width:223.586667pt;}
.w4{width:254.946667pt;}
.wf{width:289.273340pt;}
.w27{width:460.328160pt;}
.w1{width:794.000000pt;}
.w0{width:794.240000pt;}
.x0{left:0.000000pt;}
.x27{left:2.323673pt;}
.x47{left:3.606056pt;}
.x9{left:6.560000pt;}
.x63{left:8.375415pt;}
.x4d{left:13.760000pt;}
.x17{left:15.200000pt;}
.x14{left:16.320000pt;}
.x52{left:17.600000pt;}
.x28{left:18.818599pt;}
.x4e{left:19.840000pt;}
.x12{left:21.600000pt;}
.x1e{left:22.880000pt;}
.x16{left:24.160000pt;}
.x1f{left:31.360000pt;}
.x1b{left:35.840000pt;}
.x60{left:40.438550pt;}
.x1a{left:42.240000pt;}
.x1d{left:43.840000pt;}
.x4b{left:47.200000pt;}
.x1c{left:50.240000pt;}
.x11{left:54.560000pt;}
.xf{left:58.080000pt;}
.x29{left:64.145983pt;}
.x1{left:66.240000pt;}
.x5d{left:67.840000pt;}
.x46{left:69.068191pt;}
.xc{left:70.560000pt;}
.x44{left:72.074651pt;}
.x53{left:73.760000pt;}
.x40{left:76.242425pt;}
.x3f{left:83.954126pt;}
.x6{left:85.440000pt;}
.x24{left:90.272000pt;}
.x3e{left:91.574649pt;}
.xb{left:93.952000pt;}
.x66{left:96.992000pt;}
.x42{left:101.131496pt;}
.x7{left:103.712000pt;}
.x43{left:104.704216pt;}
.x3a{left:108.805120pt;}
.x3d{left:110.300837pt;}
.x3c{left:113.546667pt;}
.x45{left:116.850025pt;}
.x5a{left:119.552000pt;}
.x34{left:121.440676pt;}
.x48{left:125.472000pt;}
.xd{left:127.386667pt;}
.x2d{left:128.783274pt;}
.x41{left:134.354914pt;}
.x25{left:138.266667pt;}
.x33{left:142.013333pt;}
.x36{left:150.906667pt;}
.x37{left:162.426667pt;}
.x5f{left:166.505684pt;}
.x38{left:172.026667pt;}
.x61{left:180.890939pt;}
.x5e{left:185.626667pt;}
.x21{left:219.226667pt;}
.x2e{left:259.088411pt;}
.x2c{left:281.265635pt;}
.x35{left:283.266667pt;}
.x39{left:284.546667pt;}
.x54{left:293.026667pt;}
.x49{left:295.106667pt;}
.x62{left:304.604132pt;}
.xe{left:325.506667pt;}
.x5b{left:331.266667pt;}
.x26{left:348.413333pt;}
.x30{left:349.546667pt;}
.x57{left:364.386667pt;}
.x4f{left:366.306667pt;}
.x23{left:388.226667pt;}
.x13{left:410.946667pt;}
.x3b{left:416.866667pt;}
.x55{left:435.933333pt;}
.x4a{left:437.693333pt;}
.x2a{left:456.413333pt;}
.x15{left:469.533333pt;}
.x5{left:478.493333pt;}
.x5c{left:502.973333pt;}
.x58{left:507.133333pt;}
.x50{left:508.893333pt;}
.x2b{left:510.973333pt;}
.x3{left:515.293333pt;}
.x10{left:528.093333pt;}
.x32{left:536.413333pt;}
.x64{left:541.481331pt;}
.x31{left:546.813333pt;}
.x22{left:561.213333pt;}
.x56{left:578.653333pt;}
.x4c{left:580.253333pt;}
.x18{left:607.173333pt;}
.x4{left:619.013333pt;}
.x8{left:622.213333pt;}
.x65{left:628.773333pt;}
.x2f{left:637.733333pt;}
.x59{left:650.053333pt;}
.x51{left:651.493333pt;}
.x19{left:665.573333pt;}
.xa{left:704.133333pt;}
.x20{left:724.453333pt;}
.x2{left:727.973333pt;}
}




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