
    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_1c64c3eca1f43003005ce6fa.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_33c878a87f997fe74871899f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.889000;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_a2e0a2c4d6f49ed04b493ed2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925293;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_4e16afddbd969f2a8afe9bbe.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_20300d80f0764692c685440a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_59a258c785c25f90d6310c88.woff')format("woff");}.ff6{font-family:ff6;line-height:0.887695;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_3295c9b527bc077fcbb24e41.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_d27e39b86370c6107c2d101f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eaf88b82ab0ba03a9e5e22ba.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_57f7374e2a1a4a74f1551178.woff')format("woff");}.ffa{font-family:ffa;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f092e93c2d0a33069575c1e5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1f00672f1d40c82c4c6d2ac0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_12f7196e1e1cfaece401f5f6.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_12f7196e1e1cfaece401f5f6.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_12f7196e1e1cfaece401f5f6.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_12f7196e1e1cfaece401f5f6.woff')format("woff");}.ff10{font-family:ff10;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;}
.m2{transform:matrix(0.160698,-0.191510,0.191510,0.160698,0,0);-ms-transform:matrix(0.160698,-0.191510,0.191510,0.160698,0,0);-webkit-transform:matrix(0.160698,-0.191510,0.191510,0.160698,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-18.000000px;}
.v2{vertical-align:-9.360000px;}
.v7{vertical-align:-5.760600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.147699px;}
.v3{vertical-align:9.359400px;}
.v4{vertical-align:18.000200px;}
.v6{vertical-align:40.321800px;}
.ls1{letter-spacing:-0.007173px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.362700px;}
.ls9{letter-spacing:17.777878px;}
.ls2{letter-spacing:18.362700px;}
.ls7{letter-spacing:25.211590px;}
.ls5{letter-spacing:267.917015px;}
.ls4{letter-spacing:1134.123386px;}
.ls6{letter-spacing:1258.683386px;}
.ls8{letter-spacing:1444.288898px;}
.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;}
}
.ws12{word-spacing:-39.528000px;}
.ws20{word-spacing:-29.646000px;}
.ws14{word-spacing:-18.046950px;}
.wse{word-spacing:-18.000000px;}
.ws19{word-spacing:-15.012000px;}
.wsf{word-spacing:-12.058650px;}
.ws7{word-spacing:-0.071731px;}
.wsd{word-spacing:0.000000px;}
.ws10{word-spacing:6.660580px;}
.ws13{word-spacing:9.540283px;}
.ws16{word-spacing:9.648000px;}
.wsa{word-spacing:13.865641px;}
.ws15{word-spacing:15.171828px;}
.ws1{word-spacing:17.861069px;}
.wsc{word-spacing:18.327322px;}
.wsb{word-spacing:20.859433px;}
.ws9{word-spacing:22.738790px;}
.ws8{word-spacing:23.434583px;}
.ws0{word-spacing:23.814659px;}
.ws6{word-spacing:29.180252px;}
.ws4{word-spacing:56.115318px;}
.ws5{word-spacing:58.597217px;}
.ws1d{word-spacing:61.668000px;}
.ws1f{word-spacing:69.480000px;}
.ws1a{word-spacing:79.488000px;}
.ws22{word-spacing:82.225800px;}
.ws1e{word-spacing:83.664000px;}
.ws21{word-spacing:87.604200px;}
.ws1b{word-spacing:120.708000px;}
.ws1c{word-spacing:121.608000px;}
.ws18{word-spacing:148.105800px;}
.ws17{word-spacing:202.105800px;}
.ws11{word-spacing:272.408665px;}
.ws3{word-spacing:500.525967px;}
.ws2{word-spacing:540.336783px;}
._1d{margin-left:-394.636265px;}
._1c{margin-left:-375.289935px;}
._1b{margin-left:-314.341775px;}
._19{margin-left:-281.398506px;}
._1e{margin-left:-275.237644px;}
._20{margin-left:-251.964297px;}
._1f{margin-left:-58.544306px;}
._4{margin-left:-5.738496px;}
._0{margin-left:-2.510592px;}
._1{margin-left:-1.075968px;}
._9{width:1.791907px;}
._15{width:2.968186px;}
._2{width:3.973908px;}
._c{width:5.458092px;}
._e{width:6.781908px;}
._a{width:8.064000px;}
._12{width:15.984000px;}
._18{width:16.992000px;}
._13{width:19.440000px;}
._14{width:20.960093px;}
._b{width:22.162092px;}
._17{width:23.325542px;}
._f{width:24.552000px;}
._11{width:25.632000px;}
._d{width:27.504000px;}
._16{width:39.691724px;}
._10{width:42.264000px;}
._21{width:63.576000px;}
._32{width:95.342400px;}
._3b{width:98.944200px;}
._3d{width:104.814000px;}
._31{width:190.620000px;}
._3c{width:202.699800px;}
._39{width:204.228000px;}
._35{width:217.620000px;}
._8{width:219.770051px;}
._6{width:226.225859px;}
._2d{width:240.586200px;}
._25{width:242.713800px;}
._2c{width:248.670000px;}
._34{width:253.870200px;}
._36{width:258.228000px;}
._7{width:262.019727px;}
._3a{width:265.249348px;}
._5{width:271.273052px;}
._24{width:284.688000px;}
._26{width:296.676000px;}
._27{width:321.661800px;}
._38{width:329.059800px;}
._28{width:330.388685px;}
._3{width:337.337487px;}
._33{width:354.979800px;}
._2e{width:368.874000px;}
._2a{width:387.828000px;}
._30{width:412.306200px;}
._22{width:418.105800px;}
._23{width:434.089800px;}
._2b{width:528.876000px;}
._29{width:584.388000px;}
._1a{width:630.720000px;}
._37{width:661.030200px;}
._2f{width:663.697800px;}
.fc2{color:transparent;}
.fc1{color:rgb(233,30,100);}
.fc3{color:rgb(230,230,230);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fsa{font-size:47.929800px;}
.fsd{font-size:48.093600px;}
.fs9{font-size:48.234600px;}
.fsf{font-size:54.000000px;}
.fs8{font-size:59.765400px;}
.fs5{font-size:59.765460px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.234540px;}
.fse{font-size:69.117000px;}
.fs1{font-size:71.731200px;}
.fsb{font-size:71.906400px;}
.fs7{font-size:72.000000px;}
.fsc{font-size:72.187800px;}
.fs0{font-size:95.641200px;}
.fs4{font-size:359.999328px;}
.y0{bottom:0.000000px;}
.y18{bottom:45.000000px;}
.y1a{bottom:57.554700px;}
.ybf{bottom:134.414700px;}
.yb3{bottom:145.034700px;}
.yd8{bottom:154.394700px;}
.y7e{bottom:157.814700px;}
.y45{bottom:159.614700px;}
.y6f{bottom:166.994700px;}
.ybe{bottom:175.814700px;}
.y5c{bottom:183.014550px;}
.y8d{bottom:183.014700px;}
.yb2{bottom:186.434700px;}
.y98{bottom:194.174700px;}
.yd7{bottom:195.794700px;}
.y7d{bottom:199.214700px;}
.y44{bottom:201.014700px;}
.y6e{bottom:208.394550px;}
.y83{bottom:208.394700px;}
.yf7{bottom:212.894700px;}
.ybd{bottom:217.214700px;}
.yc1{bottom:222.794700px;}
.y5b{bottom:224.414550px;}
.y8c{bottom:224.414700px;}
.yb1{bottom:227.834700px;}
.y97{bottom:235.574700px;}
.yd6{bottom:237.194700px;}
.y7c{bottom:240.614700px;}
.y43{bottom:242.414700px;}
.y2d{bottom:247.454700px;}
.y6d{bottom:249.794550px;}
.y82{bottom:249.794700px;}
.yf6{bottom:254.294700px;}
.ybc{bottom:258.614700px;}
.y5a{bottom:265.814550px;}
.y8b{bottom:265.814700px;}
.yad{bottom:268.874700px;}
.yae{bottom:273.374700px;}
.y93{bottom:276.614700px;}
.yd5{bottom:278.594700px;}
.y94{bottom:281.114700px;}
.y7b{bottom:282.014700px;}
.y42{bottom:283.814700px;}
.yb0{bottom:287.234659px;}
.y2c{bottom:288.494685px;}
.y6c{bottom:291.194550px;}
.y81{bottom:291.194700px;}
.y96{bottom:294.974659px;}
.yf5{bottom:295.514700px;}
.y10c{bottom:297.000000px;}
.yaf{bottom:298.754064px;}
.ybb{bottom:300.014700px;}
.y95{bottom:306.494064px;}
.y59{bottom:307.214550px;}
.y8a{bottom:307.214700px;}
.y19{bottom:315.705000px;}
.yd4{bottom:319.994700px;}
.y7a{bottom:323.414700px;}
.y41{bottom:325.214700px;}
.y6b{bottom:332.594550px;}
.y80{bottom:332.594700px;}
.yf4{bottom:336.914700px;}
.yac{bottom:340.874700px;}
.yba{bottom:341.414700px;}
.y58{bottom:348.614550px;}
.y89{bottom:348.614700px;}
.yd3{bottom:361.394700px;}
.y79{bottom:364.814700px;}
.y40{bottom:366.614700px;}
.y2b{bottom:371.654640px;}
.y6a{bottom:373.994550px;}
.y7f{bottom:373.994700px;}
.yf3{bottom:378.314700px;}
.yab{bottom:382.274700px;}
.yb9{bottom:382.814700px;}
.y57{bottom:390.014550px;}
.y88{bottom:390.014700px;}
.yd2{bottom:402.794700px;}
.y78{bottom:406.214700px;}
.y3f{bottom:408.014700px;}
.y16{bottom:411.918728px;}
.y2a{bottom:413.054640px;}
.y69{bottom:415.394700px;}
.yf2{bottom:419.714700px;}
.yaa{bottom:423.674700px;}
.yb8{bottom:431.054700px;}
.y56{bottom:431.414550px;}
.y87{bottom:431.414700px;}
.y15{bottom:432.840926px;}
.yd1{bottom:444.194700px;}
.y77{bottom:447.614700px;}
.y3e{bottom:449.414700px;}
.y14{bottom:453.763123px;}
.y29{bottom:454.454640px;}
.y68{bottom:456.794700px;}
.yf1{bottom:461.114700px;}
.ya9{bottom:465.074700px;}
.y55{bottom:472.814550px;}
.y86{bottom:472.814700px;}
.y13{bottom:474.685321px;}
.yd0{bottom:485.594700px;}
.ydf{bottom:489.014700px;}
.y3d{bottom:490.814700px;}
.y12{bottom:495.607519px;}
.y28{bottom:495.854640px;}
.y76{bottom:495.854700px;}
.y67{bottom:498.194700px;}
.yf0{bottom:502.514700px;}
.ya8{bottom:506.474700px;}
.y54{bottom:514.214550px;}
.y85{bottom:514.214700px;}
.y11{bottom:516.529717px;}
.ycf{bottom:526.994700px;}
.yde{bottom:530.414700px;}
.y3c{bottom:532.214700px;}
.y27{bottom:537.254640px;}
.y66{bottom:539.594700px;}
.yef{bottom:543.914700px;}
.ya7{bottom:547.874700px;}
.y10{bottom:555.156968px;}
.y53{bottom:555.614550px;}
.y75{bottom:555.614700px;}
.yce{bottom:565.154700px;}
.ydd{bottom:571.814700px;}
.yb7{bottom:573.614550px;}
.y3b{bottom:573.614700px;}
.yf{bottom:576.079166px;}
.y26{bottom:578.654640px;}
.y65{bottom:580.994700px;}
.yee{bottom:585.314700px;}
.ya6{bottom:589.274700px;}
.ye{bottom:597.001363px;}
.y52{bottom:597.014550px;}
.y74{bottom:597.014700px;}
.yb6{bottom:615.014550px;}
.y3a{bottom:615.014700px;}
.yd{bottom:617.923561px;}
.y25{bottom:620.054640px;}
.ydc{bottom:620.054700px;}
.y64{bottom:622.214700px;}
.ycd{bottom:624.914700px;}
.yed{bottom:626.714700px;}
.ya5{bottom:630.674700px;}
.y51{bottom:638.414550px;}
.y73{bottom:638.414700px;}
.yb4{bottom:645.254700px;}
.yb5{bottom:656.414550px;}
.y39{bottom:656.414700px;}
.yc{bottom:661.261759px;}
.y24{bottom:661.454640px;}
.y63{bottom:663.614700px;}
.ycc{bottom:666.314700px;}
.yec{bottom:668.114700px;}
.ya4{bottom:672.074700px;}
.y50{bottom:679.814550px;}
.y72{bottom:679.814700px;}
.yb{bottom:682.183957px;}
.y84{bottom:686.654700px;}
.y38{bottom:697.814550px;}
.y23{bottom:702.854640px;}
.ya{bottom:703.106154px;}
.y62{bottom:705.014700px;}
.ycb{bottom:707.714700px;}
.yeb{bottom:709.514700px;}
.ya3{bottom:713.474700px;}
.y4f{bottom:721.214550px;}
.y71{bottom:721.214700px;}
.y37{bottom:739.214550px;}
.y9{bottom:741.961152px;}
.y22{bottom:744.254640px;}
.y61{bottom:746.414700px;}
.yca{bottom:749.114700px;}
.yea{bottom:750.914700px;}
.ya2{bottom:754.874700px;}
.y4e{bottom:762.614550px;}
.y92{bottom:762.614700px;}
.y70{bottom:769.454700px;}
.y36{bottom:780.614550px;}
.y8{bottom:783.803754px;}
.y21{bottom:785.654640px;}
.y60{bottom:787.814700px;}
.yc9{bottom:790.514700px;}
.ye9{bottom:792.314700px;}
.ya1{bottom:797.534700px;}
.y4d{bottom:804.014550px;}
.y91{bottom:804.014700px;}
.y7{bottom:804.725952px;}
.y35{bottom:822.014550px;}
.y6{bottom:825.648150px;}
.y20{bottom:827.054640px;}
.y5f{bottom:829.214700px;}
.yc8{bottom:831.914700px;}
.ye8{bottom:833.714700px;}
.y9e{bottom:840.014550px;}
.y9b{bottom:844.514550px;}
.y4c{bottom:845.414550px;}
.y90{bottom:845.414700px;}
.yfd{bottom:849.014700px;}
.yc0{bottom:852.254550px;}
.ya0{bottom:853.874650px;}
.y9a{bottom:858.374700px;}
.y9d{bottom:858.376306px;}
.y34{bottom:863.414550px;}
.y9f{bottom:865.574314px;}
.y5{bottom:867.490752px;}
.y1f{bottom:868.454640px;}
.y9c{bottom:870.075478px;}
.y5e{bottom:870.614700px;}
.yc7{bottom:873.314700px;}
.ye7{bottom:875.114700px;}
.y8f{bottom:886.814700px;}
.y4{bottom:888.412950px;}
.yfc{bottom:890.414700px;}
.y4b{bottom:893.654700px;}
.y33{bottom:904.814550px;}
.y1e{bottom:909.854640px;}
.y99{bottom:912.014550px;}
.y5d{bottom:912.014700px;}
.yc6{bottom:914.714700px;}
.ye6{bottom:916.514700px;}
.ydb{bottom:928.214700px;}
.y3{bottom:930.255552px;}
.yfb{bottom:931.814700px;}
.y8e{bottom:935.054700px;}
.y32{bottom:946.214550px;}
.y104{bottom:947.654700px;}
.y1d{bottom:950.894535px;}
.y2{bottom:951.177750px;}
.y4a{bottom:953.414700px;}
.yc5{bottom:956.114700px;}
.ye5{bottom:956.833530px;}
.y103{bottom:967.814700px;}
.yda{bottom:969.614700px;}
.y109{bottom:970.153650px;}
.yfa{bottom:982.214700px;}
.y31{bottom:987.614550px;}
.y102{bottom:988.154700px;}
.y108{bottom:989.954100px;}
.y49{bottom:994.814700px;}
.ye4{bottom:996.434115px;}
.yc4{bottom:997.514700px;}
.y101{bottom:1008.314700px;}
.y107{bottom:1009.754550px;}
.ye2{bottom:1011.014550px;}
.y1{bottom:1013.942400px;}
.yd9{bottom:1017.854700px;}
.y106{bottom:1019.834700px;}
.y100{bottom:1028.654700px;}
.y30{bottom:1029.014550px;}
.y10b{bottom:1029.554700px;}
.ye3{bottom:1036.034700px;}
.y48{bottom:1036.214700px;}
.yc3{bottom:1038.914700px;}
.yf9{bottom:1041.614700px;}
.yff{bottom:1048.814700px;}
.y105{bottom:1051.514700px;}
.ye1{bottom:1052.414550px;}
.y1c{bottom:1055.114125px;}
.y2f{bottom:1070.414550px;}
.y1b{bottom:1074.194640px;}
.y47{bottom:1077.614700px;}
.yc2{bottom:1080.314700px;}
.y10a{bottom:1091.114700px;}
.yf8{bottom:1101.014700px;}
.ye0{bottom:1109.654700px;}
.yfe{bottom:1110.014700px;}
.y2e{bottom:1118.654700px;}
.y46{bottom:1119.014700px;}
.y17{bottom:1148.850000px;}
.y10d{bottom:1170.000000px;}
.h4{height:26.208984px;}
.hf{height:33.279383px;}
.h16{height:39.313477px;}
.h17{height:39.339844px;}
.h19{height:40.781644px;}
.hd{height:41.526447px;}
.h9{height:41.526489px;}
.h12{height:47.925896px;}
.h15{height:48.024166px;}
.ha{height:48.220556px;}
.hb{height:48.796875px;}
.h2{height:49.351066px;}
.h10{height:49.927198px;}
.hc{height:50.027344px;}
.h11{height:50.027509px;}
.he{height:50.027944px;}
.h14{height:50.122584px;}
.h3{height:50.498765px;}
.h7{height:62.578125px;}
.h1{height:65.801146px;}
.h13{height:68.027544px;}
.h18{height:79.661644px;}
.h8{height:375.468049px;}
.h0{height:1188.000000px;}
.h5{height:1262.834931px;}
.h6{height:1263.000000px;}
.w1{width:892.914000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x26{left:7.500000px;}
.x7{left:49.680000px;}
.xb{left:127.620000px;}
.x21{left:144.180000px;}
.x1{left:145.369200px;}
.x19{left:154.440000px;}
.x1a{left:191.340000px;}
.x20{left:198.900000px;}
.x1d{left:202.680000px;}
.x1c{left:218.700000px;}
.x1e{left:219.960000px;}
.x9{left:223.230000px;}
.x1b{left:228.960000px;}
.x1f{left:234.900000px;}
.x2{left:258.953762px;}
.x24{left:307.080000px;}
.x23{left:311.040000px;}
.x22{left:338.400000px;}
.x12{left:354.061209px;}
.x14{left:371.879573px;}
.x17{left:385.919582px;}
.x11{left:399.240000px;}
.x5{left:417.422329px;}
.x15{left:425.700000px;}
.x13{left:428.940000px;}
.x16{left:434.339554px;}
.xe{left:456.120000px;}
.x10{left:457.560000px;}
.xf{left:462.960096px;}
.x3{left:479.559481px;}
.xd{left:485.460000px;}
.x18{left:492.840000px;}
.x4{left:536.835051px;}
.x6{left:687.743149px;}
.xc{left:749.880000px;}
.xa{left:757.439985px;}
.x8{left:772.920000px;}
.x25{left:798.000000px;}
@media print{
.v5{vertical-align:-16.000000pt;}
.v2{vertical-align:-8.320000pt;}
.v7{vertical-align:-5.120533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.020177pt;}
.v3{vertical-align:8.319467pt;}
.v4{vertical-align:16.000178pt;}
.v6{vertical-align:35.841600pt;}
.ls1{letter-spacing:-0.006376pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.322400pt;}
.ls9{letter-spacing:15.802558pt;}
.ls2{letter-spacing:16.322400pt;}
.ls7{letter-spacing:22.410302pt;}
.ls5{letter-spacing:238.148458pt;}
.ls4{letter-spacing:1008.109677pt;}
.ls6{letter-spacing:1118.829677pt;}
.ls8{letter-spacing:1283.812354pt;}
.ws12{word-spacing:-35.136000pt;}
.ws20{word-spacing:-26.352000pt;}
.ws14{word-spacing:-16.041733pt;}
.wse{word-spacing:-16.000000pt;}
.ws19{word-spacing:-13.344000pt;}
.wsf{word-spacing:-10.718800pt;}
.ws7{word-spacing:-0.063761pt;}
.wsd{word-spacing:0.000000pt;}
.ws10{word-spacing:5.920516pt;}
.ws13{word-spacing:8.480252pt;}
.ws16{word-spacing:8.576000pt;}
.wsa{word-spacing:12.325014pt;}
.ws15{word-spacing:13.486069pt;}
.ws1{word-spacing:15.876506pt;}
.wsc{word-spacing:16.290953pt;}
.wsb{word-spacing:18.541718pt;}
.ws9{word-spacing:20.212258pt;}
.ws8{word-spacing:20.830740pt;}
.ws0{word-spacing:21.168586pt;}
.ws6{word-spacing:25.938002pt;}
.ws4{word-spacing:49.880282pt;}
.ws5{word-spacing:52.086415pt;}
.ws1d{word-spacing:54.816000pt;}
.ws1f{word-spacing:61.760000pt;}
.ws1a{word-spacing:70.656000pt;}
.ws22{word-spacing:73.089600pt;}
.ws1e{word-spacing:74.368000pt;}
.ws21{word-spacing:77.870400pt;}
.ws1b{word-spacing:107.296000pt;}
.ws1c{word-spacing:108.096000pt;}
.ws18{word-spacing:131.649600pt;}
.ws17{word-spacing:179.649600pt;}
.ws11{word-spacing:242.141036pt;}
.ws3{word-spacing:444.911971pt;}
.ws2{word-spacing:480.299363pt;}
._1d{margin-left:-350.787791pt;}
._1c{margin-left:-333.591053pt;}
._1b{margin-left:-279.414911pt;}
._19{margin-left:-250.132005pt;}
._1e{margin-left:-244.655683pt;}
._20{margin-left:-223.968264pt;}
._1f{margin-left:-52.039383pt;}
._4{margin-left:-5.100885pt;}
._0{margin-left:-2.231637pt;}
._1{margin-left:-0.956416pt;}
._9{width:1.592806pt;}
._15{width:2.638388pt;}
._2{width:3.532363pt;}
._c{width:4.851637pt;}
._e{width:6.028363pt;}
._a{width:7.168000pt;}
._12{width:14.208000pt;}
._18{width:15.104000pt;}
._13{width:17.280000pt;}
._14{width:18.631194pt;}
._b{width:19.699637pt;}
._17{width:20.733815pt;}
._f{width:21.824000pt;}
._11{width:22.784000pt;}
._d{width:24.448000pt;}
._16{width:35.281532pt;}
._10{width:37.568000pt;}
._21{width:56.512000pt;}
._32{width:84.748800pt;}
._3b{width:87.950400pt;}
._3d{width:93.168000pt;}
._31{width:169.440000pt;}
._3c{width:180.177600pt;}
._39{width:181.536000pt;}
._35{width:193.440000pt;}
._8{width:195.351156pt;}
._6{width:201.089652pt;}
._2d{width:213.854400pt;}
._25{width:215.745600pt;}
._2c{width:221.040000pt;}
._34{width:225.662400pt;}
._36{width:229.536000pt;}
._7{width:232.906424pt;}
._3a{width:235.777198pt;}
._5{width:241.131602pt;}
._24{width:253.056000pt;}
._26{width:263.712000pt;}
._27{width:285.921600pt;}
._38{width:292.497600pt;}
._28{width:293.678831pt;}
._3{width:299.855544pt;}
._33{width:315.537600pt;}
._2e{width:327.888000pt;}
._2a{width:344.736000pt;}
._30{width:366.494400pt;}
._22{width:371.649600pt;}
._23{width:385.857600pt;}
._2b{width:470.112000pt;}
._29{width:519.456000pt;}
._1a{width:560.640000pt;}
._37{width:587.582400pt;}
._2f{width:589.953600pt;}
.fs2{font-size:32.000000pt;}
.fsa{font-size:42.604267pt;}
.fsd{font-size:42.749867pt;}
.fs9{font-size:42.875200pt;}
.fsf{font-size:48.000000pt;}
.fs8{font-size:53.124800pt;}
.fs5{font-size:53.124853pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.875147pt;}
.fse{font-size:61.437333pt;}
.fs1{font-size:63.761067pt;}
.fsb{font-size:63.916800pt;}
.fs7{font-size:64.000000pt;}
.fsc{font-size:64.166933pt;}
.fs0{font-size:85.014400pt;}
.fs4{font-size:319.999403pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:40.000000pt;}
.y1a{bottom:51.159733pt;}
.ybf{bottom:119.479733pt;}
.yb3{bottom:128.919733pt;}
.yd8{bottom:137.239733pt;}
.y7e{bottom:140.279733pt;}
.y45{bottom:141.879733pt;}
.y6f{bottom:148.439733pt;}
.ybe{bottom:156.279733pt;}
.y5c{bottom:162.679600pt;}
.y8d{bottom:162.679733pt;}
.yb2{bottom:165.719733pt;}
.y98{bottom:172.599733pt;}
.yd7{bottom:174.039733pt;}
.y7d{bottom:177.079733pt;}
.y44{bottom:178.679733pt;}
.y6e{bottom:185.239600pt;}
.y83{bottom:185.239733pt;}
.yf7{bottom:189.239733pt;}
.ybd{bottom:193.079733pt;}
.yc1{bottom:198.039733pt;}
.y5b{bottom:199.479600pt;}
.y8c{bottom:199.479733pt;}
.yb1{bottom:202.519733pt;}
.y97{bottom:209.399733pt;}
.yd6{bottom:210.839733pt;}
.y7c{bottom:213.879733pt;}
.y43{bottom:215.479733pt;}
.y2d{bottom:219.959733pt;}
.y6d{bottom:222.039600pt;}
.y82{bottom:222.039733pt;}
.yf6{bottom:226.039733pt;}
.ybc{bottom:229.879733pt;}
.y5a{bottom:236.279600pt;}
.y8b{bottom:236.279733pt;}
.yad{bottom:238.999733pt;}
.yae{bottom:242.999733pt;}
.y93{bottom:245.879733pt;}
.yd5{bottom:247.639733pt;}
.y94{bottom:249.879733pt;}
.y7b{bottom:250.679733pt;}
.y42{bottom:252.279733pt;}
.yb0{bottom:255.319697pt;}
.y2c{bottom:256.439720pt;}
.y6c{bottom:258.839600pt;}
.y81{bottom:258.839733pt;}
.y96{bottom:262.199697pt;}
.yf5{bottom:262.679733pt;}
.y10c{bottom:264.000000pt;}
.yaf{bottom:265.559168pt;}
.ybb{bottom:266.679733pt;}
.y95{bottom:272.439168pt;}
.y59{bottom:273.079600pt;}
.y8a{bottom:273.079733pt;}
.y19{bottom:280.626667pt;}
.yd4{bottom:284.439733pt;}
.y7a{bottom:287.479733pt;}
.y41{bottom:289.079733pt;}
.y6b{bottom:295.639600pt;}
.y80{bottom:295.639733pt;}
.yf4{bottom:299.479733pt;}
.yac{bottom:302.999733pt;}
.yba{bottom:303.479733pt;}
.y58{bottom:309.879600pt;}
.y89{bottom:309.879733pt;}
.yd3{bottom:321.239733pt;}
.y79{bottom:324.279733pt;}
.y40{bottom:325.879733pt;}
.y2b{bottom:330.359680pt;}
.y6a{bottom:332.439600pt;}
.y7f{bottom:332.439733pt;}
.yf3{bottom:336.279733pt;}
.yab{bottom:339.799733pt;}
.yb9{bottom:340.279733pt;}
.y57{bottom:346.679600pt;}
.y88{bottom:346.679733pt;}
.yd2{bottom:358.039733pt;}
.y78{bottom:361.079733pt;}
.y3f{bottom:362.679733pt;}
.y16{bottom:366.149980pt;}
.y2a{bottom:367.159680pt;}
.y69{bottom:369.239733pt;}
.yf2{bottom:373.079733pt;}
.yaa{bottom:376.599733pt;}
.yb8{bottom:383.159733pt;}
.y56{bottom:383.479600pt;}
.y87{bottom:383.479733pt;}
.y15{bottom:384.747489pt;}
.yd1{bottom:394.839733pt;}
.y77{bottom:397.879733pt;}
.y3e{bottom:399.479733pt;}
.y14{bottom:403.344999pt;}
.y29{bottom:403.959680pt;}
.y68{bottom:406.039733pt;}
.yf1{bottom:409.879733pt;}
.ya9{bottom:413.399733pt;}
.y55{bottom:420.279600pt;}
.y86{bottom:420.279733pt;}
.y13{bottom:421.942508pt;}
.yd0{bottom:431.639733pt;}
.ydf{bottom:434.679733pt;}
.y3d{bottom:436.279733pt;}
.y12{bottom:440.540017pt;}
.y28{bottom:440.759680pt;}
.y76{bottom:440.759733pt;}
.y67{bottom:442.839733pt;}
.yf0{bottom:446.679733pt;}
.ya8{bottom:450.199733pt;}
.y54{bottom:457.079600pt;}
.y85{bottom:457.079733pt;}
.y11{bottom:459.137526pt;}
.ycf{bottom:468.439733pt;}
.yde{bottom:471.479733pt;}
.y3c{bottom:473.079733pt;}
.y27{bottom:477.559680pt;}
.y66{bottom:479.639733pt;}
.yef{bottom:483.479733pt;}
.ya7{bottom:486.999733pt;}
.y10{bottom:493.472860pt;}
.y53{bottom:493.879600pt;}
.y75{bottom:493.879733pt;}
.yce{bottom:502.359733pt;}
.ydd{bottom:508.279733pt;}
.yb7{bottom:509.879600pt;}
.y3b{bottom:509.879733pt;}
.yf{bottom:512.070369pt;}
.y26{bottom:514.359680pt;}
.y65{bottom:516.439733pt;}
.yee{bottom:520.279733pt;}
.ya6{bottom:523.799733pt;}
.ye{bottom:530.667879pt;}
.y52{bottom:530.679600pt;}
.y74{bottom:530.679733pt;}
.yb6{bottom:546.679600pt;}
.y3a{bottom:546.679733pt;}
.yd{bottom:549.265388pt;}
.y25{bottom:551.159680pt;}
.ydc{bottom:551.159733pt;}
.y64{bottom:553.079733pt;}
.ycd{bottom:555.479733pt;}
.yed{bottom:557.079733pt;}
.ya5{bottom:560.599733pt;}
.y51{bottom:567.479600pt;}
.y73{bottom:567.479733pt;}
.yb4{bottom:573.559733pt;}
.yb5{bottom:583.479600pt;}
.y39{bottom:583.479733pt;}
.yc{bottom:587.788230pt;}
.y24{bottom:587.959680pt;}
.y63{bottom:589.879733pt;}
.ycc{bottom:592.279733pt;}
.yec{bottom:593.879733pt;}
.ya4{bottom:597.399733pt;}
.y50{bottom:604.279600pt;}
.y72{bottom:604.279733pt;}
.yb{bottom:606.385739pt;}
.y84{bottom:610.359733pt;}
.y38{bottom:620.279600pt;}
.y23{bottom:624.759680pt;}
.ya{bottom:624.983248pt;}
.y62{bottom:626.679733pt;}
.ycb{bottom:629.079733pt;}
.yeb{bottom:630.679733pt;}
.ya3{bottom:634.199733pt;}
.y4f{bottom:641.079600pt;}
.y71{bottom:641.079733pt;}
.y37{bottom:657.079600pt;}
.y9{bottom:659.521024pt;}
.y22{bottom:661.559680pt;}
.y61{bottom:663.479733pt;}
.yca{bottom:665.879733pt;}
.yea{bottom:667.479733pt;}
.ya2{bottom:670.999733pt;}
.y4e{bottom:677.879600pt;}
.y92{bottom:677.879733pt;}
.y70{bottom:683.959733pt;}
.y36{bottom:693.879600pt;}
.y8{bottom:696.714448pt;}
.y21{bottom:698.359680pt;}
.y60{bottom:700.279733pt;}
.yc9{bottom:702.679733pt;}
.ye9{bottom:704.279733pt;}
.ya1{bottom:708.919733pt;}
.y4d{bottom:714.679600pt;}
.y91{bottom:714.679733pt;}
.y7{bottom:715.311958pt;}
.y35{bottom:730.679600pt;}
.y6{bottom:733.909467pt;}
.y20{bottom:735.159680pt;}
.y5f{bottom:737.079733pt;}
.yc8{bottom:739.479733pt;}
.ye8{bottom:741.079733pt;}
.y9e{bottom:746.679600pt;}
.y9b{bottom:750.679600pt;}
.y4c{bottom:751.479600pt;}
.y90{bottom:751.479733pt;}
.yfd{bottom:754.679733pt;}
.yc0{bottom:757.559600pt;}
.ya0{bottom:758.999689pt;}
.y9a{bottom:762.999733pt;}
.y9d{bottom:763.001161pt;}
.y34{bottom:767.479600pt;}
.y9f{bottom:769.399390pt;}
.y5{bottom:771.102891pt;}
.y1f{bottom:771.959680pt;}
.y9c{bottom:773.400424pt;}
.y5e{bottom:773.879733pt;}
.yc7{bottom:776.279733pt;}
.ye7{bottom:777.879733pt;}
.y8f{bottom:788.279733pt;}
.y4{bottom:789.700400pt;}
.yfc{bottom:791.479733pt;}
.y4b{bottom:794.359733pt;}
.y33{bottom:804.279600pt;}
.y1e{bottom:808.759680pt;}
.y99{bottom:810.679600pt;}
.y5d{bottom:810.679733pt;}
.yc6{bottom:813.079733pt;}
.ye6{bottom:814.679733pt;}
.ydb{bottom:825.079733pt;}
.y3{bottom:826.893824pt;}
.yfb{bottom:828.279733pt;}
.y8e{bottom:831.159733pt;}
.y32{bottom:841.079600pt;}
.y104{bottom:842.359733pt;}
.y1d{bottom:845.239587pt;}
.y2{bottom:845.491333pt;}
.y4a{bottom:847.479733pt;}
.yc5{bottom:849.879733pt;}
.ye5{bottom:850.518693pt;}
.y103{bottom:860.279733pt;}
.yda{bottom:861.879733pt;}
.y109{bottom:862.358800pt;}
.yfa{bottom:873.079733pt;}
.y31{bottom:877.879600pt;}
.y102{bottom:878.359733pt;}
.y108{bottom:879.959200pt;}
.y49{bottom:884.279733pt;}
.ye4{bottom:885.719213pt;}
.yc4{bottom:886.679733pt;}
.y101{bottom:896.279733pt;}
.y107{bottom:897.559600pt;}
.ye2{bottom:898.679600pt;}
.y1{bottom:901.282133pt;}
.yd9{bottom:904.759733pt;}
.y106{bottom:906.519733pt;}
.y100{bottom:914.359733pt;}
.y30{bottom:914.679600pt;}
.y10b{bottom:915.159733pt;}
.ye3{bottom:920.919733pt;}
.y48{bottom:921.079733pt;}
.yc3{bottom:923.479733pt;}
.yf9{bottom:925.879733pt;}
.yff{bottom:932.279733pt;}
.y105{bottom:934.679733pt;}
.ye1{bottom:935.479600pt;}
.y1c{bottom:937.879222pt;}
.y2f{bottom:951.479600pt;}
.y1b{bottom:954.839680pt;}
.y47{bottom:957.879733pt;}
.yc2{bottom:960.279733pt;}
.y10a{bottom:969.879733pt;}
.yf8{bottom:978.679733pt;}
.ye0{bottom:986.359733pt;}
.yfe{bottom:986.679733pt;}
.y2e{bottom:994.359733pt;}
.y46{bottom:994.679733pt;}
.y17{bottom:1021.200000pt;}
.y10d{bottom:1040.000000pt;}
.h4{height:23.296875pt;}
.hf{height:29.581673pt;}
.h16{height:34.945312pt;}
.h17{height:34.968750pt;}
.h19{height:36.250350pt;}
.hd{height:36.912398pt;}
.h9{height:36.912435pt;}
.h12{height:42.600797pt;}
.h15{height:42.688147pt;}
.ha{height:42.862717pt;}
.hb{height:43.375000pt;}
.h2{height:43.867614pt;}
.h10{height:44.379731pt;}
.hc{height:44.468750pt;}
.h11{height:44.468897pt;}
.he{height:44.469283pt;}
.h14{height:44.553408pt;}
.h3{height:44.887791pt;}
.h7{height:55.625000pt;}
.h1{height:58.489907pt;}
.h13{height:60.468928pt;}
.h18{height:70.810350pt;}
.h8{height:333.749377pt;}
.h0{height:1056.000000pt;}
.h5{height:1122.519939pt;}
.h6{height:1122.666667pt;}
.w1{width:793.701333pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.666667pt;}
.x7{left:44.160000pt;}
.xb{left:113.440000pt;}
.x21{left:128.160000pt;}
.x1{left:129.217067pt;}
.x19{left:137.280000pt;}
.x1a{left:170.080000pt;}
.x20{left:176.800000pt;}
.x1d{left:180.160000pt;}
.x1c{left:194.400000pt;}
.x1e{left:195.520000pt;}
.x9{left:198.426667pt;}
.x1b{left:203.520000pt;}
.x1f{left:208.800000pt;}
.x2{left:230.181122pt;}
.x24{left:272.960000pt;}
.x23{left:276.480000pt;}
.x22{left:300.800000pt;}
.x12{left:314.721075pt;}
.x14{left:330.559621pt;}
.x17{left:343.039628pt;}
.x11{left:354.880000pt;}
.x5{left:371.042070pt;}
.x15{left:378.400000pt;}
.x13{left:381.280000pt;}
.x16{left:386.079604pt;}
.xe{left:405.440000pt;}
.x10{left:406.720000pt;}
.xf{left:411.520086pt;}
.x3{left:426.275094pt;}
.xd{left:431.520000pt;}
.x18{left:438.080000pt;}
.x4{left:477.186712pt;}
.x6{left:611.327244pt;}
.xc{left:666.560000pt;}
.xa{left:673.279987pt;}
.x8{left:687.040000pt;}
.x25{left:709.333333pt;}
}

