
    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_f444d83d0a44937fb31a1bcd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_d7f8d948f4f6a45e5dd89aa4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_4d8464690446354a40e91b30.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_6041fab3f9381bad8e437ba0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765625;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_6af99816f0ebd170ef5ea10c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_be2c717e27e65cc1260ae6b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_0a37b59db16b4e5562bcd388.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.855957;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_90aedec1d5e5edbe67ebf779.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_a416e3a25ea070d3908f0a98.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.040781px;}
.lsf{letter-spacing:0.100800px;}
.ls21{letter-spacing:0.218672px;}
.ls20{letter-spacing:0.219600px;}
.ls22{letter-spacing:0.287578px;}
.ls26{letter-spacing:0.326250px;}
.ls4{letter-spacing:0.756000px;}
.ls7{letter-spacing:1.378079px;}
.ls3{letter-spacing:11.574715px;}
.ls9{letter-spacing:15.491514px;}
.ls24{letter-spacing:15.576474px;}
.lsb{letter-spacing:19.578232px;}
.ls8{letter-spacing:19.982152px;}
.ls25{letter-spacing:24.151670px;}
.ls1e{letter-spacing:24.983990px;}
.lsd{letter-spacing:32.788787px;}
.ls15{letter-spacing:39.851984px;}
.lsc{letter-spacing:40.458224px;}
.lsa{letter-spacing:40.730384px;}
.ls1{letter-spacing:41.948623px;}
.ls1f{letter-spacing:42.197743px;}
.ls10{letter-spacing:43.379983px;}
.lse{letter-spacing:47.159981px;}
.ls6{letter-spacing:50.939980px;}
.ls23{letter-spacing:54.149738px;}
.ls12{letter-spacing:54.467978px;}
.ls11{letter-spacing:58.247977px;}
.ls13{letter-spacing:60.011976px;}
.ls1d{letter-spacing:61.775975px;}
.ls18{letter-spacing:63.791974px;}
.ls1a{letter-spacing:67.319973px;}
.ls2{letter-spacing:67.868613px;}
.ls5{letter-spacing:76.499969px;}
.ls16{letter-spacing:80.387968px;}
.ls1c{letter-spacing:141.479943px;}
.ls1b{letter-spacing:145.259942px;}
.ls17{letter-spacing:148.787940px;}
.ls19{letter-spacing:152.567939px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-62.999975px;}
.ws19{word-spacing:-57.959977px;}
.ws15{word-spacing:-52.395819px;}
.wsf{word-spacing:-38.076465px;}
.ws3{word-spacing:-33.357587px;}
.ws11{word-spacing:-30.916788px;}
.ws17{word-spacing:-28.694660px;}
.ws12{word-spacing:-28.516770px;}
.ws1{word-spacing:-28.475989px;}
.ws18{word-spacing:-26.485487px;}
.ws4{word-spacing:-26.197910px;}
.ws5{word-spacing:-23.757110px;}
.ws13{word-spacing:-22.618071px;}
.wsc{word-spacing:-21.479031px;}
.ws22{word-spacing:-20.416312px;}
.ws14{word-spacing:-20.177272px;}
.wse{word-spacing:-16.597433px;}
.ws0{word-spacing:-11.878555px;}
.ws9{word-spacing:-10.739516px;}
.ws7{word-spacing:-2.751333px;}
.ws10{word-spacing:-2.323512px;}
.ws8{word-spacing:-0.869988px;}
.ws23{word-spacing:-0.408057px;}
.ws2{word-spacing:0.000000px;}
.ws24{word-spacing:0.900946px;}
.wsd{word-spacing:0.942745px;}
.ws6{word-spacing:2.478217px;}
.ws21{word-spacing:6.096144px;}
.ws1e{word-spacing:50.735896px;}
.ws1d{word-spacing:65.135890px;}
.ws1a{word-spacing:150.122338px;}
.ws1c{word-spacing:190.442149px;}
.wsa{word-spacing:269.015364px;}
.wsb{word-spacing:318.695604px;}
.ws20{word-spacing:702.039544px;}
.ws1f{word-spacing:719.783937px;}
.ws1b{word-spacing:1458.737734px;}
._7{margin-left:-4284.454531px;}
._2b{margin-left:-3183.803433px;}
._26{margin-left:-3081.725402px;}
._28{margin-left:-3011.189910px;}
._2a{margin-left:-2976.326480px;}
._23{margin-left:-2858.505618px;}
._2e{margin-left:-2834.093149px;}
._11{margin-left:-2819.428151px;}
._29{margin-left:-2565.605002px;}
._31{margin-left:-2471.929436px;}
._e{margin-left:-2069.678118px;}
._2f{margin-left:-1827.387796px;}
._21{margin-left:-1668.069031px;}
._8{margin-left:-1186.966011px;}
._b{margin-left:-1127.953880px;}
._1f{margin-left:-1104.196770px;}
._2c{margin-left:-1078.951328px;}
._2d{margin-left:-861.316288px;}
._13{margin-left:-752.949177px;}
._24{margin-left:-699.017472px;}
._27{margin-left:-453.428073px;}
._12{margin-left:-30.742752px;}
._20{margin-left:-24.275352px;}
._4{margin-left:-18.468541px;}
._32{margin-left:-17.021866px;}
._15{margin-left:-13.155112px;}
._3{margin-left:-11.720389px;}
._a{margin-left:-10.216398px;}
._14{margin-left:-9.134182px;}
._10{margin-left:-7.846874px;}
._1e{margin-left:-5.925589px;}
._5{margin-left:-4.674719px;}
._9{margin-left:-3.627160px;}
._0{margin-left:-2.606478px;}
._2{margin-left:-1.396928px;}
._1{width:1.075689px;}
._6{width:2.512095px;}
._f{width:3.845291px;}
._30{width:5.871124px;}
._16{width:14.627671px;}
._25{width:16.478892px;}
._c{width:22.653010px;}
._d{width:24.957970px;}
._22{width:30.879660px;}
._4b{width:65.556047px;}
._4c{width:69.335998px;}
._34{width:84.954667px;}
._33{width:90.799482px;}
._35{width:97.873863px;}
._48{width:165.960062px;}
._41{width:175.680679px;}
._39{width:189.360464px;}
._37{width:202.320704px;}
._3f{width:215.280418px;}
._42{width:217.022539px;}
._1a{width:289.905534px;}
._18{width:302.145255px;}
._19{width:303.585111px;}
._1d{width:317.292476px;}
._46{width:325.783611px;}
._17{width:327.274861px;}
._1c{width:328.401566px;}
._1b{width:353.195110px;}
._3b{width:501.446520px;}
._47{width:534.849025px;}
._49{width:597.815890px;}
._4a{width:699.004520px;}
._3c{width:708.034217px;}
._43{width:765.429235px;}
._40{width:828.974580px;}
._3e{width:852.606636px;}
._3d{width:876.814209px;}
._44{width:922.729440px;}
._45{width:969.430772px;}
._38{width:995.179282px;}
._36{width:1030.184228px;}
._3a{width:1179.169577px;}
.fcf{color:rgb(51,63,80);}
.fce{color:rgb(23,55,94);}
.fc0{color:rgb(0,0,0);}
.fca{color:rgb(89,89,89);}
.fcc{color:rgb(255,255,255);}
.fc10{color:rgb(7,117,1);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(46,117,182);}
.fc4{color:rgb(56,87,35);}
.fc5{color:rgb(192,0,0);}
.fc7{color:rgb(0,112,192);}
.fc8{color:rgb(47,85,151);}
.fc6{color:rgb(255,0,0);}
.fc9{color:rgb(84,130,53);}
.fcd{color:rgb(0,32,96);}
.fc2{color:transparent;}
.fcb{color:rgb(112,48,160);}
.fsd{font-size:47.519981px;}
.fs2{font-size:52.559979px;}
.fse{font-size:57.599977px;}
.fsc{font-size:68.399973px;}
.fs7{font-size:73.439971px;}
.fs10{font-size:79.199968px;}
.fs8{font-size:84.239966px;}
.fs9{font-size:89.279964px;}
.fsa{font-size:95.039962px;}
.fs12{font-size:100.079960px;}
.fs1{font-size:105.119958px;}
.fs6{font-size:115.919954px;}
.fs3{font-size:125.999950px;}
.fs11{font-size:131.759947px;}
.fsf{font-size:136.799945px;}
.fs5{font-size:147.599941px;}
.fs13{font-size:157.679937px;}
.fs0{font-size:168.479933px;}
.fs4{font-size:210.239916px;}
.fsb{font-size:231.839907px;}
.yd9{bottom:-28.799810px;}
.y11a{bottom:-28.079810px;}
.y126{bottom:-27.899810px;}
.y111{bottom:-27.359811px;}
.y160{bottom:-25.919811px;}
.y1a1{bottom:-23.219812px;}
.y1d7{bottom:-20.519813px;}
.yc9{bottom:-19.259814px;}
.y1d2{bottom:-17.819814px;}
.y1e0{bottom:-17.099815px;}
.y134{bottom:-16.919815px;}
.y159{bottom:-14.039816px;}
.y17e{bottom:-12.959816px;}
.y1ef{bottom:-10.619817px;}
.ye0{bottom:-10.259817px;}
.y19{bottom:-7.919818px;}
.y141{bottom:-7.739818px;}
.y213{bottom:-6.299819px;}
.y49{bottom:-4.859820px;}
.y12{bottom:-4.319820px;}
.yec{bottom:-4.139820px;}
.ybb{bottom:-3.959820px;}
.ya2{bottom:-3.599820px;}
.y12d{bottom:-3.419820px;}
.y196{bottom:-2.879820px;}
.y1a0{bottom:-2.159821px;}
.y107{bottom:-1.439821px;}
.y3f{bottom:-1.259821px;}
.y21e{bottom:-1.079821px;}
.y16f{bottom:-0.539821px;}
.y31{bottom:-0.179821px;}
.y0{bottom:0.000000px;}
.y110{bottom:0.180178px;}
.y79{bottom:1.620178px;}
.y1bf{bottom:2.160178px;}
.y7f{bottom:3.240142px;}
.y7d{bottom:3.240151px;}
.y96{bottom:3.240168px;}
.y94{bottom:3.240178px;}
.y92{bottom:3.240187px;}
.y9b{bottom:3.240200px;}
.y8d{bottom:3.240223px;}
.y8b{bottom:3.240232px;}
.y87{bottom:3.240259px;}
.y85{bottom:3.240268px;}
.y76{bottom:3.240286px;}
.y1fe{bottom:3.600179px;}
.ybd{bottom:3.600180px;}
.y214{bottom:3.780181px;}
.y21f{bottom:4.140179px;}
.y1e7{bottom:4.680179px;}
.ybf{bottom:4.680180px;}
.ycb{bottom:5.040186px;}
.y1d4{bottom:5.220186px;}
.y1a2{bottom:5.400179px;}
.y1b4{bottom:5.580176px;}
.y1b6{bottom:5.760176px;}
.y1e9{bottom:5.940179px;}
.y27{bottom:6.120176px;}
.ycd{bottom:6.300186px;}
.y9{bottom:6.480176px;}
.y1c1{bottom:6.660178px;}
.y1a4{bottom:6.660179px;}
.y4e{bottom:6.660180px;}
.y1a6{bottom:6.660188px;}
.y1b8{bottom:7.020176px;}
.y33{bottom:7.020179px;}
.yfd{bottom:7.020180px;}
.ye8{bottom:7.020183px;}
.y180{bottom:7.020184px;}
.y1e1{bottom:7.020185px;}
.y108{bottom:7.200179px;}
.yf4{bottom:7.380180px;}
.y162{bottom:7.380189px;}
.y171{bottom:7.740179px;}
.y20{bottom:7.740182px;}
.y18a{bottom:7.920175px;}
.yb{bottom:8.460176px;}
.y1c3{bottom:8.460178px;}
.y41{bottom:8.460179px;}
.y50{bottom:8.460180px;}
.y15b{bottom:8.460184px;}
.y1d9{bottom:8.460187px;}
.y112{bottom:8.820178px;}
.y114{bottom:8.820189px;}
.y10a{bottom:9.180179px;}
.yf5{bottom:9.180180px;}
.y143{bottom:9.180182px;}
.y136{bottom:9.180185px;}
.y164{bottom:9.180189px;}
.y14{bottom:9.900180px;}
.ydb{bottom:9.900190px;}
.y1cd{bottom:10.620179px;}
.y29{bottom:14.040176px;}
.ye6{bottom:122.100308px;}
.ye5{bottom:148.200298px;}
.y20f{bottom:153.420296px;}
.y20e{bottom:171.420288px;}
.y82{bottom:173.220288px;}
.y75{bottom:173.940000px;}
.ye4{bottom:174.120287px;}
.y20d{bottom:189.420281px;}
.y1be{bottom:191.220281px;}
.y83{bottom:199.860277px;}
.ye3{bottom:200.220277px;}
.y20c{bottom:207.420274px;}
.y187{bottom:208.500274px;}
.y14a{bottom:208.680274px;}
.y19c{bottom:211.740272px;}
.y13c{bottom:215.160271px;}
.y1ca{bottom:216.600270px;}
.yaa{bottom:217.500270px;}
.y3a{bottom:218.760269px;}
.y84{bottom:219.300000px;}
.y1bd{bottom:223.440268px;}
.yb4{bottom:223.620268px;}
.y104{bottom:225.240267px;}
.y20b{bottom:225.420267px;}
.y186{bottom:227.580266px;}
.y226{bottom:228.120266px;}
.y98{bottom:229.200265px;}
.y178{bottom:233.160264px;}
.y16a{bottom:234.600263px;}
.y71{bottom:234.780263px;}
.y1ab{bottom:236.760262px;}
.y5c{bottom:237.660262px;}
.y20a{bottom:241.260260px;}
.y149{bottom:241.620260px;}
.y86{bottom:241.800000px;}
.y13b{bottom:243.780259px;}
.y39{bottom:244.140259px;}
.y103{bottom:247.380258px;}
.ya9{bottom:247.740258px;}
.y1c9{bottom:249.540257px;}
.y225{bottom:250.800257px;}
.y185{bottom:252.960256px;}
.y19b{bottom:253.860255px;}
.y65{bottom:254.760255px;}
.y1bc{bottom:255.480255px;}
.y177{bottom:257.280254px;}
.yb3{bottom:257.820254px;}
.y190{bottom:258.360254px;}
.y5b{bottom:259.800253px;}
.y1b3{bottom:261.240253px;}
.y209{bottom:261.600252px;}
.yd4{bottom:261.780252px;}
.y1dd{bottom:263.040252px;}
.y1aa{bottom:264.300251px;}
.y88{bottom:267.540250px;}
.y169{bottom:268.080250px;}
.y38{bottom:269.340249px;}
.y102{bottom:269.520249px;}
.y13a{bottom:272.580248px;}
.y224{bottom:273.480248px;}
.y148{bottom:274.380247px;}
.y70{bottom:274.560247px;}
.y1cf{bottom:276.900246px;}
.yc4{bottom:277.260246px;}
.y24{bottom:277.440246px;}
.ya8{bottom:278.160246px;}
.y184{bottom:279.240245px;}
.y208{bottom:279.600245px;}
.y118{bottom:282.120244px;}
.y1c8{bottom:283.740244px;}
.yd3{bottom:285.000243px;}
.y64{bottom:287.520242px;}
.y176{bottom:288.060242px;}
.y1bb{bottom:288.420242px;}
.y89{bottom:290.040241px;}
.y101{bottom:291.480240px;}
.y19a{bottom:291.660240px;}
.yb2{bottom:291.840240px;}
.y168{bottom:292.020240px;}
.y1b2{bottom:293.280240px;}
.y6f{bottom:294.540239px;}
.y1ee{bottom:296.340238px;}
.y207{bottom:297.600238px;}
.y2b{bottom:300.840237px;}
.yf{bottom:301.200237px;}
.yd2{bottom:301.560236px;}
.y23{bottom:301.740236px;}
.y1dc{bottom:303.720236px;}
.yc3{bottom:304.620235px;}
.y147{bottom:307.140234px;}
.ya7{bottom:308.400234px;}
.y223{bottom:308.760233px;}
.y8a{bottom:309.480000px;}
.y117{bottom:309.660233px;}
.y99{bottom:310.380233px;}
.y6e{bottom:314.340231px;}
.y206{bottom:315.600231px;}
.y1c7{bottom:315.960231px;}
.yf8{bottom:318.120230px;}
.y175{bottom:319.380229px;}
.y37{bottom:319.920229px;}
.y218{bottom:320.100229px;}
.y63{bottom:320.460229px;}
.y10d{bottom:321.000229px;}
.y167{bottom:322.620228px;}
.y1ed{bottom:323.340228px;}
.yd1{bottom:324.420227px;}
.y131{bottom:325.140227px;}
.y11d{bottom:325.500227px;}
.yb1{bottom:326.040227px;}
.y154{bottom:327.480226px;}
.y5a{bottom:328.020226px;}
.y183{bottom:328.740226px;}
.y199{bottom:329.460225px;}
.y222{bottom:331.440224px;}
.y8c{bottom:331.980000px;}
.yc2{bottom:332.160224px;}
.y18f{bottom:332.520224px;}
.y205{bottom:333.600224px;}
.y44{bottom:336.120223px;}
.ya6{bottom:338.640222px;}
.y129{bottom:339.000221px;}
.ye{bottom:339.180221px;}
.y146{bottom:340.080221px;}
.yd0{bottom:340.260221px;}
.y139{bottom:343.140220px;}
.y1db{bottom:344.400219px;}
.y36{bottom:345.120219px;}
.y1d5{bottom:346.560218px;}
.y1a9{bottom:346.920218px;}
.y1c6{bottom:348.720218px;}
.y59{bottom:350.160217px;}
.y116{bottom:350.520217px;}
.y2a{bottom:351.420216px;}
.y204{bottom:351.780216px;}
.y174{bottom:353.040216px;}
.y166{bottom:353.220216px;}
.y62{bottom:353.400216px;}
.y221{bottom:354.120215px;}
.y153{bottom:354.480215px;}
.y1ba{bottom:354.840215px;}
.yf7{bottom:355.020215px;}
.y1ce{bottom:357.360214px;}
.y1b1{bottom:357.540214px;}
.y8e{bottom:357.720214px;}
.y10c{bottom:357.900214px;}
.y217{bottom:358.440214px;}
.yc1{bottom:359.700213px;}
.yb0{bottom:360.060213px;}
.y18e{bottom:360.960213px;}
.y130{bottom:361.500212px;}
.y100{bottom:362.040212px;}
.ycf{bottom:363.120212px;}
.y1af{bottom:364.200211px;}
.y11c{bottom:365.280211px;}
.y52{bottom:366.540210px;}
.y198{bottom:367.260210px;}
.y1ec{bottom:367.440210px;}
.y1a8{bottom:367.980210px;}
.y203{bottom:369.600209px;}
.y201{bottom:369.780209px;}
.y43{bottom:370.140209px;}
.y35{bottom:370.320209px;}
.y138{bottom:371.760208px;}
.y145{bottom:372.840208px;}
.ydc{bottom:376.440206px;}
.y22{bottom:376.620206px;}
.yd{bottom:376.980206px;}
.y115{bottom:378.060206px;}
.y128{bottom:378.600206px;}
.yce{bottom:378.780205px;}
.y173{bottom:380.040205px;}
.y8f{bottom:380.220205px;}
.y6d{bottom:380.400205px;}
.y152{bottom:381.480204px;}
.ya5{bottom:382.200204px;}
.y182{bottom:382.920204px;}
.y1c5{bottom:383.640204px;}
.yff{bottom:384.180203px;}
.y165{bottom:384.720203px;}
.y1da{bottom:385.080203px;}
.y202{bottom:385.440203px;}
.y61{bottom:386.160203px;}
.y1b9{bottom:386.880202px;}
.y9a{bottom:388.320000px;}
.y15{bottom:389.040201px;}
.y18d{bottom:389.400201px;}
.y1b0{bottom:389.760201px;}
.y15c{bottom:391.740200px;}
.y200{bottom:392.640200px;}
.y1eb{bottom:393.360200px;}
.y1e2{bottom:394.080199px;}
.y1a7{bottom:395.520199px;}
.y1ae{bottom:396.240199px;}
.y216{bottom:397.500198px;}
.y6c{bottom:400.380197px;}
.y137{bottom:400.560197px;}
.y1f1{bottom:400.740197px;}
.y21{bottom:400.920197px;}
.y12f{bottom:402.180196px;}
.y90{bottom:402.720196px;}
.y42{bottom:404.340195px;}
.yf6{bottom:405.060195px;}
.y144{bottom:405.600195px;}
.yfe{bottom:406.140195px;}
.y197{bottom:406.500194px;}
.y51{bottom:407.220194px;}
.yda{bottom:407.580000px;}
.y10b{bottom:407.940194px;}
.y181{bottom:408.120194px;}
.y11b{bottom:408.300000px;}
.y127{bottom:408.480000px;}
.y151{bottom:408.480194px;}
.y113{bottom:410.100000px;}
.y163{bottom:411.180000px;}
.y1c4{bottom:412.080192px;}
.ya4{bottom:412.440192px;}
.y161{bottom:412.980000px;}
.y172{bottom:414.600191px;}
.yc0{bottom:414.780191px;}
.yc{bottom:414.960191px;}
.y1a5{bottom:416.400000px;}
.y1d8{bottom:417.300000px;}
.y18c{bottom:417.840190px;}
.y58{bottom:418.380190px;}
.y60{bottom:419.100189px;}
.y135{bottom:420.180000px;}
.y6b{bottom:420.180189px;}
.y1ea{bottom:420.360189px;}
.ycc{bottom:420.720000px;}
.y34{bottom:420.900189px;}
.y1ad{bottom:421.800188px;}
.yca{bottom:421.980000px;}
.y91{bottom:422.160000px;}
.y215{bottom:422.520188px;}
.y1d3{bottom:423.240000px;}
.y15a{bottom:423.780000px;}
.y220{bottom:425.220187px;}
.y17f{bottom:426.300000px;}
.y1ff{bottom:427.740186px;}
.y1f0{bottom:428.640000px;}
.ye7{bottom:429.000000px;}
.y142{bottom:429.360000px;}
.y1f{bottom:430.620000px;}
.y13{bottom:432.060000px;}
.y4f{bottom:432.960000px;}
.ya3{bottom:434.220000px;}
.yfc{bottom:434.400000px;}
.y4d{bottom:434.760000px;}
.y150{bottom:435.300000px;}
.y109{bottom:435.660000px;}
.y12e{bottom:436.200000px;}
.y1cc{bottom:436.380000px;}
.y40{bottom:436.560000px;}
.y1a3{bottom:437.460000px;}
.ybe{bottom:437.640000px;}
.y170{bottom:438.000000px;}
.y28{bottom:438.360000px;}
.ybc{bottom:438.720000px;}
.y32{bottom:439.080000px;}
.y1e8{bottom:439.800000px;}
.y1c2{bottom:439.980000px;}
.y1e6{bottom:441.060000px;}
.y1c0{bottom:441.780000px;}
.y1fd{bottom:442.140000px;}
.ya{bottom:444.300000px;}
.y93{bottom:444.660000px;}
.y1b7{bottom:444.840000px;}
.y18b{bottom:445.740000px;}
.y1b5{bottom:446.100000px;}
.y8{bottom:446.280000px;}
.y1ac{bottom:454.020175px;}
.yaf{bottom:457.980174px;}
.y125{bottom:458.160174px;}
.y17d{bottom:458.700174px;}
.yc8{bottom:459.960173px;}
.y1d1{bottom:460.500173px;}
.y15f{bottom:461.040173px;}
.y1fc{bottom:461.580172px;}
.y18{bottom:462.660172px;}
.yfb{bottom:463.560172px;}
.y1df{bottom:464.100171px;}
.ydf{bottom:464.820171px;}
.y1d6{bottom:466.080171px;}
.y158{bottom:466.440170px;}
.y212{bottom:467.880170px;}
.y14f{bottom:468.960169px;}
.y95{bottom:469.500000px;}
.yba{bottom:469.680169px;}
.y7a{bottom:470.400169px;}
.y140{bottom:471.300168px;}
.y1e5{bottom:471.660168px;}
.y19f{bottom:472.380168px;}
.yd8{bottom:476.160167px;}
.y16e{bottom:477.060166px;}
.y3e{bottom:479.040165px;}
.yc7{bottom:479.940165px;}
.y195{bottom:480.480165px;}
.y1fb{bottom:481.740164px;}
.y48{bottom:482.100164px;}
.y72{bottom:484.260163px;}
.y12c{bottom:484.800163px;}
.y6a{bottom:486.240163px;}
.y57{bottom:486.780162px;}
.y189{bottom:488.220162px;}
.y5e{bottom:490.200161px;}
.y17c{bottom:490.380161px;}
.y7{bottom:490.560161px;}
.y21d{bottom:491.460160px;}
.yeb{bottom:492.180160px;}
.y7b{bottom:492.900160px;}
.yde{bottom:493.800159px;}
.yae{bottom:495.060159px;}
.y1d0{bottom:496.140159px;}
.y30{bottom:496.500158px;}
.y124{bottom:497.940158px;}
.y1cb{bottom:499.200157px;}
.y1fa{bottom:499.740157px;}
.y17{bottom:500.280157px;}
.y1de{bottom:500.460157px;}
.y26{bottom:502.800156px;}
.y14e{bottom:503.520156px;}
.y19e{bottom:504.420155px;}
.y69{bottom:506.220155px;}
.y157{bottom:507.120154px;}
.y211{bottom:508.380154px;}
.y56{bottom:508.920153px;}
.y15e{bottom:510.720153px;}
.y119{bottom:510.900153px;}
.y7c{bottom:512.340000px;}
.yc6{bottom:512.880152px;}
.y3d{bottom:513.060152px;}
.y16d{bottom:514.860151px;}
.y1f9{bottom:515.580151px;}
.y17b{bottom:515.760151px;}
.y13f{bottom:517.380150px;}
.y21c{bottom:518.640150px;}
.yd7{bottom:521.520148px;}
.y2f{bottom:521.880148px;}
.y47{bottom:524.040147px;}
.yb9{bottom:524.760147px;}
.y194{bottom:525.300147px;}
.ya1{bottom:527.640146px;}
.y10f{bottom:528.000146px;}
.y6{bottom:528.540146px;}
.yea{bottom:529.080145px;}
.y188{bottom:530.340145px;}
.y55{bottom:531.060145px;}
.y106{bottom:531.960144px;}
.y7e{bottom:534.840000px;}
.y1f8{bottom:535.920143px;}
.y11e{bottom:537.180142px;}
.y123{bottom:537.720142px;}
.yb8{bottom:539.160141px;}
.y19d{bottom:540.780141px;}
.y17a{bottom:540.960141px;}
.y14d{bottom:542.760140px;}
.y15d{bottom:543.480140px;}
.yad{bottom:545.100139px;}
.yc5{bottom:546.000139px;}
.y16c{bottom:546.180139px;}
.y2e{bottom:547.080138px;}
.y3c{bottom:547.260138px;}
.y156{bottom:547.800138px;}
.y13e{bottom:550.140137px;}
.ya0{bottom:550.500137px;}
.y97{bottom:553.740136px;}
.y1f7{bottom:553.920135px;}
.y10e{bottom:555.540135px;}
.y133{bottom:557.340134px;}
.y1e4{bottom:558.420134px;}
.y210{bottom:560.040133px;}
.y80{bottom:560.580133px;}
.y5d{bottom:562.920132px;}
.ye9{bottom:565.980131px;}
.yd6{bottom:567.060130px;}
.y105{bottom:568.860129px;}
.y1f5{bottom:571.920128px;}
.y2d{bottom:572.280128px;}
.y179{bottom:572.820128px;}
.y16{bottom:575.160127px;}
.yfa{bottom:576.060127px;}
.y46{bottom:576.960126px;}
.y122{bottom:577.500126px;}
.y14c{bottom:579.660125px;}
.y25{bottom:580.560125px;}
.y3b{bottom:581.280124px;}
.y155{bottom:581.820124px;}
.yac{bottom:582.000124px;}
.y13d{bottom:582.900124px;}
.y81{bottom:583.080124px;}
.y16b{bottom:583.980123px;}
.y132{bottom:585.960123px;}
.y9f{bottom:586.320122px;}
.y1f6{bottom:587.760122px;}
.y1e3{bottom:589.380121px;}
.y21b{bottom:590.280121px;}
.y1f4{bottom:591.000121px;}
.y68{bottom:592.080120px;}
.yb7{bottom:594.240119px;}
.y5{bottom:594.420119px;}
.y54{bottom:600.360117px;}
.yf9{bottom:607.020114px;}
.yb6{bottom:608.460114px;}
.y67{bottom:612.060112px;}
.yd5{bottom:612.420112px;}
.y21a{bottom:612.960112px;}
.y45{bottom:616.740110px;}
.yab{bottom:618.900109px;}
.y4{bottom:623.940107px;}
.y2c{bottom:624.120107px;}
.y53{bottom:627.000106px;}
.y66{bottom:631.860104px;}
.yb5{bottom:636.000103px;}
.y9e{bottom:639.600101px;}
.y1f3{bottom:639.960101px;}
.ye2{bottom:640.500101px;}
.y74{bottom:647.880098px;}
.y3{bottom:650.760097px;}
.y78{bottom:652.020096px;}
.y193{bottom:659.220093px;}
.y12b{bottom:663.000092px;}
.yf3{bottom:668.760089px;}
.yf2{bottom:669.120089px;}
.ye1{bottom:669.480089px;}
.y219{bottom:679.020085px;}
.y2{bottom:679.200085px;}
.ydd{bottom:679.740085px;}
.y14b{bottom:680.460085px;}
.y1e{bottom:682.980084px;}
.y1d{bottom:683.340084px;}
.y9d{bottom:685.140083px;}
.y121{bottom:686.400082px;}
.y192{bottom:687.660082px;}
.y11{bottom:691.080081px;}
.y4c{bottom:697.020078px;}
.yf1{bottom:697.200078px;}
.y4b{bottom:697.380078px;}
.yf0{bottom:697.560078px;}
.y11f{bottom:699.900077px;}
.y5f{bottom:700.260077px;}
.y1f2{bottom:700.440077px;}
.y12a{bottom:708.360074px;}
.y77{bottom:708.900073px;}
.y73{bottom:710.340073px;}
.y1c{bottom:711.240073px;}
.y1b{bottom:711.600072px;}
.y1{bottom:711.780072px;}
.y191{bottom:716.100071px;}
.y120{bottom:720.420069px;}
.yef{bottom:725.460067px;}
.yee{bottom:725.820067px;}
.y4a{bottom:727.260066px;}
.y9c{bottom:730.500065px;}
.y1a{bottom:741.480060px;}
.y10{bottom:747.960058px;}
.yed{bottom:755.700055px;}
.h6b{height:0.180000px;}
.h61{height:0.540000px;}
.h6c{height:1.440000px;}
.h25{height:1.620000px;}
.h7{height:1.980000px;}
.h33{height:3.420000px;}
.h46{height:3.960000px;}
.h7d{height:4.140000px;}
.h6f{height:4.500000px;}
.h58{height:4.680000px;}
.h73{height:4.860000px;}
.h7a{height:5.220000px;}
.h38{height:6.300000px;}
.h7b{height:6.480000px;}
.h59{height:6.660000px;}
.h48{height:7.020000px;}
.h14{height:7.200000px;}
.h7f{height:7.380000px;}
.h30{height:7.560000px;}
.h11{height:7.920000px;}
.h5d{height:8.280000px;}
.h31{height:8.640000px;}
.h66{height:8.820000px;}
.h76{height:9.540000px;}
.h16{height:9.720000px;}
.h72{height:9.900000px;}
.h4c{height:10.080000px;}
.h43{height:10.620000px;}
.h54{height:10.980000px;}
.h2d{height:11.340000px;}
.h1b{height:11.520000px;}
.h3f{height:11.880000px;}
.h29{height:12.060000px;}
.h2f{height:12.240000px;}
.h24{height:12.780000px;}
.h1c{height:13.320000px;}
.hb{height:14.220000px;}
.h22{height:14.400000px;}
.h3a{height:14.760000px;}
.h82{height:15.480000px;}
.he{height:15.660000px;}
.h55{height:16.020000px;}
.h4f{height:16.920000px;}
.h3b{height:17.280000px;}
.h7c{height:17.640000px;}
.h52{height:19.440000px;}
.hd{height:19.620000px;}
.h5f{height:19.980000px;}
.h3e{height:20.160000px;}
.h64{height:20.340000px;}
.h79{height:20.700000px;}
.h65{height:21.600000px;}
.h56{height:22.500000px;}
.h74{height:23.040000px;}
.h19{height:23.400000px;}
.h75{height:24.120000px;}
.h34{height:24.300000px;}
.h12{height:24.840000px;}
.h1a{height:25.200000px;}
.h35{height:25.560000px;}
.h4e{height:26.100000px;}
.h28{height:26.460000px;}
.h4b{height:26.640000px;}
.h5c{height:27.000000px;}
.h3d{height:28.440000px;}
.h15{height:28.800000px;}
.h77{height:28.980000px;}
.h69{height:29.160000px;}
.h40{height:29.340000px;}
.h63{height:29.700000px;}
.h67{height:29.880000px;}
.h6d{height:30.420000px;}
.h6a{height:30.600000px;}
.h9{height:30.780000px;}
.h42{height:31.140000px;}
.h45{height:31.500000px;}
.h6e{height:32.220000px;}
.h5a{height:33.300000px;}
.h70{height:33.840000px;}
.h5b{height:35.100000px;}
.h47{height:36.180000px;}
.h6{height:36.540000px;}
.h3{height:36.545610px;}
.h4a{height:37.800000px;}
.h49{height:37.980000px;}
.h39{height:38.700000px;}
.h23{height:39.190062px;}
.h4{height:43.346584px;}
.h7e{height:44.066584px;}
.h26{height:47.503106px;}
.h2b{height:47.559356px;}
.hf{height:51.063730px;}
.h2e{height:52.368729px;}
.h10{height:56.160000px;}
.h2c{height:56.409938px;}
.h37{height:60.566460px;}
.h36{height:65.316771px;}
.h78{height:68.354973px;}
.h1d{height:69.473293px;}
.h62{height:71.859346px;}
.h32{height:72.764971px;}
.h13{height:73.091221px;}
.h1e{height:73.629814px;}
.h81{height:76.595594px;}
.h1f{height:78.380125px;}
.h53{height:82.536647px;}
.h60{height:82.603092px;}
.h2{height:86.693168px;}
.h27{height:87.609340px;}
.h80{height:87.859652px;}
.h5e{height:93.116213px;}
.hc{height:95.600001px;}
.h68{height:99.123710px;}
.h20{height:102.628084px;}
.h5{height:103.913044px;}
.h51{height:104.380271px;}
.h41{height:104.737458px;}
.h44{height:108.663355px;}
.h4d{height:109.636831px;}
.h2a{height:112.819877px;}
.h50{height:120.900889px;}
.ha{height:121.726709px;}
.h71{height:130.039753px;}
.h18{height:131.414010px;}
.h1{height:138.946585px;}
.h3c{height:142.678068px;}
.h17{height:153.942126px;}
.h57{height:164.455247px;}
.h8{height:173.386337px;}
.h21{height:191.200002px;}
.h0{height:892.500000px;}
.w19{width:3.600000px;}
.w2e{width:6.300000px;}
.w60{width:6.480000px;}
.w35{width:6.660000px;}
.w55{width:7.200000px;}
.w49{width:8.640000px;}
.w4c{width:9.180000px;}
.w38{width:10.080000px;}
.w5a{width:10.260000px;}
.wb{width:10.980000px;}
.w3{width:11.340000px;}
.w32{width:12.060000px;}
.w53{width:13.140000px;}
.w27{width:13.680000px;}
.w51{width:13.860000px;}
.w3c{width:17.100000px;}
.w4f{width:17.640000px;}
.w29{width:18.720000px;}
.w12{width:19.980000px;}
.w36{width:27.180000px;}
.w2{width:28.080000px;}
.w5e{width:29.880000px;}
.w1d{width:32.219640px;}
.w1c{width:32.579640px;}
.w14{width:34.919640px;}
.w18{width:36.900000px;}
.w13{width:39.420000px;}
.w1f{width:41.400000px;}
.w1e{width:41.580000px;}
.w15{width:43.739640px;}
.w26{width:46.800000px;}
.w31{width:49.680000px;}
.w1a{width:52.559640px;}
.w16{width:59.579640px;}
.w1b{width:62.819640px;}
.w22{width:64.800000px;}
.w54{width:66.240000px;}
.w17{width:68.579640px;}
.w2a{width:68.760000px;}
.w20{width:70.200000px;}
.w56{width:70.380000px;}
.w2c{width:72.180000px;}
.w9{width:73.980000px;}
.w21{width:85.140000px;}
.w10{width:87.840000px;}
.w43{width:93.780000px;}
.w5b{width:96.480000px;}
.w34{width:104.399640px;}
.w2b{width:127.439640px;}
.w2f{width:134.459640px;}
.w6{width:134.640000px;}
.w11{width:140.400000px;}
.w3d{width:143.459640px;}
.wc{width:145.439640px;}
.w24{width:152.820000px;}
.w47{width:159.480000px;}
.w1{width:181.080000px;}
.w5f{width:183.420000px;}
.w44{width:192.960000px;}
.w5c{width:205.560000px;}
.w25{width:217.980000px;}
.we{width:218.519640px;}
.w5d{width:225.720000px;}
.w46{width:240.660000px;}
.wf{width:246.960000px;}
.w4d{width:322.020000px;}
.w4e{width:340.560000px;}
.w4b{width:344.880000px;}
.w42{width:357.840000px;}
.w3a{width:362.519640px;}
.w45{width:395.820000px;}
.w58{width:409.320000px;}
.w40{width:426.599640px;}
.w41{width:438.659640px;}
.w7{width:445.679640px;}
.w59{width:458.280000px;}
.w28{width:501.120000px;}
.w2d{width:519.120000px;}
.w8{width:543.240000px;}
.w23{width:597.779640px;}
.w3f{width:607.139640px;}
.w57{width:721.440000px;}
.w61{width:753.660000px;}
.w30{width:823.320000px;}
.wd{width:842.220000px;}
.w5{width:842.399640px;}
.w3e{width:871.020000px;}
.wa{width:881.279640px;}
.w48{width:885.600000px;}
.w4a{width:887.940000px;}
.w4{width:898.199640px;}
.w50{width:937.259640px;}
.w3b{width:997.019640px;}
.w39{width:1021.679640px;}
.w37{width:1032.659640px;}
.w52{width:1038.599640px;}
.w33{width:1051.199640px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:35.625886px;}
.x5{left:75.405960px;}
.xa{left:77.925869px;}
.x3d{left:79.365868px;}
.x16{left:83.145867px;}
.x15{left:84.765866px;}
.x3c{left:87.105865px;}
.xf{left:88.365865px;}
.x5a{left:89.625864px;}
.x3f{left:90.885864px;}
.xb{left:93.045863px;}
.x2d{left:95.385862px;}
.x1{left:96.645861px;}
.x8{left:99.165960px;}
.x9{left:100.965860px;}
.x6{left:103.485960px;}
.x29{left:105.645960px;}
.x3e{left:107.265857px;}
.x34{left:108.705960px;}
.x2f{left:110.685856px;}
.x7{left:114.825960px;}
.x5f{left:120.225852px;}
.x10{left:125.265850px;}
.x28{left:132.825960px;}
.x56{left:136.065846px;}
.x2c{left:138.765960px;}
.x24{left:141.645960px;}
.xd{left:143.445843px;}
.x57{left:147.225841px;}
.x11{left:149.025840px;}
.x2b{left:151.366439px;}
.x21{left:154.606438px;}
.x23{left:157.305960px;}
.x2a{left:158.746437px;}
.x2e{left:160.185836px;}
.x25{left:161.806435px;}
.x27{left:163.246435px;}
.x20{left:166.665960px;}
.x19{left:168.465960px;}
.x22{left:173.146431px;}
.x33{left:174.946430px;}
.x59{left:182.325600px;}
.x42{left:190.966424px;}
.x67{left:203.386419px;}
.x26{left:209.326416px;}
.x60{left:214.905600px;}
.x4a{left:221.745600px;}
.x61{left:238.486405px;}
.x5e{left:239.925600px;}
.x62{left:262.246395px;}
.x41{left:271.245792px;}
.x64{left:285.826386px;}
.x14{left:294.465600px;}
.x58{left:295.545782px;}
.x47{left:303.105600px;}
.x65{left:328.485600px;}
.x66{left:335.685600px;}
.x53{left:345.226362px;}
.x44{left:352.425600px;}
.x52{left:360.526356px;}
.x45{left:376.185600px;}
.x38{left:377.265749px;}
.x48{left:380.325600px;}
.x39{left:383.565747px;}
.x3a{left:396.705741px;}
.x4c{left:398.506341px;}
.xe{left:403.545739px;}
.x4b{left:408.766336px;}
.x1a{left:413.625600px;}
.x5d{left:420.285732px;}
.x63{left:443.146323px;}
.x40{left:457.726317px;}
.x46{left:459.886316px;}
.x43{left:480.406308px;}
.x30{left:503.805600px;}
.x12{left:523.605600px;}
.x5b{left:538.726285px;}
.x4e{left:546.466281px;}
.x54{left:549.166280px;}
.xc{left:551.145600px;}
.x4d{left:558.346277px;}
.x4f{left:570.405600px;}
.x31{left:600.105600px;}
.x6b{left:612.166255px;}
.x4{left:614.506254px;}
.x50{left:635.746246px;}
.x51{left:642.586243px;}
.x6a{left:682.725600px;}
.x1b{left:687.045600px;}
.x68{left:692.986223px;}
.x35{left:706.485600px;}
.x32{left:711.525600px;}
.x69{left:734.566206px;}
.x1c{left:741.765600px;}
.x6d{left:746.986201px;}
.x6c{left:753.466199px;}
.x17{left:805.845578px;}
.x18{left:813.765574px;}
.x3b{left:821.505571px;}
.x1d{left:856.065600px;}
.x36{left:859.305600px;}
.x55{left:896.386141px;}
.x49{left:899.445600px;}
.x2{left:905.746138px;}
.x1e{left:1023.105600px;}
.x13{left:1066.845600px;}
.x1f{left:1069.545600px;}
.x37{left:1077.285600px;}
.x5c{left:1102.665600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.036250pt;}
.lsf{letter-spacing:0.089600pt;}
.ls21{letter-spacing:0.194375pt;}
.ls20{letter-spacing:0.195200pt;}
.ls22{letter-spacing:0.255625pt;}
.ls26{letter-spacing:0.290000pt;}
.ls4{letter-spacing:0.672000pt;}
.ls7{letter-spacing:1.224960pt;}
.ls3{letter-spacing:10.288636pt;}
.ls9{letter-spacing:13.770234pt;}
.ls24{letter-spacing:13.845754pt;}
.lsb{letter-spacing:17.402873pt;}
.ls8{letter-spacing:17.761913pt;}
.ls25{letter-spacing:21.468151pt;}
.ls1e{letter-spacing:22.207991pt;}
.lsd{letter-spacing:29.145588pt;}
.ls15{letter-spacing:35.423986pt;}
.lsc{letter-spacing:35.962866pt;}
.lsa{letter-spacing:36.204786pt;}
.ls1{letter-spacing:37.287665pt;}
.ls1f{letter-spacing:37.509105pt;}
.ls10{letter-spacing:38.559985pt;}
.lse{letter-spacing:41.919983pt;}
.ls6{letter-spacing:45.279982pt;}
.ls23{letter-spacing:48.133101pt;}
.ls12{letter-spacing:48.415981pt;}
.ls11{letter-spacing:51.775979pt;}
.ls13{letter-spacing:53.343979pt;}
.ls1d{letter-spacing:54.911978pt;}
.ls18{letter-spacing:56.703977pt;}
.ls1a{letter-spacing:59.839976pt;}
.ls2{letter-spacing:60.327656pt;}
.ls5{letter-spacing:67.999973pt;}
.ls16{letter-spacing:71.455971pt;}
.ls1c{letter-spacing:125.759950pt;}
.ls1b{letter-spacing:129.119948pt;}
.ls17{letter-spacing:132.255947pt;}
.ls19{letter-spacing:135.615946pt;}
.ws16{word-spacing:-55.999978pt;}
.ws19{word-spacing:-51.519979pt;}
.ws15{word-spacing:-46.574061pt;}
.wsf{word-spacing:-33.845746pt;}
.ws3{word-spacing:-29.651188pt;}
.ws11{word-spacing:-27.481589pt;}
.ws17{word-spacing:-25.506365pt;}
.ws12{word-spacing:-25.348240pt;}
.ws1{word-spacing:-25.311990pt;}
.ws18{word-spacing:-23.542655pt;}
.ws4{word-spacing:-23.287031pt;}
.ws5{word-spacing:-21.117432pt;}
.ws13{word-spacing:-20.104952pt;}
.wsc{word-spacing:-19.092472pt;}
.ws22{word-spacing:-18.147833pt;}
.ws14{word-spacing:-17.935353pt;}
.wse{word-spacing:-14.753274pt;}
.ws0{word-spacing:-10.558716pt;}
.ws9{word-spacing:-9.546236pt;}
.ws7{word-spacing:-2.445630pt;}
.ws10{word-spacing:-2.065344pt;}
.ws8{word-spacing:-0.773323pt;}
.ws23{word-spacing:-0.362717pt;}
.ws2{word-spacing:0.000000pt;}
.ws24{word-spacing:0.800841pt;}
.wsd{word-spacing:0.837995pt;}
.ws6{word-spacing:2.202859pt;}
.ws21{word-spacing:5.418795pt;}
.ws1e{word-spacing:45.098574pt;}
.ws1d{word-spacing:57.898569pt;}
.ws1a{word-spacing:133.442078pt;}
.ws1c{word-spacing:169.281910pt;}
.wsa{word-spacing:239.124768pt;}
.wsb{word-spacing:283.284981pt;}
.ws20{word-spacing:624.035150pt;}
.ws1f{word-spacing:639.807944pt;}
.ws1b{word-spacing:1296.655764pt;}
._7{margin-left:-3808.404028pt;}
._2b{margin-left:-2830.047496pt;}
._26{margin-left:-2739.311468pt;}
._28{margin-left:-2676.613253pt;}
._2a{margin-left:-2645.623538pt;}
._23{margin-left:-2540.893882pt;}
._2e{margin-left:-2519.193911pt;}
._11{margin-left:-2506.158356pt;}
._29{margin-left:-2280.537779pt;}
._31{margin-left:-2197.270609pt;}
._e{margin-left:-1839.713883pt;}
._2f{margin-left:-1624.344707pt;}
._21{margin-left:-1482.728028pt;}
._8{margin-left:-1055.080899pt;}
._b{margin-left:-1002.625671pt;}
._1f{margin-left:-981.508240pt;}
._2c{margin-left:-959.067847pt;}
._2d{margin-left:-765.614479pt;}
._13{margin-left:-669.288157pt;}
._24{margin-left:-621.348864pt;}
._27{margin-left:-403.047176pt;}
._12{margin-left:-27.326891pt;}
._20{margin-left:-21.578091pt;}
._4{margin-left:-16.416481pt;}
._32{margin-left:-15.130548pt;}
._15{margin-left:-11.693433pt;}
._3{margin-left:-10.418124pt;}
._a{margin-left:-9.081243pt;}
._14{margin-left:-8.119273pt;}
._10{margin-left:-6.974999pt;}
._1e{margin-left:-5.267190pt;}
._5{margin-left:-4.155306pt;}
._9{margin-left:-3.224142pt;}
._0{margin-left:-2.316869pt;}
._2{margin-left:-1.241714pt;}
._1{width:0.956168pt;}
._6{width:2.232974pt;}
._f{width:3.418036pt;}
._30{width:5.218777pt;}
._16{width:13.002375pt;}
._25{width:14.647904pt;}
._c{width:20.136008pt;}
._d{width:22.184863pt;}
._22{width:27.448586pt;}
._4b{width:58.272042pt;}
._4c{width:61.631998pt;}
._34{width:75.515260pt;}
._33{width:80.710650pt;}
._35{width:86.998989pt;}
._48{width:147.520055pt;}
._41{width:156.160603pt;}
._39{width:168.320413pt;}
._37{width:179.840626pt;}
._3f{width:191.360371pt;}
._42{width:192.908923pt;}
._1a{width:257.693808pt;}
._18{width:268.573560pt;}
._19{width:269.853432pt;}
._1d{width:282.037756pt;}
._46{width:289.585432pt;}
._17{width:290.910988pt;}
._1c{width:291.912503pt;}
._1b{width:313.951209pt;}
._3b{width:445.730240pt;}
._47{width:475.421356pt;}
._49{width:531.391902pt;}
._4a{width:621.337351pt;}
._3c{width:629.363749pt;}
._43{width:680.381542pt;}
._40{width:736.866294pt;}
._3e{width:757.872566pt;}
._3d{width:779.390408pt;}
._44{width:820.203946pt;}
._45{width:861.716241pt;}
._38{width:884.603806pt;}
._36{width:915.719314pt;}
._3a{width:1048.150735pt;}
.fsd{font-size:42.239983pt;}
.fs2{font-size:46.719981pt;}
.fse{font-size:51.199980pt;}
.fsc{font-size:60.799976pt;}
.fs7{font-size:65.279974pt;}
.fs10{font-size:70.399972pt;}
.fs8{font-size:74.879970pt;}
.fs9{font-size:79.359968pt;}
.fsa{font-size:84.479966pt;}
.fs12{font-size:88.959964pt;}
.fs1{font-size:93.439963pt;}
.fs6{font-size:103.039959pt;}
.fs3{font-size:111.999955pt;}
.fs11{font-size:117.119953pt;}
.fsf{font-size:121.599951pt;}
.fs5{font-size:131.199948pt;}
.fs13{font-size:140.159944pt;}
.fs0{font-size:149.759940pt;}
.fs4{font-size:186.879925pt;}
.fsb{font-size:206.079918pt;}
.yd9{bottom:-25.599831pt;}
.y11a{bottom:-24.959831pt;}
.y126{bottom:-24.799831pt;}
.y111{bottom:-24.319832pt;}
.y160{bottom:-23.039832pt;}
.y1a1{bottom:-20.639833pt;}
.y1d7{bottom:-18.239834pt;}
.yc9{bottom:-17.119834pt;}
.y1d2{bottom:-15.839835pt;}
.y1e0{bottom:-15.199835pt;}
.y134{bottom:-15.039835pt;}
.y159{bottom:-12.479836pt;}
.y17e{bottom:-11.519837pt;}
.y1ef{bottom:-9.439838pt;}
.ye0{bottom:-9.119838pt;}
.y19{bottom:-7.039839pt;}
.y141{bottom:-6.879839pt;}
.y213{bottom:-5.599839pt;}
.y49{bottom:-4.319840pt;}
.y12{bottom:-3.839840pt;}
.yec{bottom:-3.679840pt;}
.ybb{bottom:-3.519840pt;}
.ya2{bottom:-3.199840pt;}
.y12d{bottom:-3.039840pt;}
.y196{bottom:-2.559840pt;}
.y1a0{bottom:-1.919841pt;}
.y107{bottom:-1.279841pt;}
.y3f{bottom:-1.119841pt;}
.y21e{bottom:-0.959841pt;}
.y16f{bottom:-0.479841pt;}
.y31{bottom:-0.159841pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:0.160159pt;}
.y79{bottom:1.440158pt;}
.y1bf{bottom:1.920158pt;}
.y7f{bottom:2.880126pt;}
.y7d{bottom:2.880134pt;}
.y96{bottom:2.880149pt;}
.y94{bottom:2.880158pt;}
.y92{bottom:2.880166pt;}
.y9b{bottom:2.880178pt;}
.y8d{bottom:2.880198pt;}
.y8b{bottom:2.880206pt;}
.y87{bottom:2.880230pt;}
.y85{bottom:2.880238pt;}
.y76{bottom:2.880254pt;}
.y1fe{bottom:3.200159pt;}
.ybd{bottom:3.200160pt;}
.y214{bottom:3.360161pt;}
.y21f{bottom:3.680159pt;}
.y1e7{bottom:4.160159pt;}
.ybf{bottom:4.160160pt;}
.ycb{bottom:4.480166pt;}
.y1d4{bottom:4.640165pt;}
.y1a2{bottom:4.800159pt;}
.y1b4{bottom:4.960157pt;}
.y1b6{bottom:5.120157pt;}
.y1e9{bottom:5.280159pt;}
.y27{bottom:5.440156pt;}
.ycd{bottom:5.600166pt;}
.y9{bottom:5.760156pt;}
.y1c1{bottom:5.920158pt;}
.y1a4{bottom:5.920159pt;}
.y4e{bottom:5.920160pt;}
.y1a6{bottom:5.920167pt;}
.y1b8{bottom:6.240157pt;}
.y33{bottom:6.240159pt;}
.yfd{bottom:6.240160pt;}
.ye8{bottom:6.240162pt;}
.y180{bottom:6.240163pt;}
.y1e1{bottom:6.240165pt;}
.y108{bottom:6.400159pt;}
.yf4{bottom:6.560160pt;}
.y162{bottom:6.560168pt;}
.y171{bottom:6.880159pt;}
.y20{bottom:6.880161pt;}
.y18a{bottom:7.040156pt;}
.yb{bottom:7.520156pt;}
.y1c3{bottom:7.520158pt;}
.y41{bottom:7.520159pt;}
.y50{bottom:7.520160pt;}
.y15b{bottom:7.520164pt;}
.y1d9{bottom:7.520166pt;}
.y112{bottom:7.840159pt;}
.y114{bottom:7.840168pt;}
.y10a{bottom:8.160159pt;}
.yf5{bottom:8.160160pt;}
.y143{bottom:8.160161pt;}
.y136{bottom:8.160165pt;}
.y164{bottom:8.160168pt;}
.y14{bottom:8.800160pt;}
.ydb{bottom:8.800169pt;}
.y1cd{bottom:9.440159pt;}
.y29{bottom:12.480156pt;}
.ye6{bottom:108.533607pt;}
.ye5{bottom:131.733598pt;}
.y20f{bottom:136.373596pt;}
.y20e{bottom:152.373590pt;}
.y82{bottom:153.973589pt;}
.y75{bottom:154.613333pt;}
.ye4{bottom:154.773589pt;}
.y20d{bottom:168.373583pt;}
.y1be{bottom:169.973583pt;}
.y83{bottom:177.653580pt;}
.ye3{bottom:177.973579pt;}
.y20c{bottom:184.373577pt;}
.y187{bottom:185.333577pt;}
.y14a{bottom:185.493576pt;}
.y19c{bottom:188.213575pt;}
.y13c{bottom:191.253574pt;}
.y1ca{bottom:192.533574pt;}
.yaa{bottom:193.333573pt;}
.y3a{bottom:194.453573pt;}
.y84{bottom:194.933333pt;}
.y1bd{bottom:198.613571pt;}
.yb4{bottom:198.773571pt;}
.y104{bottom:200.213571pt;}
.y20b{bottom:200.373571pt;}
.y186{bottom:202.293570pt;}
.y226{bottom:202.773570pt;}
.y98{bottom:203.733569pt;}
.y178{bottom:207.253568pt;}
.y16a{bottom:208.533567pt;}
.y71{bottom:208.693567pt;}
.y1ab{bottom:210.453566pt;}
.y5c{bottom:211.253566pt;}
.y20a{bottom:214.453565pt;}
.y149{bottom:214.773565pt;}
.y86{bottom:214.933333pt;}
.y13b{bottom:216.693564pt;}
.y39{bottom:217.013564pt;}
.y103{bottom:219.893563pt;}
.ya9{bottom:220.213563pt;}
.y1c9{bottom:221.813562pt;}
.y225{bottom:222.933561pt;}
.y185{bottom:224.853561pt;}
.y19b{bottom:225.653560pt;}
.y65{bottom:226.453560pt;}
.y1bc{bottom:227.093560pt;}
.y177{bottom:228.693559pt;}
.yb3{bottom:229.173559pt;}
.y190{bottom:229.653559pt;}
.y5b{bottom:230.933558pt;}
.y1b3{bottom:232.213558pt;}
.y209{bottom:232.533558pt;}
.yd4{bottom:232.693558pt;}
.y1dd{bottom:233.813557pt;}
.y1aa{bottom:234.933557pt;}
.y88{bottom:237.813556pt;}
.y169{bottom:238.293555pt;}
.y38{bottom:239.413555pt;}
.y102{bottom:239.573555pt;}
.y13a{bottom:242.293554pt;}
.y224{bottom:243.093553pt;}
.y148{bottom:243.893553pt;}
.y70{bottom:244.053553pt;}
.y1cf{bottom:246.133552pt;}
.yc4{bottom:246.453552pt;}
.y24{bottom:246.613552pt;}
.ya8{bottom:247.253552pt;}
.y184{bottom:248.213551pt;}
.y208{bottom:248.533551pt;}
.y118{bottom:250.773550pt;}
.y1c8{bottom:252.213550pt;}
.yd3{bottom:253.333549pt;}
.y64{bottom:255.573548pt;}
.y176{bottom:256.053548pt;}
.y1bb{bottom:256.373548pt;}
.y89{bottom:257.813548pt;}
.y101{bottom:259.093547pt;}
.y19a{bottom:259.253547pt;}
.yb2{bottom:259.413547pt;}
.y168{bottom:259.573547pt;}
.y1b2{bottom:260.693546pt;}
.y6f{bottom:261.813546pt;}
.y1ee{bottom:263.413545pt;}
.y207{bottom:264.533545pt;}
.y2b{bottom:267.413544pt;}
.yf{bottom:267.733544pt;}
.yd2{bottom:268.053543pt;}
.y23{bottom:268.213543pt;}
.y1dc{bottom:269.973543pt;}
.yc3{bottom:270.773542pt;}
.y147{bottom:273.013541pt;}
.ya7{bottom:274.133541pt;}
.y223{bottom:274.453541pt;}
.y8a{bottom:275.093333pt;}
.y117{bottom:275.253541pt;}
.y99{bottom:275.893540pt;}
.y6e{bottom:279.413539pt;}
.y206{bottom:280.533538pt;}
.y1c7{bottom:280.853538pt;}
.yf8{bottom:282.773538pt;}
.y175{bottom:283.893537pt;}
.y37{bottom:284.373537pt;}
.y218{bottom:284.533537pt;}
.y63{bottom:284.853537pt;}
.y10d{bottom:285.333537pt;}
.y167{bottom:286.773536pt;}
.y1ed{bottom:287.413536pt;}
.yd1{bottom:288.373535pt;}
.y131{bottom:289.013535pt;}
.y11d{bottom:289.333535pt;}
.yb1{bottom:289.813535pt;}
.y154{bottom:291.093534pt;}
.y5a{bottom:291.573534pt;}
.y183{bottom:292.213534pt;}
.y199{bottom:292.853534pt;}
.y222{bottom:294.613533pt;}
.y8c{bottom:295.093333pt;}
.yc2{bottom:295.253533pt;}
.y18f{bottom:295.573532pt;}
.y205{bottom:296.533532pt;}
.y44{bottom:298.773531pt;}
.ya6{bottom:301.013530pt;}
.y129{bottom:301.333530pt;}
.ye{bottom:301.493530pt;}
.y146{bottom:302.293530pt;}
.yd0{bottom:302.453530pt;}
.y139{bottom:305.013529pt;}
.y1db{bottom:306.133528pt;}
.y36{bottom:306.773528pt;}
.y1d5{bottom:308.053527pt;}
.y1a9{bottom:308.373527pt;}
.y1c6{bottom:309.973527pt;}
.y59{bottom:311.253526pt;}
.y116{bottom:311.573526pt;}
.y2a{bottom:312.373526pt;}
.y204{bottom:312.693526pt;}
.y174{bottom:313.813525pt;}
.y166{bottom:313.973525pt;}
.y62{bottom:314.133525pt;}
.y221{bottom:314.773525pt;}
.y153{bottom:315.093525pt;}
.y1ba{bottom:315.413525pt;}
.yf7{bottom:315.573524pt;}
.y1ce{bottom:317.653524pt;}
.y1b1{bottom:317.813524pt;}
.y8e{bottom:317.973523pt;}
.y10c{bottom:318.133523pt;}
.y217{bottom:318.613523pt;}
.yc1{bottom:319.733523pt;}
.yb0{bottom:320.053523pt;}
.y18e{bottom:320.853522pt;}
.y130{bottom:321.333522pt;}
.y100{bottom:321.813522pt;}
.ycf{bottom:322.773522pt;}
.y1af{bottom:323.733521pt;}
.y11c{bottom:324.693521pt;}
.y52{bottom:325.813520pt;}
.y198{bottom:326.453520pt;}
.y1ec{bottom:326.613520pt;}
.y1a8{bottom:327.093520pt;}
.y203{bottom:328.533519pt;}
.y201{bottom:328.693519pt;}
.y43{bottom:329.013519pt;}
.y35{bottom:329.173519pt;}
.y138{bottom:330.453518pt;}
.y145{bottom:331.413518pt;}
.ydc{bottom:334.613517pt;}
.y22{bottom:334.773517pt;}
.yd{bottom:335.093517pt;}
.y115{bottom:336.053516pt;}
.y128{bottom:336.533516pt;}
.yce{bottom:336.693516pt;}
.y173{bottom:337.813516pt;}
.y8f{bottom:337.973515pt;}
.y6d{bottom:338.133515pt;}
.y152{bottom:339.093515pt;}
.ya5{bottom:339.733515pt;}
.y182{bottom:340.373515pt;}
.y1c5{bottom:341.013514pt;}
.yff{bottom:341.493514pt;}
.y165{bottom:341.973514pt;}
.y1da{bottom:342.293514pt;}
.y202{bottom:342.613514pt;}
.y61{bottom:343.253513pt;}
.y1b9{bottom:343.893513pt;}
.y9a{bottom:345.173333pt;}
.y15{bottom:345.813512pt;}
.y18d{bottom:346.133512pt;}
.y1b0{bottom:346.453512pt;}
.y15c{bottom:348.213511pt;}
.y200{bottom:349.013511pt;}
.y1eb{bottom:349.653511pt;}
.y1e2{bottom:350.293511pt;}
.y1a7{bottom:351.573510pt;}
.y1ae{bottom:352.213510pt;}
.y216{bottom:353.333509pt;}
.y6c{bottom:355.893508pt;}
.y137{bottom:356.053508pt;}
.y1f1{bottom:356.213508pt;}
.y21{bottom:356.373508pt;}
.y12f{bottom:357.493508pt;}
.y90{bottom:357.973507pt;}
.y42{bottom:359.413507pt;}
.yf6{bottom:360.053507pt;}
.y144{bottom:360.533506pt;}
.yfe{bottom:361.013506pt;}
.y197{bottom:361.333506pt;}
.y51{bottom:361.973506pt;}
.yda{bottom:362.293333pt;}
.y10b{bottom:362.613506pt;}
.y181{bottom:362.773506pt;}
.y11b{bottom:362.933333pt;}
.y127{bottom:363.093333pt;}
.y151{bottom:363.093505pt;}
.y113{bottom:364.533333pt;}
.y163{bottom:365.493333pt;}
.y1c4{bottom:366.293504pt;}
.ya4{bottom:366.613504pt;}
.y161{bottom:367.093333pt;}
.y172{bottom:368.533503pt;}
.yc0{bottom:368.693503pt;}
.yc{bottom:368.853503pt;}
.y1a5{bottom:370.133333pt;}
.y1d8{bottom:370.933333pt;}
.y18c{bottom:371.413502pt;}
.y58{bottom:371.893502pt;}
.y60{bottom:372.533502pt;}
.y135{bottom:373.493333pt;}
.y6b{bottom:373.493501pt;}
.y1ea{bottom:373.653501pt;}
.ycc{bottom:373.973333pt;}
.y34{bottom:374.133501pt;}
.y1ad{bottom:374.933501pt;}
.yca{bottom:375.093333pt;}
.y91{bottom:375.253333pt;}
.y215{bottom:375.573500pt;}
.y1d3{bottom:376.213333pt;}
.y15a{bottom:376.693333pt;}
.y220{bottom:377.973499pt;}
.y17f{bottom:378.933333pt;}
.y1ff{bottom:380.213499pt;}
.y1f0{bottom:381.013333pt;}
.ye7{bottom:381.333333pt;}
.y142{bottom:381.653333pt;}
.y1f{bottom:382.773333pt;}
.y13{bottom:384.053333pt;}
.y4f{bottom:384.853333pt;}
.ya3{bottom:385.973333pt;}
.yfc{bottom:386.133333pt;}
.y4d{bottom:386.453333pt;}
.y150{bottom:386.933333pt;}
.y109{bottom:387.253333pt;}
.y12e{bottom:387.733333pt;}
.y1cc{bottom:387.893333pt;}
.y40{bottom:388.053333pt;}
.y1a3{bottom:388.853333pt;}
.ybe{bottom:389.013333pt;}
.y170{bottom:389.333333pt;}
.y28{bottom:389.653333pt;}
.ybc{bottom:389.973333pt;}
.y32{bottom:390.293333pt;}
.y1e8{bottom:390.933333pt;}
.y1c2{bottom:391.093333pt;}
.y1e6{bottom:392.053333pt;}
.y1c0{bottom:392.693333pt;}
.y1fd{bottom:393.013333pt;}
.ya{bottom:394.933333pt;}
.y93{bottom:395.253333pt;}
.y1b7{bottom:395.413333pt;}
.y18b{bottom:396.213333pt;}
.y1b5{bottom:396.533333pt;}
.y8{bottom:396.693333pt;}
.y1ac{bottom:403.573489pt;}
.yaf{bottom:407.093488pt;}
.y125{bottom:407.253488pt;}
.y17d{bottom:407.733488pt;}
.yc8{bottom:408.853487pt;}
.y1d1{bottom:409.333487pt;}
.y15f{bottom:409.813487pt;}
.y1fc{bottom:410.293487pt;}
.y18{bottom:411.253486pt;}
.yfb{bottom:412.053486pt;}
.y1df{bottom:412.533486pt;}
.ydf{bottom:413.173485pt;}
.y1d6{bottom:414.293485pt;}
.y158{bottom:414.613485pt;}
.y212{bottom:415.893484pt;}
.y14f{bottom:416.853484pt;}
.y95{bottom:417.333333pt;}
.yba{bottom:417.493484pt;}
.y7a{bottom:418.133483pt;}
.y140{bottom:418.933483pt;}
.y1e5{bottom:419.253483pt;}
.y19f{bottom:419.893483pt;}
.yd8{bottom:423.253481pt;}
.y16e{bottom:424.053481pt;}
.y3e{bottom:425.813480pt;}
.yc7{bottom:426.613480pt;}
.y195{bottom:427.093480pt;}
.y1fb{bottom:428.213479pt;}
.y48{bottom:428.533479pt;}
.y72{bottom:430.453478pt;}
.y12c{bottom:430.933478pt;}
.y6a{bottom:432.213478pt;}
.y57{bottom:432.693478pt;}
.y189{bottom:433.973477pt;}
.y5e{bottom:435.733476pt;}
.y17c{bottom:435.893476pt;}
.y7{bottom:436.053476pt;}
.y21d{bottom:436.853476pt;}
.yeb{bottom:437.493476pt;}
.y7b{bottom:438.133475pt;}
.yde{bottom:438.933475pt;}
.yae{bottom:440.053475pt;}
.y1d0{bottom:441.013474pt;}
.y30{bottom:441.333474pt;}
.y124{bottom:442.613474pt;}
.y1cb{bottom:443.733473pt;}
.y1fa{bottom:444.213473pt;}
.y17{bottom:444.693473pt;}
.y1de{bottom:444.853473pt;}
.y26{bottom:446.933472pt;}
.y14e{bottom:447.573472pt;}
.y19e{bottom:448.373471pt;}
.y69{bottom:449.973471pt;}
.y157{bottom:450.773470pt;}
.y211{bottom:451.893470pt;}
.y56{bottom:452.373470pt;}
.y15e{bottom:453.973469pt;}
.y119{bottom:454.133469pt;}
.y7c{bottom:455.413333pt;}
.yc6{bottom:455.893468pt;}
.y3d{bottom:456.053468pt;}
.y16d{bottom:457.653468pt;}
.y1f9{bottom:458.293467pt;}
.y17b{bottom:458.453467pt;}
.y13f{bottom:459.893467pt;}
.y21c{bottom:461.013466pt;}
.yd7{bottom:463.573465pt;}
.y2f{bottom:463.893465pt;}
.y47{bottom:465.813464pt;}
.yb9{bottom:466.453464pt;}
.y194{bottom:466.933464pt;}
.ya1{bottom:469.013463pt;}
.y10f{bottom:469.333463pt;}
.y6{bottom:469.813463pt;}
.yea{bottom:470.293463pt;}
.y188{bottom:471.413462pt;}
.y55{bottom:472.053462pt;}
.y106{bottom:472.853462pt;}
.y7e{bottom:475.413333pt;}
.y1f8{bottom:476.373460pt;}
.y11e{bottom:477.493460pt;}
.y123{bottom:477.973459pt;}
.yb8{bottom:479.253459pt;}
.y19d{bottom:480.693458pt;}
.y17a{bottom:480.853458pt;}
.y14d{bottom:482.453458pt;}
.y15d{bottom:483.093457pt;}
.yad{bottom:484.533457pt;}
.yc5{bottom:485.333457pt;}
.y16c{bottom:485.493456pt;}
.y2e{bottom:486.293456pt;}
.y3c{bottom:486.453456pt;}
.y156{bottom:486.933456pt;}
.y13e{bottom:489.013455pt;}
.ya0{bottom:489.333455pt;}
.y97{bottom:492.213454pt;}
.y1f7{bottom:492.373454pt;}
.y10e{bottom:493.813453pt;}
.y133{bottom:495.413453pt;}
.y1e4{bottom:496.373452pt;}
.y210{bottom:497.813452pt;}
.y80{bottom:498.293451pt;}
.y5d{bottom:500.373451pt;}
.ye9{bottom:503.093449pt;}
.yd6{bottom:504.053449pt;}
.y105{bottom:505.653448pt;}
.y1f5{bottom:508.373447pt;}
.y2d{bottom:508.693447pt;}
.y179{bottom:509.173447pt;}
.y16{bottom:511.253446pt;}
.yfa{bottom:512.053446pt;}
.y46{bottom:512.853446pt;}
.y122{bottom:513.333445pt;}
.y14c{bottom:515.253445pt;}
.y25{bottom:516.053444pt;}
.y3b{bottom:516.693444pt;}
.y155{bottom:517.173444pt;}
.yac{bottom:517.333444pt;}
.y13d{bottom:518.133443pt;}
.y81{bottom:518.293443pt;}
.y16b{bottom:519.093443pt;}
.y132{bottom:520.853442pt;}
.y9f{bottom:521.173442pt;}
.y1f6{bottom:522.453442pt;}
.y1e3{bottom:523.893441pt;}
.y21b{bottom:524.693441pt;}
.y1f4{bottom:525.333441pt;}
.y68{bottom:526.293440pt;}
.yb7{bottom:528.213439pt;}
.y5{bottom:528.373439pt;}
.y54{bottom:533.653437pt;}
.yf9{bottom:539.573435pt;}
.yb6{bottom:540.853434pt;}
.y67{bottom:544.053433pt;}
.yd5{bottom:544.373433pt;}
.y21a{bottom:544.853433pt;}
.y45{bottom:548.213431pt;}
.yab{bottom:550.133431pt;}
.y4{bottom:554.613429pt;}
.y2c{bottom:554.773429pt;}
.y53{bottom:557.333428pt;}
.y66{bottom:561.653426pt;}
.yb5{bottom:565.333425pt;}
.y9e{bottom:568.533423pt;}
.y1f3{bottom:568.853423pt;}
.ye2{bottom:569.333423pt;}
.y74{bottom:575.893420pt;}
.y3{bottom:578.453419pt;}
.y78{bottom:579.573419pt;}
.y193{bottom:585.973416pt;}
.y12b{bottom:589.333415pt;}
.yf3{bottom:594.453413pt;}
.yf2{bottom:594.773413pt;}
.ye1{bottom:595.093413pt;}
.y219{bottom:603.573409pt;}
.y2{bottom:603.733409pt;}
.ydd{bottom:604.213409pt;}
.y14b{bottom:604.853409pt;}
.y1e{bottom:607.093408pt;}
.y1d{bottom:607.413408pt;}
.y9d{bottom:609.013407pt;}
.y121{bottom:610.133407pt;}
.y192{bottom:611.253406pt;}
.y11{bottom:614.293405pt;}
.y4c{bottom:619.573403pt;}
.yf1{bottom:619.733403pt;}
.y4b{bottom:619.893403pt;}
.yf0{bottom:620.053403pt;}
.y11f{bottom:622.133402pt;}
.y5f{bottom:622.453402pt;}
.y1f2{bottom:622.613402pt;}
.y12a{bottom:629.653399pt;}
.y77{bottom:630.133399pt;}
.y73{bottom:631.413398pt;}
.y1c{bottom:632.213398pt;}
.y1b{bottom:632.533398pt;}
.y1{bottom:632.693398pt;}
.y191{bottom:636.533396pt;}
.y120{bottom:640.373395pt;}
.yef{bottom:644.853393pt;}
.yee{bottom:645.173393pt;}
.y4a{bottom:646.453392pt;}
.y9c{bottom:649.333391pt;}
.y1a{bottom:659.093387pt;}
.y10{bottom:664.853385pt;}
.yed{bottom:671.733382pt;}
.h6b{height:0.160000pt;}
.h61{height:0.480000pt;}
.h6c{height:1.280000pt;}
.h25{height:1.440000pt;}
.h7{height:1.760000pt;}
.h33{height:3.040000pt;}
.h46{height:3.520000pt;}
.h7d{height:3.680000pt;}
.h6f{height:4.000000pt;}
.h58{height:4.160000pt;}
.h73{height:4.320000pt;}
.h7a{height:4.640000pt;}
.h38{height:5.600000pt;}
.h7b{height:5.760000pt;}
.h59{height:5.920000pt;}
.h48{height:6.240000pt;}
.h14{height:6.400000pt;}
.h7f{height:6.560000pt;}
.h30{height:6.720000pt;}
.h11{height:7.040000pt;}
.h5d{height:7.360000pt;}
.h31{height:7.680000pt;}
.h66{height:7.840000pt;}
.h76{height:8.480000pt;}
.h16{height:8.640000pt;}
.h72{height:8.800000pt;}
.h4c{height:8.960000pt;}
.h43{height:9.440000pt;}
.h54{height:9.760000pt;}
.h2d{height:10.080000pt;}
.h1b{height:10.240000pt;}
.h3f{height:10.560000pt;}
.h29{height:10.720000pt;}
.h2f{height:10.880000pt;}
.h24{height:11.360000pt;}
.h1c{height:11.840000pt;}
.hb{height:12.640000pt;}
.h22{height:12.800000pt;}
.h3a{height:13.120000pt;}
.h82{height:13.760000pt;}
.he{height:13.920000pt;}
.h55{height:14.240000pt;}
.h4f{height:15.040000pt;}
.h3b{height:15.360000pt;}
.h7c{height:15.680000pt;}
.h52{height:17.280000pt;}
.hd{height:17.440000pt;}
.h5f{height:17.760000pt;}
.h3e{height:17.920000pt;}
.h64{height:18.080000pt;}
.h79{height:18.400000pt;}
.h65{height:19.200000pt;}
.h56{height:20.000000pt;}
.h74{height:20.480000pt;}
.h19{height:20.800000pt;}
.h75{height:21.440000pt;}
.h34{height:21.600000pt;}
.h12{height:22.080000pt;}
.h1a{height:22.400000pt;}
.h35{height:22.720000pt;}
.h4e{height:23.200000pt;}
.h28{height:23.520000pt;}
.h4b{height:23.680000pt;}
.h5c{height:24.000000pt;}
.h3d{height:25.280000pt;}
.h15{height:25.600000pt;}
.h77{height:25.760000pt;}
.h69{height:25.920000pt;}
.h40{height:26.080000pt;}
.h63{height:26.400000pt;}
.h67{height:26.560000pt;}
.h6d{height:27.040000pt;}
.h6a{height:27.200000pt;}
.h9{height:27.360000pt;}
.h42{height:27.680000pt;}
.h45{height:28.000000pt;}
.h6e{height:28.640000pt;}
.h5a{height:29.600000pt;}
.h70{height:30.080000pt;}
.h5b{height:31.200000pt;}
.h47{height:32.160000pt;}
.h6{height:32.480000pt;}
.h3{height:32.484987pt;}
.h4a{height:33.600000pt;}
.h49{height:33.760000pt;}
.h39{height:34.400000pt;}
.h23{height:34.835611pt;}
.h4{height:38.530297pt;}
.h7e{height:39.170297pt;}
.h26{height:42.224983pt;}
.h2b{height:42.274983pt;}
.hf{height:45.389982pt;}
.h2e{height:46.549981pt;}
.h10{height:49.920000pt;}
.h2c{height:50.142167pt;}
.h37{height:53.836853pt;}
.h36{height:58.059352pt;}
.h78{height:60.759976pt;}
.h1d{height:61.754038pt;}
.h62{height:63.874974pt;}
.h32{height:64.679974pt;}
.h13{height:64.969974pt;}
.h1e{height:65.448724pt;}
.h81{height:68.084973pt;}
.h1f{height:69.671222pt;}
.h53{height:73.365908pt;}
.h60{height:73.424971pt;}
.h2{height:77.060594pt;}
.h27{height:77.874969pt;}
.h80{height:78.097469pt;}
.h5e{height:82.769967pt;}
.hc{height:84.977779pt;}
.h68{height:88.109965pt;}
.h20{height:91.224964pt;}
.h5{height:92.367151pt;}
.h51{height:92.782463pt;}
.h41{height:93.099963pt;}
.h44{height:96.589649pt;}
.h4d{height:97.454961pt;}
.h2a{height:100.284335pt;}
.h50{height:107.467457pt;}
.ha{height:108.201519pt;}
.h71{height:115.590891pt;}
.h18{height:116.812453pt;}
.h1{height:123.508076pt;}
.h3c{height:126.824949pt;}
.h17{height:136.837445pt;}
.h57{height:146.182442pt;}
.h8{height:154.121188pt;}
.h21{height:169.955557pt;}
.h0{height:793.333333pt;}
.w19{width:3.200000pt;}
.w2e{width:5.600000pt;}
.w60{width:5.760000pt;}
.w35{width:5.920000pt;}
.w55{width:6.400000pt;}
.w49{width:7.680000pt;}
.w4c{width:8.160000pt;}
.w38{width:8.960000pt;}
.w5a{width:9.120000pt;}
.wb{width:9.760000pt;}
.w3{width:10.080000pt;}
.w32{width:10.720000pt;}
.w53{width:11.680000pt;}
.w27{width:12.160000pt;}
.w51{width:12.320000pt;}
.w3c{width:15.200000pt;}
.w4f{width:15.680000pt;}
.w29{width:16.640000pt;}
.w12{width:17.760000pt;}
.w36{width:24.160000pt;}
.w2{width:24.960000pt;}
.w5e{width:26.560000pt;}
.w1d{width:28.639680pt;}
.w1c{width:28.959680pt;}
.w14{width:31.039680pt;}
.w18{width:32.800000pt;}
.w13{width:35.040000pt;}
.w1f{width:36.800000pt;}
.w1e{width:36.960000pt;}
.w15{width:38.879680pt;}
.w26{width:41.600000pt;}
.w31{width:44.160000pt;}
.w1a{width:46.719680pt;}
.w16{width:52.959680pt;}
.w1b{width:55.839680pt;}
.w22{width:57.600000pt;}
.w54{width:58.880000pt;}
.w17{width:60.959680pt;}
.w2a{width:61.120000pt;}
.w20{width:62.400000pt;}
.w56{width:62.560000pt;}
.w2c{width:64.160000pt;}
.w9{width:65.760000pt;}
.w21{width:75.680000pt;}
.w10{width:78.080000pt;}
.w43{width:83.360000pt;}
.w5b{width:85.760000pt;}
.w34{width:92.799680pt;}
.w2b{width:113.279680pt;}
.w2f{width:119.519680pt;}
.w6{width:119.680000pt;}
.w11{width:124.800000pt;}
.w3d{width:127.519680pt;}
.wc{width:129.279680pt;}
.w24{width:135.840000pt;}
.w47{width:141.760000pt;}
.w1{width:160.960000pt;}
.w5f{width:163.040000pt;}
.w44{width:171.520000pt;}
.w5c{width:182.720000pt;}
.w25{width:193.760000pt;}
.we{width:194.239680pt;}
.w5d{width:200.640000pt;}
.w46{width:213.920000pt;}
.wf{width:219.520000pt;}
.w4d{width:286.240000pt;}
.w4e{width:302.720000pt;}
.w4b{width:306.560000pt;}
.w42{width:318.080000pt;}
.w3a{width:322.239680pt;}
.w45{width:351.840000pt;}
.w58{width:363.840000pt;}
.w40{width:379.199680pt;}
.w41{width:389.919680pt;}
.w7{width:396.159680pt;}
.w59{width:407.360000pt;}
.w28{width:445.440000pt;}
.w2d{width:461.440000pt;}
.w8{width:482.880000pt;}
.w23{width:531.359680pt;}
.w3f{width:539.679680pt;}
.w57{width:641.280000pt;}
.w61{width:669.920000pt;}
.w30{width:731.840000pt;}
.wd{width:748.640000pt;}
.w5{width:748.799680pt;}
.w3e{width:774.240000pt;}
.wa{width:783.359680pt;}
.w48{width:787.200000pt;}
.w4a{width:789.280000pt;}
.w4{width:798.399680pt;}
.w50{width:833.119680pt;}
.w3b{width:886.239680pt;}
.w39{width:908.159680pt;}
.w37{width:917.919680pt;}
.w52{width:923.199680pt;}
.w33{width:934.399680pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:31.667454pt;}
.x5{left:67.027520pt;}
.xa{left:69.267439pt;}
.x3d{left:70.547438pt;}
.x16{left:73.907437pt;}
.x15{left:75.347437pt;}
.x3c{left:77.427436pt;}
.xf{left:78.547435pt;}
.x5a{left:79.667435pt;}
.x3f{left:80.787434pt;}
.xb{left:82.707434pt;}
.x2d{left:84.787433pt;}
.x1{left:85.907432pt;}
.x8{left:88.147520pt;}
.x9{left:89.747431pt;}
.x6{left:91.987520pt;}
.x29{left:93.907520pt;}
.x3e{left:95.347429pt;}
.x34{left:96.627520pt;}
.x2f{left:98.387427pt;}
.x7{left:102.067520pt;}
.x5f{left:106.867424pt;}
.x10{left:111.347422pt;}
.x28{left:118.067520pt;}
.x56{left:120.947418pt;}
.x2c{left:123.347520pt;}
.x24{left:125.907520pt;}
.xd{left:127.507416pt;}
.x57{left:130.867414pt;}
.x11{left:132.467414pt;}
.x2b{left:134.547946pt;}
.x21{left:137.427945pt;}
.x23{left:139.827520pt;}
.x2a{left:141.107944pt;}
.x2e{left:142.387410pt;}
.x25{left:143.827942pt;}
.x27{left:145.107942pt;}
.x20{left:148.147520pt;}
.x19{left:149.747520pt;}
.x22{left:153.907938pt;}
.x33{left:155.507938pt;}
.x59{left:162.067200pt;}
.x42{left:169.747932pt;}
.x67{left:180.787928pt;}
.x26{left:186.067926pt;}
.x60{left:191.027200pt;}
.x4a{left:197.107200pt;}
.x61{left:211.987915pt;}
.x5e{left:213.267200pt;}
.x62{left:233.107907pt;}
.x41{left:241.107370pt;}
.x64{left:254.067898pt;}
.x14{left:261.747200pt;}
.x58{left:262.707362pt;}
.x47{left:269.427200pt;}
.x65{left:291.987200pt;}
.x66{left:298.387200pt;}
.x53{left:306.867877pt;}
.x44{left:313.267200pt;}
.x52{left:320.467872pt;}
.x45{left:334.387200pt;}
.x38{left:335.347333pt;}
.x48{left:338.067200pt;}
.x39{left:340.947330pt;}
.x3a{left:352.627326pt;}
.x4c{left:354.227858pt;}
.xe{left:358.707323pt;}
.x4b{left:363.347855pt;}
.x1a{left:367.667200pt;}
.x5d{left:373.587317pt;}
.x63{left:393.907842pt;}
.x40{left:406.867837pt;}
.x46{left:408.787836pt;}
.x43{left:427.027829pt;}
.x30{left:447.827200pt;}
.x12{left:465.427200pt;}
.x5b{left:478.867808pt;}
.x4e{left:485.747806pt;}
.x54{left:488.147805pt;}
.xc{left:489.907200pt;}
.x4d{left:496.307801pt;}
.x4f{left:507.027200pt;}
.x31{left:533.427200pt;}
.x6b{left:544.147782pt;}
.x4{left:546.227782pt;}
.x50{left:565.107774pt;}
.x51{left:571.187772pt;}
.x6a{left:606.867200pt;}
.x1b{left:610.707200pt;}
.x68{left:615.987754pt;}
.x35{left:627.987200pt;}
.x32{left:632.467200pt;}
.x69{left:652.947739pt;}
.x1c{left:659.347200pt;}
.x6d{left:663.987734pt;}
.x6c{left:669.747732pt;}
.x17{left:716.307180pt;}
.x18{left:723.347177pt;}
.x3b{left:730.227175pt;}
.x1d{left:760.947200pt;}
.x36{left:763.827200pt;}
.x55{left:796.787681pt;}
.x49{left:799.507200pt;}
.x2{left:805.107678pt;}
.x1e{left:909.427200pt;}
.x13{left:948.307200pt;}
.x1f{left:950.707200pt;}
.x37{left:957.587200pt;}
.x5c{left:980.147200pt;}
}




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