
    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_94f364a48f5f1a0533298e27.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.759766;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_3f292929393a2360aed4f602.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202000;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_4c9607b03f9fbe407c1dc5d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095215;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_8ec8b11d83a96d0283c0fccf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.805000;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_a5f83d2a798a327ec44cb74b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.069000;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_c1ada9ccf27de1d2c82e7425.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_012e64a7b855852e26042e16.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_64faad9e78c6a20f4b618631.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_e04f7398b35b5ef59538791c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904785;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;}
.m1{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,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);}
.v6{vertical-align:-190.080475px;}
.v1{vertical-align:-71.297297px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.952109px;}
.v4{vertical-align:25.833463px;}
.v5{vertical-align:120.201909px;}
.v3{vertical-align:157.697248px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.029294px;}
.ls15{letter-spacing:0.462964px;}
.ls12{letter-spacing:1.007997px;}
.lsc{letter-spacing:18.356868px;}
.lsb{letter-spacing:18.367069px;}
.ls1{letter-spacing:53.942546px;}
.ls3{letter-spacing:57.194254px;}
.lsd{letter-spacing:72.336386px;}
.lsf{letter-spacing:72.343892px;}
.ls6{letter-spacing:72.361844px;}
.ls8{letter-spacing:72.376267px;}
.ls9{letter-spacing:72.381627px;}
.ls7{letter-spacing:72.383271px;}
.ls11{letter-spacing:72.384388px;}
.ls10{letter-spacing:72.385502px;}
.lsa{letter-spacing:72.388444px;}
.ls2{letter-spacing:88.486719px;}
.lse{letter-spacing:90.392497px;}
.ls5{letter-spacing:93.161466px;}
.ls4{letter-spacing:118.442100px;}
.ls13{letter-spacing:188.852522px;}
.ls14{letter-spacing:1251.909001px;}
.sc_{text-shadow:none;}
.sc8{text-shadow:-0.015em 0 rgb(185,218,143),0 0.015em rgb(185,218,143),0.015em 0 rgb(185,218,143),0 -0.015em  rgb(185,218,143);}
.sc7{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc9{text-shadow:-0.015em 0 rgb(209,230,181),0 0.015em rgb(209,230,181),0.015em 0 rgb(209,230,181),0 -0.015em  rgb(209,230,181);}
.sc6{text-shadow:-0.015em 0 rgb(202,228,246),0 0.015em rgb(202,228,246),0.015em 0 rgb(202,228,246),0 -0.015em  rgb(202,228,246);}
.sc5{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc4{text-shadow:-0.015em 0 rgb(105,147,49),0 0.015em rgb(105,147,49),0.015em 0 rgb(105,147,49),0 -0.015em  rgb(105,147,49);}
.sc3{text-shadow:-0.015em 0 rgb(34,42,53),0 0.015em rgb(34,42,53),0.015em 0 rgb(34,42,53),0 -0.015em  rgb(34,42,53);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sca{text-shadow:-0.015em 0 rgb(14,77,60),0 0.015em rgb(14,77,60),0.015em 0 rgb(14,77,60),0 -0.015em  rgb(14,77,60);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(22,116,90),0 0.015em rgb(22,116,90),0.015em 0 rgb(22,116,90),0 -0.015em  rgb(22,116,90);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc8{-webkit-text-stroke:0.015em rgb(185,218,143);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc9{-webkit-text-stroke:0.015em rgb(209,230,181);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(202,228,246);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(105,147,49);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(34,42,53);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sca{-webkit-text-stroke:0.015em rgb(14,77,60);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(22,116,90);text-shadow:none;}
}
.ws16{word-spacing:-256.763298px;}
.ws10{word-spacing:-184.878730px;}
.ws29{word-spacing:-168.480272px;}
.ws28{word-spacing:-140.400227px;}
.ws1c{word-spacing:-139.052113px;}
.ws1{word-spacing:-130.515880px;}
.ws20{word-spacing:-127.119161px;}
.ws6{word-spacing:-125.124405px;}
.ws3{word-spacing:-107.280000px;}
.ws2c{word-spacing:-107.153205px;}
.ws33{word-spacing:-105.131460px;}
.ws2b{word-spacing:-87.609512px;}
.ws14{word-spacing:-69.839584px;}
.ws1d{word-spacing:-67.841307px;}
.ws8{word-spacing:-63.524160px;}
.wsa{word-spacing:-63.360367px;}
.wsc{word-spacing:-52.565845px;}
.ws15{word-spacing:-48.887709px;}
.wsd{word-spacing:-48.072873px;}
.wsb{word-spacing:-47.520275px;}
.ws22{word-spacing:-42.795369px;}
.ws12{word-spacing:-39.311898px;}
.ws18{word-spacing:-38.469600px;}
.ws25{word-spacing:-34.822017px;}
.ws2{word-spacing:-29.394720px;}
.ws1a{word-spacing:-23.081760px;}
.ws32{word-spacing:-22.129836px;}
.wse{word-spacing:-21.898080px;}
.ws1b{word-spacing:-19.136160px;}
.ws7{word-spacing:-17.755200px;}
.ws2d{word-spacing:-15.783746px;}
.ws31{word-spacing:-14.319443px;}
.ws11{word-spacing:-3.369605px;}
.ws13{word-spacing:-2.350089px;}
.ws27{word-spacing:-2.157116px;}
.ws5{word-spacing:-1.604159px;}
.ws2f{word-spacing:-1.330568px;}
.ws24{word-spacing:-0.842401px;}
.ws26{word-spacing:-0.168480px;}
.ws30{word-spacing:-0.139679px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.388800px;}
.ws23{word-spacing:0.770399px;}
.ws2e{word-spacing:1.762553px;}
.wsf{word-spacing:2.406239px;}
.ws21{word-spacing:10.559076px;}
.ws4{word-spacing:118.707769px;}
.ws1e{word-spacing:143.161241px;}
.ws1f{word-spacing:180.759866px;}
.ws17{word-spacing:488.254898px;}
.ws19{word-spacing:845.432594px;}
.ws2a{word-spacing:1023.239948px;}
._2e{margin-left:-2256.327887px;}
._2d{margin-left:-2227.325731px;}
._2c{margin-left:-2179.149552px;}
._22{margin-left:-2177.490730px;}
._21{margin-left:-2148.206789px;}
._25{margin-left:-2119.518795px;}
._24{margin-left:-2089.144402px;}
._20{margin-left:-2059.759958px;}
._1d{margin-left:-2041.164745px;}
._1e{margin-left:-2039.469918px;}
._1f{margin-left:-2030.082016px;}
._28{margin-left:-2020.286134px;}
._37{margin-left:-2019.253713px;}
._1c{margin-left:-2009.902388px;}
._27{margin-left:-1990.461103px;}
._35{margin-left:-1980.612361px;}
._34{margin-left:-1950.840095px;}
._2b{margin-left:-1921.376888px;}
._32{margin-left:-1902.466364px;}
._2a{margin-left:-1891.900782px;}
._13{margin-left:-1883.442572px;}
._1b{margin-left:-1880.935544px;}
._31{margin-left:-1871.721153px;}
._11{margin-left:-1852.279774px;}
._19{margin-left:-1784.306383px;}
._c{margin-left:-1762.363596px;}
._17{margin-left:-1753.596475px;}
._d{margin-left:-1664.629940px;}
._80{margin-left:-1196.711481px;}
._2f{margin-left:-1187.464966px;}
._7f{margin-left:-1174.342507px;}
._b{margin-left:-1165.535771px;}
._81{margin-left:-1135.560816px;}
._26{margin-left:-1048.476624px;}
._23{margin-left:-1029.035057px;}
._30{margin-left:-913.733594px;}
._15{margin-left:-870.968231px;}
._f{margin-left:-851.526664px;}
._33{margin-left:-791.459291px;}
._36{margin-left:-756.508218px;}
._16{margin-left:-676.999278px;}
._10{margin-left:-657.128947px;}
._e{margin-left:-604.222418px;}
._29{margin-left:-528.605051px;}
._14{margin-left:-508.425411px;}
._51{margin-left:-189.850456px;}
._7b{margin-left:-12.636020px;}
._83{margin-left:-7.526849px;}
._a{margin-left:-4.116946px;}
._7{margin-left:-2.292475px;}
._0{margin-left:-1.150559px;}
._2{width:1.503361px;}
._3{width:2.509921px;}
._39{width:3.601434px;}
._1{width:4.602237px;}
._86{width:6.258233px;}
._38{width:7.264784px;}
._82{width:11.583379px;}
._84{width:12.672073px;}
._3d{width:15.610320px;}
._3c{width:16.808398px;}
._8{width:19.699200px;}
._5{width:21.928318px;}
._4{width:23.644796px;}
._6{width:25.116479px;}
._85{width:26.323107px;}
._7a{width:28.978607px;}
._7c{width:31.013332px;}
._18{width:34.942953px;}
._1a{width:35.975431px;}
._12{width:37.462946px;}
._79{width:39.005333px;}
._3e{width:55.640133px;}
._7d{width:63.815037px;}
._7e{width:109.200874px;}
._49{width:121.713453px;}
._9{width:122.945676px;}
._48{width:136.860328px;}
._4b{width:137.898017px;}
._47{width:147.069616px;}
._44{width:157.914225px;}
._4a{width:160.313959px;}
._4c{width:162.497676px;}
._3f{width:166.293347px;}
._42{width:168.263383px;}
._43{width:169.766744px;}
._54{width:174.744086px;}
._56{width:176.785154px;}
._57{width:178.181674px;}
._50{width:184.233262px;}
._4f{width:187.778276px;}
._45{width:189.210604px;}
._46{width:192.613552px;}
._41{width:197.625535px;}
._3b{width:211.835657px;}
._61{width:224.729522px;}
._5f{width:228.813945px;}
._40{width:235.761283px;}
._72{width:239.875834px;}
._75{width:242.859092px;}
._60{width:248.393842px;}
._4e{width:258.320458px;}
._5e{width:260.221042px;}
._6e{width:265.495501px;}
._6a{width:268.627927px;}
._6c{width:278.432783px;}
._74{width:282.276890px;}
._76{width:286.999837px;}
._62{width:292.511552px;}
._5a{width:296.815621px;}
._70{width:300.435625px;}
._59{width:310.028103px;}
._5c{width:313.000185px;}
._58{width:322.171784px;}
._55{width:326.213416px;}
._64{width:330.851055px;}
._53{width:333.374475px;}
._5b{width:335.774209px;}
._5d{width:337.599844px;}
._4d{width:342.546074px;}
._52{width:344.868912px;}
._67{width:348.135257px;}
._6f{width:381.643464px;}
._73{width:383.226776px;}
._6d{width:412.730804px;}
._68{width:414.041960px;}
._71{width:486.772177px;}
._65{width:494.230801px;}
._78{width:518.009757px;}
._6b{width:519.591321px;}
._66{width:524.518058px;}
._63{width:530.401375px;}
._77{width:671.044125px;}
._69{width:672.494449px;}
._3a{width:1642.967310px;}
.fc10{color:rgb(37,64,97);}
.fcd{color:rgb(209,230,181);}
.fc0{color:rgb(22,116,90);}
.fc9{color:rgb(22,83,127);}
.fc1{color:rgb(255,255,255);}
.fc3{color:rgb(34,42,53);}
.fc4{color:rgb(242,242,242);}
.fc6{color:rgb(0,0,0);}
.fc8{color:rgb(0,32,96);}
.fc5{color:transparent;}
.fcf{color:rgb(14,77,60);}
.fc2{color:rgb(51,63,80);}
.fc7{color:rgb(105,147,49);}
.fca{color:rgb(202,228,246);}
.fce{color:rgb(104,102,225);}
.fcb{color:rgb(255,0,0);}
.fcc{color:rgb(185,218,143);}
.fs26{font-size:35.808214px;}
.fsd{font-size:52.560000px;}
.fs28{font-size:62.851644px;}
.fs11{font-size:63.360367px;}
.fsf{font-size:64.799538px;}
.fse{font-size:64.800000px;}
.fs1b{font-size:69.839584px;}
.fs22{font-size:69.840000px;}
.fs14{font-size:79.920000px;}
.fsa{font-size:84.240000px;}
.fs19{font-size:84.240136px;}
.fs2{font-size:95.040000px;}
.fs8{font-size:95.759399px;}
.fs9{font-size:95.760000px;}
.fs6{font-size:97.919629px;}
.fs7{font-size:97.920000px;}
.fs18{font-size:97.920366px;}
.fs5{font-size:107.280000px;}
.fs4{font-size:107.280136px;}
.fs1f{font-size:112.320000px;}
.fs16{font-size:125.999674px;}
.fs20{font-size:126.000000px;}
.fs21{font-size:140.400000px;}
.fs17{font-size:140.400227px;}
.fs13{font-size:154.079720px;}
.fs12{font-size:168.480272px;}
.fs29{font-size:189.360042px;}
.fs27{font-size:210.239811px;}
.fs23{font-size:217.440087px;}
.fs25{font-size:231.839902px;}
.fs10{font-size:231.840000px;}
.fs1{font-size:250.560178px;}
.fs1a{font-size:280.799717px;}
.fs2e{font-size:336.959807px;}
.fs2c{font-size:343.439761px;}
.fsc{font-size:401.039760px;}
.fs2a{font-size:403.199990px;}
.fs3{font-size:418.320128px;}
.fs24{font-size:445.679851px;}
.fs1d{font-size:477.360034px;}
.fs1c{font-size:526.319849px;}
.fs0{font-size:575.279663px;}
.fs2b{font-size:586.080078px;}
.fs15{font-size:592.560032px;}
.fs2d{font-size:660.959707px;}
.fsb{font-size:691.199983px;}
.fs1e{font-size:822.959289px;}
.y0{bottom:0.000000px;}
.y102{bottom:4.311949px;}
.yfa{bottom:4.323562px;}
.y72{bottom:17.662301px;}
.y65{bottom:112.680239px;}
.y64{bottom:114.128903px;}
.y89{bottom:138.428644px;}
.y63{bottom:139.322792px;}
.y6b{bottom:145.252814px;}
.yd7{bottom:145.616117px;}
.y49{bottom:154.444123px;}
.y88{bottom:159.485400px;}
.y29{bottom:159.847233px;}
.y62{bottom:168.112727px;}
.y38{bottom:171.545432px;}
.y6a{bottom:171.549247px;}
.y10f{bottom:176.937094px;}
.y111{bottom:177.480563px;}
.ycc{bottom:179.099387px;}
.y87{bottom:180.542156px;}
.yd6{bottom:191.870083px;}
.ye3{bottom:192.775012px;}
.y37{bottom:197.825610px;}
.y10e{bottom:198.714320px;}
.ycb{bottom:199.977706px;}
.y2f{bottom:200.154589px;}
.y9c{bottom:202.854042px;}
.y61{bottom:207.733735px;}
.y110{bottom:211.499055px;}
.y8c{bottom:211.506484px;}
.y28{bottom:212.582891px;}
.y7f{bottom:214.384688px;}
.y10c{bottom:215.097269px;}
.y113{bottom:217.990901px;}
.y10b{bottom:218.700234px;}
.y10d{bottom:220.496362px;}
.yca{bottom:220.860802px;}
.y9b{bottom:223.917500px;}
.y32{bottom:224.101974px;}
.y69{bottom:224.108497px;}
.y2e{bottom:226.445312px;}
.yda{bottom:228.631894px;}
.y18{bottom:232.740441px;}
.y8b{bottom:238.687946px;}
.y7e{bottom:241.552075px;}
.yc9{bottom:241.921330px;}
.y9a{bottom:244.980919px;}
.ye2{bottom:245.342827px;}
.ye{bottom:246.955050px;}
.y15{bottom:246.966684px;}
.y60{bottom:247.323950px;}
.y5f{bottom:250.377620px;}
.y36{bottom:250.559104px;}
.y68{bottom:250.563692px;}
.y48{bottom:257.032814px;}
.yc8{bottom:262.799603px;}
.y2d{bottom:264.954589px;}
.y27{bottom:265.145467px;}
.y17{bottom:266.043473px;}
.y86{bottom:270.004156px;}
.y106{bottom:270.187949px;}
.y99{bottom:271.980433px;}
.y8a{bottom:272.327774px;}
.yd5{bottom:273.230915px;}
.y109{bottom:274.318276px;}
.y7d{bottom:275.220010px;}
.y35{bottom:276.831962px;}
.y67{bottom:276.843011px;}
.y31{bottom:276.847480px;}
.y91{bottom:280.931860px;}
.y47{bottom:283.325432px;}
.yc7{bottom:283.860131px;}
.y14{bottom:284.756054px;}
.yd{bottom:284.759492px;}
.y5e{bottom:287.098728px;}
.y10a{bottom:287.102286px;}
.yd4{bottom:287.997604px;}
.y5d{bottom:290.157732px;}
.y107{bottom:290.702096px;}
.y2c{bottom:291.425432px;}
.y105{bottom:294.303984px;}
.ye1{bottom:295.936282px;}
.y108{bottom:296.100317px;}
.y85{bottom:297.178591px;}
.y16{bottom:299.346541px;}
.y34{bottom:303.114450px;}
.yc6{bottom:304.743227px;}
.y78{bottom:307.090817px;}
.y7c{bottom:308.887946px;}
.y46{bottom:309.601834px;}
.y2b{bottom:317.703166px;}
.y26{bottom:317.886097px;}
.y20{bottom:320.989224px;}
.yc{bottom:322.373297px;}
.y13{bottom:322.384510px;}
.yc5{bottom:325.621546px;}
.y5c{bottom:326.688991px;}
.y103{bottom:328.314195px;}
.y6e{bottom:328.329264px;}
.y30{bottom:329.400207px;}
.y84{bottom:330.846484px;}
.y45{bottom:335.878187px;}
.y5{bottom:337.851372px;}
.y75{bottom:338.231537px;}
.y98{bottom:340.206500px;}
.yb4{bottom:342.901878px;}
.ye0{bottom:344.349637px;}
.y101{bottom:345.779473px;}
.yfe{bottom:345.962216px;}
.yc4{bottom:346.682074px;}
.y4a{bottom:349.872674px;}
.yb3{bottom:354.780418px;}
.yd3{bottom:355.863949px;}
.y77{bottom:358.561462px;}
.y12{bottom:360.173881px;}
.yb{bottom:360.180634px;}
.y97{bottom:361.256766px;}
.y104{bottom:362.884806px;}
.y83{bottom:364.486312px;}
.y5b{bottom:366.309951px;}
.yff{bottom:366.479146px;}
.yb2{bottom:366.658905px;}
.yc3{bottom:367.565170px;}
.yfd{bottom:370.086784px;}
.y2a{bottom:370.265790px;}
.y25{bottom:370.432814px;}
.y4{bottom:371.162902px;}
.y74{bottom:371.871365px;}
.y100{bottom:371.873463px;}
.yb1{bottom:378.717742px;}
.y96{bottom:382.320184px;}
.y1c{bottom:387.350478px;}
.yc2{bottom:388.625651px;}
.yb0{bottom:390.599004px;}
.y44{bottom:390.962541px;}
.y1f{bottom:392.953133px;}
.ya{bottom:397.974903px;}
.y76{bottom:397.989012px;}
.y11{bottom:397.990097px;}
.yd2{bottom:398.333709px;}
.y4c{bottom:399.806865px;}
.yaf{bottom:402.480265px;}
.y3{bottom:404.450649px;}
.y8f{bottom:405.517670px;}
.y73{bottom:405.539301px;}
.y5a{bottom:406.084776px;}
.y95{bottom:409.313826px;}
.yc1{bottom:409.499194px;}
.y1b{bottom:412.748833px;}
.y82{bottom:413.464865px;}
.yae{bottom:414.358752px;}
.yf7{bottom:421.562791px;}
.yfb{bottom:425.697313px;}
.yad{bottom:426.420311px;}
.ye5{bottom:426.451969px;}
.y43{bottom:428.218187px;}
.yc0{bottom:430.377467px;}
.y10{bottom:435.591748px;}
.y9{bottom:435.598881px;}
.ydc{bottom:436.684333px;}
.y1a{bottom:438.294623px;}
.yac{bottom:438.301572px;}
.yfc{bottom:438.476108px;}
.yf8{bottom:442.081369px;}
.yf9{bottom:443.153857px;}
.y71{bottom:444.767064px;}
.yf6{bottom:445.681011px;}
.y59{bottom:445.859554px;}
.ydf{bottom:447.318176px;}
.y112{bottom:449.704543px;}
.y3a{bottom:449.814370px;}
.yab{bottom:450.180085px;}
.yd8{bottom:450.700320px;}
.ybf{bottom:451.437994px;}
.y3e{bottom:451.459692px;}
.y81{bottom:452.889188px;}
.y42{bottom:454.494589px;}
.y3c{bottom:459.367481px;}
.yaa{bottom:462.241645px;}
.y19{bottom:463.671898px;}
.yd0{bottom:469.448870px;}
.ybe{bottom:472.322027px;}
.y94{bottom:473.038755px;}
.y8{bottom:473.393150px;}
.yf{bottom:473.407924px;}
.y4b{bottom:473.587540px;}
.y6f{bottom:473.865467px;}
.ya9{bottom:474.117436px;}
.yd1{bottom:476.098278px;}
.y6d{bottom:476.688471px;}
.y41{bottom:480.787207px;}
.y58{bottom:485.634379px;}
.ya8{bottom:485.998698px;}
.y57{bottom:488.508638px;}
.y80{bottom:492.300020px;}
.ybd{bottom:493.382555px;}
.y93{bottom:494.102174px;}
.ya7{bottom:498.057509px;}
.ye4{bottom:500.070152px;}
.y39{bottom:500.407794px;}
.yf4{bottom:501.301244px;}
.y70{bottom:501.853709px;}
.y3d{bottom:502.011974px;}
.y3b{bottom:505.636521px;}
.y40{bottom:507.063608px;}
.ya6{bottom:509.938770px;}
.y6c{bottom:513.531136px;}
.yf5{bottom:514.079339px;}
.ybc{bottom:514.258954px;}
.y92{bottom:515.165592px;}
.yf2{bottom:517.683622px;}
.yf1{bottom:521.283720px;}
.ya5{bottom:521.820005px;}
.yf3{bottom:523.081374px;}
.y56{bottom:525.409181px;}
.y55{bottom:528.288786px;}
.ya4{bottom:533.878843px;}
.y2{bottom:535.124278px;}
.ybb{bottom:535.143010px;}
.y90{bottom:541.637160px;}
.y8e{bottom:542.134920px;}
.y7{bottom:542.473492px;}
.ya3{bottom:545.760104px;}
.yde{bottom:547.381567px;}
.yba{bottom:556.203515px;}
.ya2{bottom:557.641339px;}
.y1e{bottom:559.103660px;}
.y3f{bottom:562.311010px;}
.y54{bottom:565.030165px;}
.y53{bottom:567.901609px;}
.ya1{bottom:569.700176px;}
.yb9{bottom:577.079914px;}
.ycf{bottom:580.851963px;}
.ya0{bottom:581.581411px;}
.y9f{bottom:593.457203px;}
.yef{bottom:596.156183px;}
.y1{bottom:597.194130px;}
.yb8{bottom:597.963970px;}
.y52{bottom:604.620404px;}
.y9e{bottom:605.338464px;}
.y23{bottom:605.884143px;}
.yf0{bottom:608.938965px;}
.yed{bottom:612.536033px;}
.yec{bottom:616.145169px;}
.yee{bottom:617.936312px;}
.y6{bottom:617.946772px;}
.yb7{bottom:619.016818px;}
.y22{bottom:626.934429px;}
.yb6{bottom:639.900874px;}
.y51{bottom:644.210619px;}
.y1d{bottom:644.411268px;}
.y33{bottom:646.939806px;}
.y21{bottom:647.997847px;}
.ydb{bottom:660.957613px;}
.yea{bottom:671.760138px;}
.y8d{bottom:675.009051px;}
.y50{bottom:683.831627px;}
.y9d{bottom:683.837316px;}
.yeb{bottom:684.542196px;}
.yce{bottom:684.711702px;}
.ye8{bottom:688.138271px;}
.yd9{bottom:688.139045px;}
.ye7{bottom:691.739357px;}
.y7b{bottom:691.920188px;}
.y7a{bottom:691.927215px;}
.ye9{bottom:693.540268px;}
.y66{bottom:693.691732px;}
.y24{bottom:693.732953px;}
.ycd{bottom:703.066114px;}
.yb5{bottom:710.662668px;}
.ydd{bottom:714.252975px;}
.ye6{bottom:716.045110px;}
.y4f{bottom:723.421854px;}
.y79{bottom:731.351527px;}
.y4e{bottom:763.548554px;}
.y4d{bottom:765.011593px;}
.h50{height:19.432730px;}
.h4f{height:19.444343px;}
.h3b{height:35.615885px;}
.h12{height:49.091040px;}
.h30{height:49.505011px;}
.h28{height:56.105247px;}
.h1f{height:56.801579px;}
.h17{height:60.465525px;}
.h15{height:60.472592px;}
.h18{height:60.478393px;}
.h14{height:60.498854px;}
.h2b{height:60.507941px;}
.h1d{height:60.508052px;}
.h20{height:60.508095px;}
.h16{height:60.511679px;}
.h1c{height:60.515007px;}
.h1b{height:60.515118px;}
.h19{height:60.517872px;}
.h13{height:60.523200px;}
.h1a{height:60.530778px;}
.h3d{height:62.514062px;}
.h2a{height:62.610096px;}
.h4d{height:64.876314px;}
.h27{height:65.216494px;}
.h36{height:65.230560px;}
.h4b{height:71.510550px;}
.h23{height:74.645280px;}
.hf{height:78.680160px;}
.h25{height:83.917752px;}
.hd{height:85.394880px;}
.he{height:85.846805px;}
.h4c{height:86.255648px;}
.h4{height:88.767360px;}
.hb{height:91.418968px;}
.h26{height:93.508745px;}
.h7{height:100.170990px;}
.h9{height:100.172505px;}
.ha{height:100.244374px;}
.hc{height:100.246053px;}
.h6{height:100.258617px;}
.h8{height:100.260296px;}
.h4e{height:100.262433px;}
.h22{height:102.619501px;}
.h2f{height:104.906880px;}
.h21{height:112.210494px;}
.h31{height:117.684000px;}
.h46{height:125.098783px;}
.h47{height:126.116746px;}
.h37{height:130.740343px;}
.h34{height:131.105546px;}
.h33{height:131.133600px;}
.h45{height:136.749737px;}
.h3c{height:140.022999px;}
.h38{height:144.818495px;}
.h48{height:150.052662px;}
.h49{height:150.135008px;}
.h3f{height:153.252144px;}
.h3a{height:154.408997px;}
.h3{height:166.876994px;}
.h40{height:167.575350px;}
.h32{height:168.193372px;}
.h42{height:172.511295px;}
.h29{height:187.016999px;}
.h3e{height:193.890629px;}
.h1e{height:216.538560px;}
.h52{height:224.420497px;}
.h4a{height:228.736247px;}
.h11{height:267.098746px;}
.h43{height:268.537493px;}
.h5{height:278.607742px;}
.h41{height:287.777258px;}
.h35{height:288.802794px;}
.h39{height:296.829744px;}
.h2d{height:317.929242px;}
.h2c{height:350.537243px;}
.h2{height:383.145245px;}
.h44{height:390.338489px;}
.h24{height:394.654240px;}
.h51{height:440.209493px;}
.h10{height:460.349989px;}
.h2e{height:548.103745px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w4{width:232.737403px;}
.w3{width:233.278822px;}
.w2{width:239.943606px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x4c{left:-15.640561px;}
.x0{left:0.000000px;}
.x4b{left:3.959280px;}
.x4d{left:11.709360px;}
.xe{left:28.262520px;}
.x6a{left:30.240090px;}
.xc{left:38.160722px;}
.xd{left:49.132980px;}
.x4e{left:50.768640px;}
.x75{left:51.797116px;}
.x69{left:81.899335px;}
.x43{left:90.697759px;}
.x76{left:98.820176px;}
.x20{left:101.162268px;}
.x2{left:109.253053px;}
.x1f{left:112.315514px;}
.x71{left:120.055042px;}
.x9c{left:121.348074px;}
.xf{left:123.018749px;}
.x47{left:126.697111px;}
.x1e{left:140.222346px;}
.x1{left:143.117668px;}
.x91{left:154.625044px;}
.x64{left:157.119556px;}
.x80{left:162.717284px;}
.x85{left:169.016544px;}
.x8c{left:170.642164px;}
.xb{left:173.879528px;}
.x87{left:179.104946px;}
.x9a{left:188.093668px;}
.x5{left:190.626488px;}
.x4{left:196.922873px;}
.x2c{left:201.427719px;}
.x2d{left:208.091240px;}
.x9b{left:210.959915px;}
.x3{left:221.752084px;}
.x7{left:230.576352px;}
.x10{left:244.075970px;}
.x4f{left:250.204501px;}
.x72{left:253.810444px;}
.x50{left:258.490436px;}
.x7b{left:260.095259px;}
.x53{left:275.577118px;}
.x56{left:279.718935px;}
.x67{left:285.296037px;}
.x9d{left:287.600460px;}
.x65{left:288.669117px;}
.x70{left:291.776074px;}
.x55{left:294.840000px;}
.x54{left:310.677118px;}
.x36{left:353.857866px;}
.x73{left:360.365164px;}
.x35{left:376.715433px;}
.x74{left:379.968735px;}
.x6c{left:386.280395px;}
.x6{left:387.681447px;}
.x77{left:389.528361px;}
.x26{left:395.457541px;}
.x8a{left:400.503742px;}
.x84{left:402.305875px;}
.x7f{left:404.641638px;}
.x4a{left:406.255778px;}
.x46{left:410.759404px;}
.x95{left:412.205923px;}
.x98{left:413.281019px;}
.x68{left:416.360914px;}
.x66{left:418.912956px;}
.x25{left:420.659639px;}
.x8b{left:422.461772px;}
.x83{left:424.263858px;}
.x6e{left:427.499748px;}
.x22{left:435.957263px;}
.x94{left:442.625410px;}
.x29{left:448.924250px;}
.x90{left:455.402640px;}
.x6d{left:457.384524px;}
.x6b{left:459.540294px;}
.x28{left:462.045648px;}
.x27{left:463.854578px;}
.x44{left:480.053393px;}
.x23{left:483.122822px;}
.x45{left:485.816479px;}
.x24{left:488.341620px;}
.x21{left:491.558746px;}
.x99{left:497.347376px;}
.x57{left:508.850979px;}
.x34{left:515.888303px;}
.x58{left:517.149355px;}
.x5e{left:534.956966px;}
.x5a{left:538.911355px;}
.x5d{left:546.843968px;}
.x31{left:551.512804px;}
.x12{left:552.602684px;}
.x5c{left:561.965054px;}
.x33{left:568.466054px;}
.x59{left:571.673726px;}
.x6f{left:576.350690px;}
.x5b{left:577.802172px;}
.x30{left:585.354062px;}
.x32{left:595.803624px;}
.x5f{left:598.319267px;}
.x63{left:619.566234px;}
.x52{left:633.969177px;}
.x18{left:642.052929px;}
.x78{left:646.362074px;}
.x1c{left:647.995402px;}
.x1a{left:652.325422px;}
.x79{left:659.689149px;}
.x7a{left:672.851658px;}
.x19{left:679.858273px;}
.xa{left:694.986673px;}
.x9{left:696.408130px;}
.x2b{left:700.543610px;}
.x8f{left:702.176849px;}
.x8{left:703.247197px;}
.x7e{left:706.495751px;}
.x82{left:711.894441px;}
.x89{left:712.974230px;}
.x2a{left:724.693794px;}
.x97{left:728.276921px;}
.x1d{left:750.594578px;}
.x1b{left:770.763598px;}
.x49{left:784.567338px;}
.x11{left:789.449109px;}
.x61{left:819.907893px;}
.x48{left:840.624483px;}
.x60{left:862.392946px;}
.x38{left:874.793548px;}
.x81{left:878.392464px;}
.x88{left:893.338450px;}
.x86{left:895.315243px;}
.x96{left:896.753894px;}
.x7d{left:903.957764px;}
.x8d{left:914.033630px;}
.x92{left:915.653465px;}
.x42{left:921.957086px;}
.x3c{left:941.767590px;}
.x3b{left:946.627982px;}
.x93{left:952.552202px;}
.x8e{left:953.996161px;}
.x14{left:966.772383px;}
.x2f{left:971.274084px;}
.x16{left:973.248778px;}
.x7c{left:974.691445px;}
.x15{left:985.850575px;}
.x2e{left:989.443103px;}
.x17{left:1000.256864px;}
.x13{left:1005.663647px;}
.x62{left:1038.426473px;}
.x3a{left:1044.898277px;}
.x37{left:1050.479214px;}
.x41{left:1053.721503px;}
.x3d{left:1055.339606px;}
.x40{left:1057.135602px;}
.x51{left:1065.951909px;}
.x3e{left:1080.010407px;}
.x39{left:1099.790119px;}
.x3f{left:1119.600623px;}
@media print{
.v6{vertical-align:-168.960423pt;}
.v1{vertical-align:-63.375375pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.401875pt;}
.v4{vertical-align:22.963078pt;}
.v5{vertical-align:106.846141pt;}
.v3{vertical-align:140.175331pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.026039pt;}
.ls15{letter-spacing:0.411524pt;}
.ls12{letter-spacing:0.895998pt;}
.lsc{letter-spacing:16.317216pt;}
.lsb{letter-spacing:16.326284pt;}
.ls1{letter-spacing:47.948930pt;}
.ls3{letter-spacing:50.839337pt;}
.lsd{letter-spacing:64.299009pt;}
.lsf{letter-spacing:64.305682pt;}
.ls6{letter-spacing:64.321639pt;}
.ls8{letter-spacing:64.334459pt;}
.ls9{letter-spacing:64.339224pt;}
.ls7{letter-spacing:64.340686pt;}
.ls11{letter-spacing:64.341679pt;}
.ls10{letter-spacing:64.342668pt;}
.lsa{letter-spacing:64.345284pt;}
.ls2{letter-spacing:78.654862pt;}
.lse{letter-spacing:80.348886pt;}
.ls5{letter-spacing:82.810192pt;}
.ls4{letter-spacing:105.281867pt;}
.ls13{letter-spacing:167.868909pt;}
.ls14{letter-spacing:1112.808001pt;}
.ws16{word-spacing:-228.234043pt;}
.ws10{word-spacing:-164.336649pt;}
.ws29{word-spacing:-149.760242pt;}
.ws28{word-spacing:-124.800202pt;}
.ws1c{word-spacing:-123.601879pt;}
.ws1{word-spacing:-116.014116pt;}
.ws20{word-spacing:-112.994809pt;}
.ws6{word-spacing:-111.221693pt;}
.ws3{word-spacing:-95.360000pt;}
.ws2c{word-spacing:-95.247294pt;}
.ws33{word-spacing:-93.450187pt;}
.ws2b{word-spacing:-77.875121pt;}
.ws14{word-spacing:-62.079630pt;}
.ws1d{word-spacing:-60.303384pt;}
.ws8{word-spacing:-56.465920pt;}
.wsa{word-spacing:-56.320326pt;}
.wsc{word-spacing:-46.725196pt;}
.ws15{word-spacing:-43.455741pt;}
.wsd{word-spacing:-42.731442pt;}
.wsb{word-spacing:-42.240245pt;}
.ws22{word-spacing:-38.040328pt;}
.ws12{word-spacing:-34.943910pt;}
.ws18{word-spacing:-34.195200pt;}
.ws25{word-spacing:-30.952904pt;}
.ws2{word-spacing:-26.128640pt;}
.ws1a{word-spacing:-20.517120pt;}
.ws32{word-spacing:-19.670966pt;}
.wse{word-spacing:-19.464960pt;}
.ws1b{word-spacing:-17.009920pt;}
.ws7{word-spacing:-15.782400pt;}
.ws2d{word-spacing:-14.029996pt;}
.ws31{word-spacing:-12.728394pt;}
.ws11{word-spacing:-2.995205pt;}
.ws13{word-spacing:-2.088968pt;}
.ws27{word-spacing:-1.917437pt;}
.ws5{word-spacing:-1.425919pt;}
.ws2f{word-spacing:-1.182727pt;}
.ws24{word-spacing:-0.748801pt;}
.ws26{word-spacing:-0.149760pt;}
.ws30{word-spacing:-0.124159pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.345600pt;}
.ws23{word-spacing:0.684799pt;}
.ws2e{word-spacing:1.566714pt;}
.wsf{word-spacing:2.138879pt;}
.ws21{word-spacing:9.385846pt;}
.ws4{word-spacing:105.518017pt;}
.ws1e{word-spacing:127.254436pt;}
.ws1f{word-spacing:160.675436pt;}
.ws17{word-spacing:434.004354pt;}
.ws19{word-spacing:751.495639pt;}
.ws2a{word-spacing:909.546620pt;}
._2e{margin-left:-2005.624788pt;}
._2d{margin-left:-1979.845094pt;}
._2c{margin-left:-1937.021824pt;}
._22{margin-left:-1935.547315pt;}
._21{margin-left:-1909.517146pt;}
._25{margin-left:-1884.016706pt;}
._24{margin-left:-1857.017246pt;}
._20{margin-left:-1830.897741pt;}
._1d{margin-left:-1814.368662pt;}
._1e{margin-left:-1812.862149pt;}
._1f{margin-left:-1804.517347pt;}
._28{margin-left:-1795.809897pt;}
._37{margin-left:-1794.892190pt;}
._1c{margin-left:-1786.579900pt;}
._27{margin-left:-1769.298758pt;}
._35{margin-left:-1760.544321pt;}
._34{margin-left:-1734.080084pt;}
._2b{margin-left:-1707.890567pt;}
._32{margin-left:-1691.081212pt;}
._2a{margin-left:-1681.689584pt;}
._13{margin-left:-1674.171175pt;}
._1b{margin-left:-1671.942706pt;}
._31{margin-left:-1663.752136pt;}
._11{margin-left:-1646.470910pt;}
._19{margin-left:-1586.050118pt;}
._c{margin-left:-1566.545419pt;}
._17{margin-left:-1558.752422pt;}
._d{margin-left:-1479.671058pt;}
._80{margin-left:-1063.743538pt;}
._2f{margin-left:-1055.524414pt;}
._7f{margin-left:-1043.860006pt;}
._b{margin-left:-1036.031796pt;}
._81{margin-left:-1009.387392pt;}
._26{margin-left:-931.979221pt;}
._23{margin-left:-914.697828pt;}
._30{margin-left:-812.207639pt;}
._15{margin-left:-774.193983pt;}
._f{margin-left:-756.912590pt;}
._33{margin-left:-703.519370pt;}
._36{margin-left:-672.451749pt;}
._16{margin-left:-601.777136pt;}
._10{margin-left:-584.114619pt;}
._e{margin-left:-537.086594pt;}
._29{margin-left:-469.871156pt;}
._14{margin-left:-451.933699pt;}
._51{margin-left:-168.755961pt;}
._7b{margin-left:-11.232018pt;}
._83{margin-left:-6.690532pt;}
._a{margin-left:-3.659508pt;}
._7{margin-left:-2.037755pt;}
._0{margin-left:-1.022719pt;}
._2{width:1.336321pt;}
._3{width:2.231041pt;}
._39{width:3.201275pt;}
._1{width:4.090878pt;}
._86{width:5.562874pt;}
._38{width:6.457586pt;}
._82{width:10.296337pt;}
._84{width:11.264065pt;}
._3d{width:13.875840pt;}
._3c{width:14.940798pt;}
._8{width:17.510400pt;}
._5{width:19.491838pt;}
._4{width:21.017597pt;}
._6{width:22.325759pt;}
._85{width:23.398318pt;}
._7a{width:25.758762pt;}
._7c{width:27.567406pt;}
._18{width:31.060402pt;}
._1a{width:31.978161pt;}
._12{width:33.300397pt;}
._79{width:34.671407pt;}
._3e{width:49.457896pt;}
._7d{width:56.724478pt;}
._7e{width:97.067443pt;}
._49{width:108.189736pt;}
._9{width:109.285046pt;}
._48{width:121.653625pt;}
._4b{width:122.576015pt;}
._47{width:130.728548pt;}
._44{width:140.368200pt;}
._4a{width:142.501297pt;}
._4c{width:144.442379pt;}
._3f{width:147.816309pt;}
._42{width:149.567451pt;}
._43{width:150.903772pt;}
._54{width:155.328076pt;}
._56{width:157.142359pt;}
._57{width:158.383710pt;}
._50{width:163.762900pt;}
._4f{width:166.914023pt;}
._45{width:168.187204pt;}
._46{width:171.212047pt;}
._41{width:175.667142pt;}
._3b{width:188.298362pt;}
._61{width:199.759575pt;}
._5f{width:203.390173pt;}
._40{width:209.565585pt;}
._72{width:213.222964pt;}
._75{width:215.874748pt;}
._60{width:220.794527pt;}
._4e{width:229.618185pt;}
._5e{width:231.307593pt;}
._6e{width:235.996001pt;}
._6a{width:238.780379pt;}
._6c{width:247.495807pt;}
._74{width:250.912791pt;}
._76{width:255.110966pt;}
._62{width:260.010268pt;}
._5a{width:263.836108pt;}
._70{width:267.053888pt;}
._59{width:275.580536pt;}
._5c{width:278.222387pt;}
._58{width:286.374919pt;}
._55{width:289.967481pt;}
._64{width:294.089826pt;}
._53{width:296.332867pt;}
._5b{width:298.465964pt;}
._5d{width:300.088750pt;}
._4d{width:304.485399pt;}
._52{width:306.550144pt;}
._67{width:309.453561pt;}
._6f{width:339.238635pt;}
._73{width:340.646023pt;}
._6d{width:366.871826pt;}
._68{width:368.037298pt;}
._71{width:432.686380pt;}
._65{width:439.316268pt;}
._78{width:460.453117pt;}
._6b{width:461.858952pt;}
._66{width:466.238273pt;}
._63{width:471.467889pt;}
._77{width:596.483666pt;}
._69{width:597.772843pt;}
._3a{width:1460.415387pt;}
.fs26{font-size:31.829524pt;}
.fsd{font-size:46.720000pt;}
.fs28{font-size:55.868128pt;}
.fs11{font-size:56.320326pt;}
.fsf{font-size:57.599589pt;}
.fse{font-size:57.600000pt;}
.fs1b{font-size:62.079630pt;}
.fs22{font-size:62.080000pt;}
.fs14{font-size:71.040000pt;}
.fsa{font-size:74.880000pt;}
.fs19{font-size:74.880121pt;}
.fs2{font-size:84.480000pt;}
.fs8{font-size:85.119466pt;}
.fs9{font-size:85.120000pt;}
.fs6{font-size:87.039670pt;}
.fs7{font-size:87.040000pt;}
.fs18{font-size:87.040326pt;}
.fs5{font-size:95.360000pt;}
.fs4{font-size:95.360121pt;}
.fs1f{font-size:99.840000pt;}
.fs16{font-size:111.999711pt;}
.fs20{font-size:112.000000pt;}
.fs21{font-size:124.800000pt;}
.fs17{font-size:124.800202pt;}
.fs13{font-size:136.959751pt;}
.fs12{font-size:149.760242pt;}
.fs29{font-size:168.320037pt;}
.fs27{font-size:186.879832pt;}
.fs23{font-size:193.280077pt;}
.fs25{font-size:206.079913pt;}
.fs10{font-size:206.080000pt;}
.fs1{font-size:222.720158pt;}
.fs1a{font-size:249.599748pt;}
.fs2e{font-size:299.519829pt;}
.fs2c{font-size:305.279788pt;}
.fsc{font-size:356.479786pt;}
.fs2a{font-size:358.399991pt;}
.fs3{font-size:371.840114pt;}
.fs24{font-size:396.159867pt;}
.fs1d{font-size:424.320031pt;}
.fs1c{font-size:467.839866pt;}
.fs0{font-size:511.359701pt;}
.fs2b{font-size:520.960069pt;}
.fs15{font-size:526.720028pt;}
.fs2d{font-size:587.519740pt;}
.fsb{font-size:614.399985pt;}
.fs1e{font-size:731.519368pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:3.832843pt;}
.yfa{bottom:3.843166pt;}
.y72{bottom:15.699823pt;}
.y65{bottom:100.160212pt;}
.y64{bottom:101.447913pt;}
.y89{bottom:123.047684pt;}
.y63{bottom:123.842481pt;}
.y6b{bottom:129.113613pt;}
.yd7{bottom:129.436549pt;}
.y49{bottom:137.283665pt;}
.y88{bottom:141.764800pt;}
.y29{bottom:142.086429pt;}
.y62{bottom:149.433536pt;}
.y38{bottom:152.484829pt;}
.y6a{bottom:152.488220pt;}
.y10f{bottom:157.277417pt;}
.y111{bottom:157.760500pt;}
.ycc{bottom:159.199455pt;}
.y87{bottom:160.481916pt;}
.yd6{bottom:170.551185pt;}
.ye3{bottom:171.355566pt;}
.y37{bottom:175.844987pt;}
.y10e{bottom:176.634951pt;}
.ycb{bottom:177.757961pt;}
.y2f{bottom:177.915190pt;}
.y9c{bottom:180.314704pt;}
.y61{bottom:184.652209pt;}
.y110{bottom:187.999160pt;}
.y8c{bottom:188.005763pt;}
.y28{bottom:188.962570pt;}
.y7f{bottom:190.564167pt;}
.y10c{bottom:191.197572pt;}
.y113{bottom:193.769690pt;}
.y10b{bottom:194.400208pt;}
.y10d{bottom:195.996766pt;}
.yca{bottom:196.320713pt;}
.y9b{bottom:199.037778pt;}
.y32{bottom:199.201755pt;}
.y69{bottom:199.207553pt;}
.y2e{bottom:201.284722pt;}
.yda{bottom:203.228350pt;}
.y18{bottom:206.880392pt;}
.y8b{bottom:212.167063pt;}
.y7e{bottom:214.712956pt;}
.yc9{bottom:215.041182pt;}
.y9a{bottom:217.760816pt;}
.ye2{bottom:218.082513pt;}
.ye{bottom:219.515600pt;}
.y15{bottom:219.525941pt;}
.y60{bottom:219.843512pt;}
.y5f{bottom:222.557885pt;}
.y36{bottom:222.719204pt;}
.y68{bottom:222.723282pt;}
.y48{bottom:228.473613pt;}
.yc8{bottom:233.599647pt;}
.y2d{bottom:235.515190pt;}
.y27{bottom:235.684859pt;}
.y17{bottom:236.483087pt;}
.y86{bottom:240.003694pt;}
.y106{bottom:240.167066pt;}
.y99{bottom:241.760384pt;}
.y8a{bottom:242.069132pt;}
.yd5{bottom:242.871925pt;}
.y109{bottom:243.838467pt;}
.y7d{bottom:244.640009pt;}
.y35{bottom:246.072855pt;}
.y67{bottom:246.082677pt;}
.y31{bottom:246.086649pt;}
.y91{bottom:249.717209pt;}
.y47{bottom:251.844829pt;}
.yc7{bottom:252.320116pt;}
.y14{bottom:253.116492pt;}
.yd{bottom:253.119549pt;}
.y5e{bottom:255.198870pt;}
.y10a{bottom:255.202032pt;}
.yd4{bottom:255.997870pt;}
.y5d{bottom:257.917984pt;}
.y107{bottom:258.401863pt;}
.y2c{bottom:259.044829pt;}
.y105{bottom:261.603541pt;}
.ye1{bottom:263.054473pt;}
.y108{bottom:263.200282pt;}
.y85{bottom:264.158748pt;}
.y16{bottom:266.085814pt;}
.y34{bottom:269.435067pt;}
.yc6{bottom:270.882868pt;}
.y78{bottom:272.969615pt;}
.y7c{bottom:274.567063pt;}
.y46{bottom:275.201630pt;}
.y2b{bottom:282.402814pt;}
.y26{bottom:282.565420pt;}
.y20{bottom:285.323755pt;}
.yc{bottom:286.554042pt;}
.y13{bottom:286.564009pt;}
.yc5{bottom:289.441374pt;}
.y5c{bottom:290.390214pt;}
.y103{bottom:291.834840pt;}
.y6e{bottom:291.848234pt;}
.y30{bottom:292.800184pt;}
.y84{bottom:294.085763pt;}
.y45{bottom:298.558388pt;}
.y5{bottom:300.312331pt;}
.y75{bottom:300.650255pt;}
.y98{bottom:302.405778pt;}
.yb4{bottom:304.801669pt;}
.ye0{bottom:306.088566pt;}
.y101{bottom:307.359532pt;}
.yfe{bottom:307.521969pt;}
.yc4{bottom:308.161844pt;}
.y4a{bottom:310.997932pt;}
.yb3{bottom:315.360371pt;}
.yd3{bottom:316.323510pt;}
.y77{bottom:318.721300pt;}
.y12{bottom:320.154561pt;}
.yb{bottom:320.160564pt;}
.y97{bottom:321.117125pt;}
.y104{bottom:322.564272pt;}
.y83{bottom:323.987833pt;}
.y5b{bottom:325.608846pt;}
.yff{bottom:325.759241pt;}
.yb2{bottom:325.919026pt;}
.yc3{bottom:326.724596pt;}
.yfd{bottom:328.966030pt;}
.y2a{bottom:329.125147pt;}
.y25{bottom:329.273613pt;}
.y4{bottom:329.922580pt;}
.y74{bottom:330.552325pt;}
.y100{bottom:330.554189pt;}
.yb1{bottom:336.637993pt;}
.y96{bottom:339.840164pt;}
.y1c{bottom:344.311536pt;}
.yc2{bottom:345.445023pt;}
.yb0{bottom:347.199114pt;}
.y44{bottom:347.522259pt;}
.y1f{bottom:349.291674pt;}
.ya{bottom:353.755469pt;}
.y76{bottom:353.768011pt;}
.y11{bottom:353.768975pt;}
.yd2{bottom:354.074408pt;}
.y4c{bottom:355.383880pt;}
.yaf{bottom:357.760235pt;}
.y3{bottom:359.511688pt;}
.y8f{bottom:360.460151pt;}
.y73{bottom:360.479379pt;}
.y5a{bottom:360.964246pt;}
.y95{bottom:363.834512pt;}
.yc1{bottom:363.999284pt;}
.y1b{bottom:366.887852pt;}
.y82{bottom:367.524325pt;}
.yae{bottom:368.318890pt;}
.yf7{bottom:374.722481pt;}
.yfb{bottom:378.397611pt;}
.yad{bottom:379.040276pt;}
.ye5{bottom:379.068417pt;}
.y43{bottom:380.638388pt;}
.yc0{bottom:382.557748pt;}
.y10{bottom:387.192665pt;}
.y9{bottom:387.199005pt;}
.ydc{bottom:388.163852pt;}
.y1a{bottom:389.595221pt;}
.yac{bottom:389.601397pt;}
.yfc{bottom:389.756541pt;}
.yf8{bottom:392.961217pt;}
.yf9{bottom:393.914539pt;}
.y71{bottom:395.348502pt;}
.yf6{bottom:396.160899pt;}
.y59{bottom:396.319604pt;}
.ydf{bottom:397.616157pt;}
.y112{bottom:399.737372pt;}
.y3a{bottom:399.834996pt;}
.yab{bottom:400.160076pt;}
.yd8{bottom:400.622507pt;}
.ybf{bottom:401.278217pt;}
.y3e{bottom:401.297504pt;}
.y81{bottom:402.568167pt;}
.y42{bottom:403.995190pt;}
.y3c{bottom:408.326650pt;}
.yaa{bottom:410.881462pt;}
.y19{bottom:412.152798pt;}
.yd0{bottom:417.287885pt;}
.ybe{bottom:419.841802pt;}
.y94{bottom:420.478894pt;}
.y8{bottom:420.793911pt;}
.yf{bottom:420.807044pt;}
.y4b{bottom:420.966702pt;}
.y6f{bottom:421.213749pt;}
.ya9{bottom:421.437721pt;}
.yd1{bottom:423.198469pt;}
.y6d{bottom:423.723086pt;}
.y41{bottom:427.366406pt;}
.y58{bottom:431.675004pt;}
.ya8{bottom:431.998842pt;}
.y57{bottom:434.229901pt;}
.y80{bottom:437.600018pt;}
.ybd{bottom:438.562271pt;}
.y93{bottom:439.201932pt;}
.ya7{bottom:442.717786pt;}
.ye4{bottom:444.506801pt;}
.y39{bottom:444.806928pt;}
.yf4{bottom:445.601106pt;}
.y70{bottom:446.092186pt;}
.y3d{bottom:446.232865pt;}
.y3b{bottom:449.454685pt;}
.y40{bottom:450.723208pt;}
.ya6{bottom:453.278907pt;}
.y6c{bottom:456.472121pt;}
.yf5{bottom:456.959413pt;}
.ybc{bottom:457.119071pt;}
.y92{bottom:457.924971pt;}
.yf2{bottom:460.163220pt;}
.yf1{bottom:463.363307pt;}
.ya5{bottom:463.840004pt;}
.yf3{bottom:464.961221pt;}
.y56{bottom:467.030383pt;}
.y55{bottom:469.590032pt;}
.ya4{bottom:474.558971pt;}
.y2{bottom:475.666025pt;}
.ybb{bottom:475.682676pt;}
.y90{bottom:481.455253pt;}
.y8e{bottom:481.897707pt;}
.y7{bottom:482.198659pt;}
.ya3{bottom:485.120092pt;}
.yde{bottom:486.561393pt;}
.yba{bottom:494.403124pt;}
.ya2{bottom:495.681190pt;}
.y1e{bottom:496.981031pt;}
.y3f{bottom:499.832009pt;}
.y54{bottom:502.249035pt;}
.y53{bottom:504.801431pt;}
.ya1{bottom:506.400157pt;}
.yb9{bottom:512.959924pt;}
.ycf{bottom:516.312856pt;}
.ya0{bottom:516.961254pt;}
.y9f{bottom:527.517514pt;}
.yef{bottom:529.916607pt;}
.y1{bottom:530.839226pt;}
.yb8{bottom:531.523529pt;}
.y52{bottom:537.440359pt;}
.y9e{bottom:538.078635pt;}
.y23{bottom:538.563683pt;}
.yf0{bottom:541.279080pt;}
.yed{bottom:544.476474pt;}
.yec{bottom:547.684595pt;}
.yee{bottom:549.276722pt;}
.y6{bottom:549.286019pt;}
.yb7{bottom:550.237172pt;}
.y22{bottom:557.275048pt;}
.yb6{bottom:568.800777pt;}
.y51{bottom:572.631662pt;}
.y1d{bottom:572.810016pt;}
.y33{bottom:575.057605pt;}
.y21{bottom:575.998086pt;}
.ydb{bottom:587.517878pt;}
.yea{bottom:597.120123pt;}
.y8d{bottom:600.008046pt;}
.y50{bottom:607.850335pt;}
.y9d{bottom:607.855392pt;}
.yeb{bottom:608.481952pt;}
.yce{bottom:608.632624pt;}
.ye8{bottom:611.678463pt;}
.yd9{bottom:611.679151pt;}
.ye7{bottom:614.879429pt;}
.y7b{bottom:615.040167pt;}
.y7a{bottom:615.046413pt;}
.ye9{bottom:616.480238pt;}
.y66{bottom:616.614873pt;}
.y24{bottom:616.651514pt;}
.ycd{bottom:624.947657pt;}
.yb5{bottom:631.700149pt;}
.ydd{bottom:634.891534pt;}
.ye6{bottom:636.484542pt;}
.y4f{bottom:643.041648pt;}
.y79{bottom:650.090246pt;}
.y4e{bottom:678.709826pt;}
.y4d{bottom:680.010305pt;}
.h50{height:17.273538pt;}
.h4f{height:17.283861pt;}
.h3b{height:31.658564pt;}
.h12{height:43.636480pt;}
.h30{height:44.004454pt;}
.h28{height:49.871331pt;}
.h1f{height:50.490293pt;}
.h17{height:53.747134pt;}
.h15{height:53.753415pt;}
.h18{height:53.758572pt;}
.h14{height:53.776759pt;}
.h2b{height:53.784837pt;}
.h1d{height:53.784935pt;}
.h20{height:53.784974pt;}
.h16{height:53.788159pt;}
.h1c{height:53.791118pt;}
.h1b{height:53.791216pt;}
.h19{height:53.793664pt;}
.h13{height:53.798400pt;}
.h1a{height:53.805136pt;}
.h3d{height:55.568055pt;}
.h2a{height:55.653418pt;}
.h4d{height:57.667834pt;}
.h27{height:57.970217pt;}
.h36{height:57.982720pt;}
.h4b{height:63.564934pt;}
.h23{height:66.351360pt;}
.hf{height:69.937920pt;}
.h25{height:74.593557pt;}
.hd{height:75.906560pt;}
.he{height:76.308271pt;}
.h4c{height:76.671687pt;}
.h4{height:78.904320pt;}
.hb{height:81.261305pt;}
.h26{height:83.118884pt;}
.h7{height:89.040880pt;}
.h9{height:89.042227pt;}
.ha{height:89.106110pt;}
.hc{height:89.107602pt;}
.h6{height:89.118771pt;}
.h8{height:89.120263pt;}
.h4e{height:89.122163pt;}
.h22{height:91.217334pt;}
.h2f{height:93.250560pt;}
.h21{height:99.742661pt;}
.h31{height:104.608000pt;}
.h46{height:111.198918pt;}
.h47{height:112.103775pt;}
.h37{height:116.213638pt;}
.h34{height:116.538263pt;}
.h33{height:116.563200pt;}
.h45{height:121.555322pt;}
.h3c{height:124.464888pt;}
.h38{height:128.727551pt;}
.h48{height:133.380144pt;}
.h49{height:133.453341pt;}
.h3f{height:136.224128pt;}
.h3a{height:137.252442pt;}
.h3{height:148.335105pt;}
.h40{height:148.955866pt;}
.h32{height:149.505219pt;}
.h42{height:153.343373pt;}
.h29{height:166.237332pt;}
.h3e{height:172.347226pt;}
.h1e{height:192.478720pt;}
.h52{height:199.484886pt;}
.h4a{height:203.321109pt;}
.h11{height:237.421108pt;}
.h43{height:238.699994pt;}
.h5{height:247.651326pt;}
.h41{height:255.802007pt;}
.h35{height:256.713594pt;}
.h39{height:263.848662pt;}
.h2d{height:282.603770pt;}
.h2c{height:311.588661pt;}
.h2{height:340.573551pt;}
.h44{height:346.967546pt;}
.h24{height:350.803769pt;}
.h51{height:391.297327pt;}
.h10{height:409.199990pt;}
.h2e{height:487.203329pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w4{width:206.877691pt;}
.w3{width:207.358953pt;}
.w2{width:213.283205pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x4c{left:-13.902721pt;}
.x0{left:0.000000pt;}
.x4b{left:3.519360pt;}
.x4d{left:10.408320pt;}
.xe{left:25.122240pt;}
.x6a{left:26.880080pt;}
.xc{left:33.920642pt;}
.xd{left:43.673760pt;}
.x4e{left:45.127680pt;}
.x75{left:46.041881pt;}
.x69{left:72.799409pt;}
.x43{left:80.620230pt;}
.x76{left:87.840156pt;}
.x20{left:89.922016pt;}
.x2{left:97.113825pt;}
.x1f{left:99.836013pt;}
.x71{left:106.715593pt;}
.x9c{left:107.864955pt;}
.xf{left:109.349999pt;}
.x47{left:112.619654pt;}
.x1e{left:124.642085pt;}
.x1{left:127.215704pt;}
.x91{left:137.444483pt;}
.x64{left:139.661827pt;}
.x80{left:144.637586pt;}
.x85{left:150.236928pt;}
.x8c{left:151.681923pt;}
.xb{left:154.559580pt;}
.x87{left:159.204397pt;}
.x9a{left:167.194371pt;}
.x5{left:169.445767pt;}
.x4{left:175.042554pt;}
.x2c{left:179.046861pt;}
.x2d{left:184.969991pt;}
.x9b{left:187.519925pt;}
.x3{left:197.112964pt;}
.x7{left:204.956757pt;}
.x10{left:216.956418pt;}
.x4f{left:222.404001pt;}
.x72{left:225.609283pt;}
.x50{left:229.769276pt;}
.x7b{left:231.195786pt;}
.x53{left:244.957438pt;}
.x56{left:248.639054pt;}
.x67{left:253.596477pt;}
.x9d{left:255.644853pt;}
.x65{left:256.594771pt;}
.x70{left:259.356510pt;}
.x55{left:262.080000pt;}
.x54{left:276.157438pt;}
.x36{left:314.540325pt;}
.x73{left:320.324590pt;}
.x35{left:334.858163pt;}
.x74{left:337.749987pt;}
.x6c{left:343.360351pt;}
.x6{left:344.605730pt;}
.x77{left:346.247432pt;}
.x26{left:351.517815pt;}
.x8a{left:356.003326pt;}
.x84{left:357.605222pt;}
.x7f{left:359.681456pt;}
.x4a{left:361.116247pt;}
.x46{left:365.119471pt;}
.x95{left:366.405265pt;}
.x98{left:367.360906pt;}
.x68{left:370.098591pt;}
.x66{left:372.367072pt;}
.x25{left:373.919679pt;}
.x8b{left:375.521575pt;}
.x83{left:377.123429pt;}
.x6e{left:379.999776pt;}
.x22{left:387.517567pt;}
.x94{left:393.444809pt;}
.x29{left:399.043778pt;}
.x90{left:404.802347pt;}
.x6d{left:406.564021pt;}
.x6b{left:408.480261pt;}
.x28{left:410.707243pt;}
.x27{left:412.315181pt;}
.x44{left:426.714127pt;}
.x23{left:429.442509pt;}
.x45{left:431.836870pt;}
.x24{left:434.081440pt;}
.x21{left:436.941107pt;}
.x99{left:442.086557pt;}
.x57{left:452.311981pt;}
.x34{left:458.567381pt;}
.x58{left:459.688315pt;}
.x5e{left:475.517303pt;}
.x5a{left:479.032315pt;}
.x5d{left:486.083527pt;}
.x31{left:490.233604pt;}
.x12{left:491.202386pt;}
.x5c{left:499.524492pt;}
.x33{left:505.303159pt;}
.x59{left:508.154423pt;}
.x6f{left:512.311725pt;}
.x5b{left:513.601931pt;}
.x30{left:520.314722pt;}
.x32{left:529.603222pt;}
.x5f{left:531.839349pt;}
.x63{left:550.725541pt;}
.x52{left:563.528158pt;}
.x18{left:570.713715pt;}
.x78{left:574.544066pt;}
.x1c{left:575.995913pt;}
.x1a{left:579.844819pt;}
.x79{left:586.390355pt;}
.x7a{left:598.090363pt;}
.x19{left:604.318465pt;}
.xa{left:617.765932pt;}
.x9{left:619.029449pt;}
.x2b{left:622.705431pt;}
.x8f{left:624.157199pt;}
.x8{left:625.108620pt;}
.x7e{left:627.996223pt;}
.x82{left:632.795059pt;}
.x89{left:633.754871pt;}
.x2a{left:644.172261pt;}
.x97{left:647.357264pt;}
.x1d{left:667.195181pt;}
.x1b{left:685.123198pt;}
.x49{left:697.393189pt;}
.x11{left:701.732542pt;}
.x61{left:728.807016pt;}
.x48{left:747.221762pt;}
.x60{left:766.571508pt;}
.x38{left:777.594265pt;}
.x81{left:780.793301pt;}
.x88{left:794.078622pt;}
.x86{left:795.835771pt;}
.x96{left:797.114572pt;}
.x7d{left:803.518013pt;}
.x8d{left:812.474338pt;}
.x92{left:813.914191pt;}
.x42{left:819.517410pt;}
.x3c{left:837.126746pt;}
.x3b{left:841.447095pt;}
.x93{left:846.713069pt;}
.x8e{left:847.996588pt;}
.x14{left:859.353230pt;}
.x2f{left:863.354742pt;}
.x16{left:865.110025pt;}
.x7c{left:866.392395pt;}
.x15{left:876.311622pt;}
.x2e{left:879.504980pt;}
.x17{left:889.117213pt;}
.x13{left:893.923242pt;}
.x62{left:923.045754pt;}
.x3a{left:928.798468pt;}
.x37{left:933.759302pt;}
.x41{left:936.641336pt;}
.x3d{left:938.079650pt;}
.x40{left:939.676091pt;}
.x51{left:947.512808pt;}
.x3e{left:960.009251pt;}
.x39{left:977.591217pt;}
.x3f{left:995.200554pt;}
}




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