this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

designtohtml

+9541
+1
Design2Html/Design2HTML.hs
··· 1 + module Design2HTML where
+265
Design2Html/Design2HTML.ipynb
··· 1 + { 2 + "cells": [ 3 + { 4 + "cell_type": "code", 5 + "execution_count": 1, 6 + "metadata": {}, 7 + "outputs": [], 8 + "source": [ 9 + ":set -XTemplateHaskell\n", 10 + ":set -XOverloadedStrings\n", 11 + ":set -XNoImplicitPrelude\n", 12 + ":set -XDeriveFunctor\n", 13 + ":set -XDeriveFoldable\n", 14 + ":set -XDeriveTraversable\n", 15 + ":set -XStandaloneDeriving\n", 16 + ":set -XTupleSections\n", 17 + ":set -XDeriveGeneric\n", 18 + ":set -XDuplicateRecordFields\n", 19 + ":set -XMultiParamTypeClasses\n", 20 + ":set -XFunctionalDependencies\n", 21 + ":set -XFlexibleInstances\n", 22 + ":set -XFlexibleContexts\n" 23 + ] 24 + }, 25 + { 26 + "cell_type": "code", 27 + "execution_count": 2, 28 + "metadata": {}, 29 + "outputs": [], 30 + "source": [ 31 + ":load TreeUnfold.hs" 32 + ] 33 + }, 34 + { 35 + "cell_type": "code", 36 + "execution_count": 3, 37 + "metadata": {}, 38 + "outputs": [], 39 + "source": [ 40 + "module Design2HTML where" 41 + ] 42 + }, 43 + { 44 + "cell_type": "code", 45 + "execution_count": 4, 46 + "metadata": {}, 47 + "outputs": [], 48 + "source": [ 49 + "import Papa\n", 50 + "import Data.Tree.Lens\n", 51 + "import qualified Data.Sequence as S\n", 52 + "import qualified Data.HashMap.Strict as HS\n", 53 + "import Data.Tree\n", 54 + "import Control.Monad.Zip\n", 55 + "\n", 56 + "import TreeUnfold\n", 57 + "import Prelude(showsPrec, showString)\n" 58 + ] 59 + }, 60 + { 61 + "cell_type": "code", 62 + "execution_count": 22, 63 + "metadata": {}, 64 + "outputs": [], 65 + "source": [ 66 + "data Coord = Coord {_x :: Int, _y :: Int, _height :: Int, _width :: Int}\n", 67 + "\n", 68 + "data CSSRule = (:=) {_lhs :: String, _rhs :: String}\n", 69 + "\n", 70 + "data DNode = DNode {\n", 71 + " _did :: String,\n", 72 + " _title :: String,\n", 73 + " _coords :: Coord,\n", 74 + " _content :: Maybe String,\n", 75 + " _css :: HS.HashMap String [CSSRule],\n", 76 + " _style :: [CSSRule]}\n", 77 + " \n", 78 + "data Snapshot = Snapshot {\n", 79 + " _src :: String,\n", 80 + " _style :: [CSSRule]}\n", 81 + " \n", 82 + "data DesignDoc = DesignDoc {\n", 83 + " _snapshot :: Snapshot,\n", 84 + " _nodes :: [[DNode]]}\n", 85 + "\n", 86 + "\n", 87 + "makeFieldsNoPrefix ''Coord\n", 88 + "makeFieldsNoPrefix ''DNode\n", 89 + "makeFieldsNoPrefix ''Snapshot\n", 90 + "makeFieldsNoPrefix ''DesignDoc\n", 91 + "\n", 92 + "deriving instance Show Coord\n", 93 + "deriving instance Eq Coord\n", 94 + "deriving instance Ord Coord\n", 95 + "\n", 96 + "deriving instance Ord CSSRule\n", 97 + "deriving instance Eq CSSRule\n", 98 + "\n", 99 + "instance Show CSSRule where\n", 100 + " showsPrec _ (lhs := rhs) = showString lhs . showString \" : \" . showString rhs . showString \";\"\n", 101 + "\n", 102 + "deriving instance Show DNode\n", 103 + "\n", 104 + "instance Eq DNode where\n", 105 + " a == b = a ^. did == b ^. did\n", 106 + "\n", 107 + "instance Ord DNode where\n", 108 + " a <= b = a ^. coords . y <= b ^. coords . y\n", 109 + "\n", 110 + "deriving instance Show DesignDoc\n", 111 + "deriving instance Show Snapshot" 112 + ] 113 + }, 114 + { 115 + "cell_type": "code", 116 + "execution_count": 23, 117 + "metadata": {}, 118 + "outputs": [], 119 + "source": [ 120 + "import Data.Aeson\n", 121 + "import GHC.Generics\n", 122 + "\n", 123 + "deriving instance Generic Coord\n", 124 + "deriving instance Generic CSSRule\n", 125 + "deriving instance Generic DNode\n", 126 + "deriving instance Generic Snapshot\n", 127 + "deriving instance Generic DesignDoc\n", 128 + "\n", 129 + "instance FromJSON Coord\n", 130 + "instance FromJSON CSSRule\n", 131 + "instance FromJSON DNode\n", 132 + "instance FromJSON Snapshot\n", 133 + "instance FromJSON DesignDoc\n", 134 + "\n", 135 + "instance ToJSON Coord\n", 136 + "instance ToJSON CSSRule\n", 137 + "instance ToJSON DNode\n", 138 + "instance ToJSON Snapshot\n", 139 + "instance ToJSON DesignDoc\n" 140 + ] 141 + }, 142 + { 143 + "cell_type": "code", 144 + "execution_count": 25, 145 + "metadata": {}, 146 + "outputs": [], 147 + "source": [ 148 + "dummy :: String -> DNode\n", 149 + "dummy s = DNode s s (Coord 0 0 0 0) Nothing HS.empty []\n", 150 + "\n", 151 + "wrapper = Node (dummy \"header\") []\n", 152 + "\n", 153 + "wrap :: String -> HS.HashMap String String -> String -> String\n", 154 + "wrap tag xs x = \"<\" <> tag <> \" \" <> (ppMap xs) <> \">\" <> x <> \"</\" <> tag <> \">\"\n", 155 + "\n", 156 + "ppMap :: HS.HashMap String String -> String\n", 157 + "ppMap = HS.foldlWithKey' (\\a k v -> k <> \"=\" <> \"\\\"\" <> v <> \"\\\"\" <> \" \" <> a) \"\"\n", 158 + "\n", 159 + "ruleToAttr :: [CSSRule] -> String\n", 160 + "ruleToAttr = concat . (show <$>)\n", 161 + "\n", 162 + "foldToCSS :: Tree DNode -> String\n", 163 + "foldToCSS = foldTree fn\n", 164 + " where\n", 165 + " fn :: DNode -> [String] -> String\n", 166 + " fn (DNode _ _ _ _ css _) strs = HS.foldlWithKey' gn (concat strs) css\n", 167 + " \n", 168 + " gn :: String -> String -> [CSSRule] -> String\n", 169 + " gn a k xs = k <> \"{\" <> ruleToAttr xs <> \"}\\n\" <> a \n", 170 + "\n", 171 + "foldToHTML :: Tree DNode -> String\n", 172 + "foldToHTML = foldTree fn\n", 173 + " where\n", 174 + " fn :: DNode -> [String] -> String\n", 175 + " fn (DNode i t co c css s) str = wrap \"div\" attrs (content <> concat str)\n", 176 + " where\n", 177 + " attrs = HS.fromList [\n", 178 + " (\"id\",i),\n", 179 + " (\"name\", t),\n", 180 + " (\"class\", concat $ intersperse \" \" $ drop 1 <$> HS.keys css),\n", 181 + " (\"style\", ruleToAttr s)\n", 182 + " ]\n", 183 + "\n", 184 + " \n", 185 + " content = fromMaybe \"\" $ wrap \"span\" HS.empty <$> c\n" 186 + ] 187 + }, 188 + { 189 + "cell_type": "code", 190 + "execution_count": 26, 191 + "metadata": {}, 192 + "outputs": [], 193 + "source": [ 194 + "import qualified Data.ByteString.Lazy as BS\n", 195 + "import qualified Data.ByteString.Lazy.Char8 as C(pack, putStrLn)\n", 196 + "\n", 197 + "snapshotHTML :: Snapshot -> String\n", 198 + "snapshotHTML (Snapshot s xs) = wrap \"image\" attrs \"\" \n", 199 + " where\n", 200 + " attrs = HS.fromList [\n", 201 + " (\"style\", ruleToAttr xs),\n", 202 + " (\"src\", s),\n", 203 + " (\"crossorigin\", \"anonymous\")]\n", 204 + " \n", 205 + " \n", 206 + "page :: String -> String -> String -> String\n", 207 + "page c s b = \"<!DOCTYPE html><html><head><meta charset=\" <> \"utf-8\" <> \"><style>\"\n", 208 + " <> c\n", 209 + " <> \"</style></head><body>\"\n", 210 + " <> \"<div>\" \n", 211 + "-- <> s\n", 212 + " <> b\n", 213 + " <> \"</div></body></html>\"\n", 214 + "\n", 215 + "\n" 216 + ] 217 + }, 218 + { 219 + "cell_type": "code", 220 + "execution_count": 35, 221 + "metadata": {}, 222 + "outputs": [], 223 + "source": [ 224 + "-- import qualified Data.Text.Encoding as T(decodeUtf8)\n", 225 + "import qualified Data.Text as T(pack)\n", 226 + "import qualified Data.Text.IO as T(writeFile)\n", 227 + "do\n", 228 + " file <- BS.readFile \"test.json\"\n", 229 + " let f = decode file :: Maybe DesignDoc\n", 230 + " tr = f ^? traverse . nodes . Papa.to (unfoldFullTree wrapper . sort)\n", 231 + " css = foldToCSS <$> tr\n", 232 + " html = foldToHTML <$> tr\n", 233 + " ss = snapshotHTML <$> f ^? traverse . snapshot\n", 234 + "-- let h = f ^? traverse . nodes . Papa.to (foldToHTML . unfoldFullTree wrapper)\n", 235 + "-- C.putStrLn $ C.pack $ show (f ^? traverse . nodes)\n", 236 + " T.writeFile \"out.html\" $ T.pack $ fromMaybe \"\" $ page <$> css <*> ss <*> html\n" 237 + ] 238 + }, 239 + { 240 + "cell_type": "code", 241 + "execution_count": null, 242 + "metadata": {}, 243 + "outputs": [], 244 + "source": [ 245 + ":t snapshot" 246 + ] 247 + } 248 + ], 249 + "metadata": { 250 + "kernelspec": { 251 + "display_name": "Haskell", 252 + "language": "haskell", 253 + "name": "haskell" 254 + }, 255 + "language_info": { 256 + "codemirror_mode": "ihaskell", 257 + "file_extension": ".hs", 258 + "name": "haskell", 259 + "pygments_lexer": "Haskell", 260 + "version": "8.6.4" 261 + } 262 + }, 263 + "nbformat": 4, 264 + "nbformat_minor": 2 265 + }
+1
Design2Html/Plates.hs
··· 1 + module Plates where
+36
Design2Html/TreeUnfold.hs
··· 1 + module TreeUnfold (unfoldFullTree) where 2 + 3 + import Papa 4 + import Data.Tree.Lens 5 + import Data.Tree 6 + 7 + -- check if the root of tree matches to the incoming item 8 + check :: Eq a => a -> Tree a -> Bool 9 + check i = (== i) . rootLabel 10 + 11 + -- create a traversal of plates as per the depth required by the unfold operation 12 + platesPerDepth :: (Plated a, Applicative f) => Int -> ((a -> f a) -> a -> f a) 13 + platesPerDepth i = foldl' (\g p -> plate . g) id [0..i] 14 + 15 + fn :: Eq a => Int -> (Tree a, [a]) -> a -> (Tree a, [a]) 16 + fn i (ts,ys) x = if isInLevel 17 + then 18 + (ts,ys) -- ^ if new node is already there then move on 19 + else 20 + (append ts,ys) -- ^ append the new node to the right parent 21 + where 22 + newNode = Node x [] -- ^ new node 23 + parent = ys ^?! ix (i - 1) -- ^ parent index, required in case of a new child 24 + isInLevel = isJust $ ts ^? platesPerDepth i . filtered (check x) -- ^ check if new node is already there in this level 25 + append = bool (over (platesPerDepth (i - 1) . filtered (check parent)) (branches <>~ [newNode])) -- ^ add the new node as a new child to a specific parent 26 + (over branches (<> [newNode])) -- ^ if first node then just add it there 27 + (i == 0) -- ^ check if it's first node 28 + 29 + 30 + -- unfold a tree from list of lists where each list is for items that signifies 31 + -- the path of an element (last one of the list) right from the top of the tree 32 + -- 33 + -- the function takes an initial tree as the container tree within which rest of the final tree is constructed 34 + -- 35 + unfoldFullTree :: Eq a => Tree a -> [[a]] -> Tree a 36 + unfoldFullTree = foldl' (\t ys -> fst $ ifoldl' fn (t,ys) ys)
+162
Design2Html/TreeUnfold.ipynb
··· 1 + { 2 + "cells": [ 3 + { 4 + "cell_type": "code", 5 + "execution_count": 1, 6 + "metadata": {}, 7 + "outputs": [], 8 + "source": [ 9 + ":set -XNoImplicitPrelude" 10 + ] 11 + }, 12 + { 13 + "cell_type": "code", 14 + "execution_count": 2, 15 + "metadata": {}, 16 + "outputs": [], 17 + "source": [ 18 + "module TreeUnfold (unfoldFullTree) where\n", 19 + "\n", 20 + "import Papa\n", 21 + "import Data.Tree.Lens\n", 22 + "import Data.Tree\n", 23 + "\n", 24 + "-- check if the root of tree matches to the incoming item\n", 25 + "check :: Eq a => a -> Tree a -> Bool\n", 26 + "check i = (== i) . rootLabel\n", 27 + "\n", 28 + "-- create a traversal of plates as per the depth required by the unfold operation\n", 29 + "platesPerDepth :: (Plated a, Applicative f) => Int -> ((a -> f a) -> a -> f a)\n", 30 + "platesPerDepth i = foldl' (\\g p -> plate . g) id [0..i]\n", 31 + "\n", 32 + "fn :: Eq a => Int -> (Tree a, [a]) -> a -> (Tree a, [a])\n", 33 + "fn i (ts,ys) x = if isInLevel \n", 34 + " then \n", 35 + " (ts,ys) -- ^ if new node is already there then move on\n", 36 + " else \n", 37 + " (append ts,ys) -- ^ append the new node to the right parent\n", 38 + " where\n", 39 + " newNode = Node x [] -- ^ new node\n", 40 + " parent = ys ^?! ix (i - 1) -- ^ parent index, required in case of a new child\n", 41 + " isInLevel = isJust $ ts ^? platesPerDepth i . filtered (check x) -- ^ check if new node is already there in this level\n", 42 + " append = bool (over (platesPerDepth (i - 1) . filtered (check parent)) (branches <>~ [newNode])) -- ^ add the new node as a new child to a specific parent\n", 43 + " (over branches (<> [newNode])) -- ^ if first node then just add it there\n", 44 + " (i == 0) -- ^ check if it's first node\n", 45 + "\n", 46 + "\n", 47 + "-- unfold a tree from list of lists where each list is for items that signifies\n", 48 + "-- the path of an element (last one of the list) right from the top of the tree\n", 49 + "-- \n", 50 + "-- the function takes an initial tree as the container tree within which rest of the final tree is constructed\n", 51 + "-- \n", 52 + "unfoldFullTree :: Eq a => Tree a -> [[a]] -> Tree a\n", 53 + "unfoldFullTree = foldl' (\\t ys -> fst $ ifoldl' fn (t,ys) ys)\n" 54 + ] 55 + }, 56 + { 57 + "cell_type": "code", 58 + "execution_count": 5, 59 + "metadata": {}, 60 + "outputs": [ 61 + { 62 + "data": { 63 + "text/plain": [ 64 + "True" 65 + ] 66 + }, 67 + "metadata": {}, 68 + "output_type": "display_data" 69 + }, 70 + { 71 + "data": { 72 + "text/plain": [ 73 + "True" 74 + ] 75 + }, 76 + "metadata": {}, 77 + "output_type": "display_data" 78 + }, 79 + { 80 + "data": { 81 + "text/plain": [ 82 + "True" 83 + ] 84 + }, 85 + "metadata": {}, 86 + "output_type": "display_data" 87 + }, 88 + { 89 + "data": { 90 + "text/plain": [ 91 + "True" 92 + ] 93 + }, 94 + "metadata": {}, 95 + "output_type": "display_data" 96 + }, 97 + { 98 + "data": { 99 + "text/plain": [ 100 + "True" 101 + ] 102 + }, 103 + "metadata": {}, 104 + "output_type": "display_data" 105 + }, 106 + { 107 + "data": { 108 + "text/plain": [ 109 + "True" 110 + ] 111 + }, 112 + "metadata": {}, 113 + "output_type": "display_data" 114 + } 115 + ], 116 + "source": [ 117 + "-- Tests\n", 118 + "import Papa\n", 119 + "import Data.Tree\n", 120 + "\n", 121 + "tr1 = Node 0 []\n", 122 + "\n", 123 + "inp = [[1,2,4],[1,2],[1,2,4,5],[1],[1,2,3]]\n", 124 + "unfoldFullTree tr1 inp == Node 0 [Node 1 [Node 2 [Node 4 [Node 5 []], Node 3 []]]]\n", 125 + "\n", 126 + "inp1 = [[1],[2],[3]]\n", 127 + "unfoldFullTree tr1 inp1 == Node 0 [Node 1 [], Node 2 [], Node 3 []]\n", 128 + "\n", 129 + "inp2 = [[1,2,3], [2,3,4], [1,4,6]]\n", 130 + "unfoldFullTree tr1 inp2 == Node 0 [Node 1 [Node 2 [Node 3 []], Node 4 [Node 6 []]], Node 2 [Node 3 [Node 4 []]]]\n", 131 + "\n", 132 + "inp3 = [[1,2],[1,3],[1,4],[1],[1,3,5]]\n", 133 + "unfoldFullTree tr1 inp3 == Node 0 [Node 1 [Node 2 [], Node 3 [Node 5 []], Node 4 []]]\n", 134 + "\n", 135 + "inp4 = [[1,3],[1,2,5],[1,3,6,7],[1],[1,2]]\n", 136 + "unfoldFullTree tr1 inp4 == Node 0 [Node 1 [Node 3 [Node 6 [Node 7 []]], Node 2 [Node 5 []]]]\n", 137 + "\n", 138 + "inp5 = [[1,2,3],[1,2],[1,3,2],[1,3],[1]]\n", 139 + "unfoldFullTree tr1 inp5 == Node 0 [Node 1 [Node 2 [Node 3 []], Node 3 [Node 2 []]]]\n", 140 + "\n", 141 + "\n", 142 + "\n" 143 + ] 144 + } 145 + ], 146 + "metadata": { 147 + "kernelspec": { 148 + "display_name": "Haskell", 149 + "language": "haskell", 150 + "name": "haskell" 151 + }, 152 + "language_info": { 153 + "codemirror_mode": "ihaskell", 154 + "file_extension": ".hs", 155 + "name": "haskell", 156 + "pygments_lexer": "Haskell", 157 + "version": "8.6.4" 158 + } 159 + }, 160 + "nbformat": 4, 161 + "nbformat_minor": 2 162 + }
+17
Design2Html/default.nix
··· 1 + let pkgs = import ../pkgs.nix; 2 + in 3 + import "${pkgs.ihaskell}/release.nix" { 4 + compiler = "ghc864"; 5 + nixpkgs = import pkgs.nixpkgs {}; 6 + packages = self: with self; [ 7 + papa 8 + lens-aeson 9 + fingertree 10 + containers 11 + free 12 + comonad 13 + # rose-trees 14 + zippers 15 + mtl 16 + ]; 17 + }
+90
Design2Html/out.html
··· 1 + <!DOCTYPE html><html><head><meta charset=utf-8><style>.Team-page---tablet-sample{width : 700px;height : 2134px;background-color : #ffffff;} 2 + .Rectangle{width : 700px;height : 210px;background-color : #2d2926;} 3 + .Cobranded-logos{width : 495px;height : 62px;} 4 + .Path{width : 44px;height : 49px;background-color : #ffffff;} 5 + .Bitmap{width : 72px;height : 62px;} 6 + .Path{width : 20px;height : 44px;background-color : #ffffff;} 7 + .Rectangle{width : 1px;height : 60px;background-color : #edeeee;} 8 + .Rectangle{width : 7px;height : 7px;background-color : #ffffff;} 9 + .Shape{width : 34px;height : 34px;background-color : #ffffff;} 10 + .Path{width : 29px;height : 34px;background-color : #ffffff;} 11 + .Shape{width : 34px;height : 34px;background-color : #ffffff;} 12 + .Path{width : 29px;height : 34px;background-color : #ffffff;} 13 + .Shape{width : 34px;height : 50px;background-color : #ffffff;} 14 + .Rectangle{width : 7px;height : 32px;background-color : #ffffff;} 15 + .GSK-RD-Strategic-Ve{width : 643px;height : 38px;font-family : ProximaNova;font-size : 32px;font-weight : bold;font-style : normal;font-stretch : normal;line-height : normal;letter-spacing : normal;color : #ffffff;} 16 + .This-line-reserved-f{width : 643px;height : 38px;font-family : ProximaNova;font-size : 22px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : normal;letter-spacing : normal;color : #ffffff;} 17 + .Rectangle-Copy-7{width : 150px;height : 46px;background-color : #edeeee;} 18 + .Your-team{width : 83px;height : 26px;font-family : ProximaNova;font-size : 18px;font-weight : bold;font-style : normal;font-stretch : normal;line-height : 1.44;letter-spacing : normal;color : #2d2926;} 19 + .Triangle-Copy-3{width : 16px;height : 14px;background-color : #4298b5;} 20 + .Rectangle-Copy-3{width : 1px;height : 40px;background-color : #4298b5;} 21 + .Rectangle-11{width : 28px;height : 4px;border-radius : 2px;background-color : #4298b5;} 22 + .In-this-section{width : 146px;height : 26px;font-family : ProximaNova-It;font-size : 22px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : 1.18;letter-spacing : normal;color : #2d2926;} 23 + .Rectangle-11-Copy{width : 28px;height : 4px;border-radius : 2px;background-color : #4298b5;} 24 + .Rectangle-11-Copy-2{width : 28px;height : 4px;border-radius : 2px;background-color : #4298b5;} 25 + .Rectangle-Copy-2{width : 700px;height : 3px;background-color : #4298b5;} 26 + .Your-team{width : 574px;height : 72px;font-family : ProximaNova;font-size : 60px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : normal;letter-spacing : normal;color : #4298b5;} 27 + .Rectangle{width : 321px;height : 411px;background-color : #ffffff;} 28 + .Oval{width : 265px;height : 267px;background-color : #d8d8d8;} 29 + .Bitmap{width : 273px;height : 273px;} 30 + .Bitmap{width : 273px;height : 273px;} 31 + .Rectangle{width : 321px;height : 411px;background-color : #ffffff;} 32 + .Oval{width : 265px;height : 267px;background-color : #d8d8d8;} 33 + .Bitmap{width : 267px;height : 267px;} 34 + .Bitmap{width : 267px;height : 267px;} 35 + .Girish-Dharmoji-Cl{width : 315px;height : 118px;font-family : ProximaNova;font-size : 18px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : 1.44;letter-spacing : normal;text-align : center;color : #2d2926;}.Girish-Dharmoji-Cl .text-style-1 { font-weight : bold;}.Girish-Dharmoji-Cl .text-style-2 { font-weight : normal;color : #4298b5;} 36 + .Rectangle{width : 321px;height : 417px;background-color : #ffffff;} 37 + .Rectangle{width : 415px;height : 413px;background-color : #ffffff;} 38 + .Rectangle{width : 321px;height : 417px;background-color : #ffffff;} 39 + .Bitmap{width : 267px;height : 333px;} 40 + .Bitmap{width : 415px;height : 270px;} 41 + .Oval{width : 265px;height : 267px;background-color : #d8d8d8;} 42 + .Bitmap{width : 267px;height : 267px;} 43 + .Bitmap{width : 267px;height : 333px;} 44 + .Bitmap{width : 415px;height : 270px;} 45 + .Hedy-Lamarr-Invent{width : 300px;height : 117px;font-family : ProximaNova;font-size : 18px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : 1.44;letter-spacing : normal;text-align : center;color : #2d2926;}.Hedy-Lamarr-Invent .text-style-1 { font-weight : bold;}.Hedy-Lamarr-Invent .text-style-2 { font-weight : normal;color : #4298b5;} 46 + .Bitmap{width : 415px;height : 270px;} 47 + .Oval{width : 265px;height : 267px;background-color : #d8d8d8;} 48 + .Bitmap{width : 415px;height : 270px;} 49 + .Johnny-Cash-Guitar{width : 321px;height : 121px;font-family : ProximaNova;font-size : 18px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : 1.44;letter-spacing : normal;text-align : center;color : #2d2926;}.Johnny-Cash-Guitar .text-style-1 { font-weight : bold;}.Johnny-Cash-Guitar .text-style-2 { font-weight : normal;color : #4298b5;} 50 + .Oval{width : 265px;height : 267px;background-color : #d8d8d8;} 51 + .Bitmap{width : 334px;height : 505px;} 52 + .Rosa-Parks-Icon-Mo{width : 322px;height : 128px;font-family : ProximaNova;font-size : 18px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : 1.44;letter-spacing : normal;text-align : center;color : #2d2926;}.Rosa-Parks-Icon-Mo .text-style-1 { font-weight : bold;}.Rosa-Parks-Icon-Mo .text-style-2 { font-weight : normal;color : #4298b5;} 53 + .Bitmap{width : 567px;height : 257px;mix-blend-mode : multiply;} 54 + .Rectangle{width : 700px;height : 290px;background-color : #2d2926;} 55 + .Your-contacts-at-Cog{width : 383px;height : 32px;font-family : ProximaNova-It;font-size : 22px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : 1.45;letter-spacing : normal;color : #edeeee;} 56 + .Ritika-Chaudhary-G{width : 383px;height : 143px;font-family : ProximaNova;font-size : 18px;font-weight : 300;font-style : normal;font-stretch : normal;line-height : 1.78;letter-spacing : normal;color : #ffffff;}.Ritika-Chaudhary-G .text-style-1 { font-weight : bold;}.Ritika-Chaudhary-G .text-style-2 { font-weight : normal;color : #71c5e8;} 57 + .Path{width : 29.7px;height : 33px;background-color : #ffffff;} 58 + .Path{width : 13.9px;height : 30px;background-color : #ffffff;} 59 + .Rectangle{width : 4.9px;height : 5px;background-color : #ffffff;} 60 + .Shape{width : 22.8px;height : 23px;background-color : #ffffff;} 61 + .Path{width : 19.8px;height : 23px;background-color : #ffffff;} 62 + .Shape{width : 22.8px;height : 23px;background-color : #ffffff;} 63 + .Path{width : 19.8px;height : 23px;background-color : #ffffff;} 64 + .Shape{width : 22.8px;height : 34px;background-color : #ffffff;} 65 + .Rectangle{width : 4.9px;height : 22px;background-color : #ffffff;} 66 + .Path{width : 29px;height : 32px;background-color : #ffffff;} 67 + .Bitmap{width : 415px;height : 270px;} 68 + .Team-page---tablet-sample{width : 700px;height : 2134px;background-color : #ffffff;} 69 + .Rectangle{width : 415px;height : 413px;background-color : #ffffff;} 70 + .Rectangle{width : 321px;height : 417px;background-color : #ffffff;} 71 + .Oval{width : 265px;height : 267px;background-color : #d8d8d8;} 72 + .Bitmap{width : 267px;height : 267px;} 73 + .Bitmap{width : 267px;height : 333px;} 74 + .Path{width : 19.8px;height : 22px;background-color : #ffffff;} 75 + </style></head><body><div><div style="" name="header" id="header" class="" ><div style="width : 100%;height : 100%;left : 0%;top : 0%;" name="Team page - tablet sample" id="9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2" class="Team-page---tablet-sample" ><div style="width : 100%;height : 100%;left : 0%;top : 0%;" name="Rectangle" id="a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9" class="Rectangle" ><div style="width : 70.7143%;height : 2.90534%;left : 4.57143%;top : 1.45267%;" name="Cobranded logos" id="7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0" class="Cobranded-logos" ><div style="width : 70.7143%;height : 2.90534%;left : 4.57143%;top : 1.45267%;" name="Path" id="e13af6b2b59883dc62c1d862ce84ee56f6db7f82cfaab885bda68bfeb8d7163c" class="Path" ></div><div style="width : 10.2857%;height : 2.90534%;left : 57%;top : 1.45267%;" name="Bitmap" id="0619b184c19b80a9ab622081c385e077be422557987b82e3ce2ad6f54621b5ab" class="Bitmap" ></div><div style="width : 2.85714%;height : 2.06186%;left : 42.4286%;top : 1.54639%;" name="Path" id="a6b2c2d3d60cf40177cf0ccdb030837654a9df54e79b9a6e95c52ac1fc06da83" class="Path" ></div><div style="width : 0.142857%;height : 2.81162%;left : 51%;top : 1.54639%;" name="Rectangle" id="5ed1b692abf18ac1539fa5135c3ba923afa8968cb96962ea4d073636382f8207" class="Rectangle" ></div><div style="width : 1%;height : 0.328023%;left : 26.2857%;top : 1.59325%;" name="Rectangle" id="0438cded3d1f8138bc79f5d02118cb5aabba0265d08814754b56fbc51ba5f3c7" class="Rectangle" ></div><div style="width : 4.85714%;height : 1.59325%;left : 11%;top : 2.015%;" name="Shape" id="7b21370bd01c62e24a29c9af2577667ad68240d1eaea8004e2ebd4806f02ffaa" class="Shape" ></div><div style="width : 4.14286%;height : 1.59325%;left : 21.5714%;top : 2.015%;" name="Path" id="2b79fd900560a17dc1b0d333ab026e0ad9f2ab5a52e7485648a2aab647af7a04" class="Path" ></div><div style="width : 4.85714%;height : 1.59325%;left : 32.5714%;top : 2.015%;" name="Shape" id="912ad40ae7b4d324f41358df95e33990760a42e14224398ad7d083bd83b4b1c4" class="Shape" ></div><div style="width : 4.14286%;height : 1.59325%;left : 38%;top : 2.015%;" name="Path" id="8225c490146e50a1541b6ba4aaba07700824f8fb1af098c1340a87224eae4e07" class="Path" ></div><div style="width : 4.85714%;height : 2.34302%;left : 16.2857%;top : 2.015%;" name="Shape" id="9b494e1a95c7ea2ec508ae060675c30e273e5dc4a79929c47ed02526587e36cc" class="Shape" ></div><div style="width : 1%;height : 1.49953%;left : 26.2857%;top : 2.10872%;" name="Rectangle" id="c0f4e7016e82eec7e69134f692aeb2dbc7d02542b7b9fd7ebf61a5338e679437" class="Rectangle" ></div></div><div style="width : 91.8571%;height : 1.78069%;left : 4.57143%;top : 5.24836%;" name="GSK R&D Strategic Ve" id="2a68049d540221b86c703c2c06fe65c215e0845e732744531c433c0d5503d508" class="GSK-RD-Strategic-Ve" ><span >GSK R&D Strategic Vendor selection </span></div><div style="width : 91.8571%;height : 1.78069%;left : 4.57143%;top : 7.49766%;" name="This line reserved f" id="0df73b4ec2334441f453d435da9ab8c3737e94e98046303554edf218c3c3f012" class="This-line-reserved-f" ><span >This line reserved for some sort of short vision statement</span></div></div><div style="width : 21.4286%;height : 2.15558%;left : 78.5714%;top : 9.84067%;" name="Rectangle Copy 7" id="d2d017cc1f2d3d77307d0b4a41ec2aa413b0e94355f6cf5f2da26714c6e29bd3" class="Rectangle-Copy-7" ><div style="width : 11.8571%;height : 1.21837%;left : 81.5714%;top : 10.4499%;" name="Your team" id="00e6919e1168f59353cb0561f921ba1b5c759d712f5c15507756379637c6c7f6" class="Your-team" ><span >Your team</span></div><div style="width : 2.28571%;height : 0.656045%;left : 94.7143%;top : 10.731%;" name="Triangle Copy 3" id="3259071322d743440d60585a1364e05839131783822e128d9dd69e9cdcdf1ed9" class="Triangle-Copy-3" ></div></div><div style="width : 0.142857%;height : 1.87441%;left : 10%;top : 9.98126%;" name="Rectangle Copy 3" id="d856bc44ed83ab10b6729b04133e801559b0244df6079dcfc3fe6232c16d928c" class="Rectangle-Copy-3" ></div><div style="width : 4%;height : 0.187441%;left : 3.14286%;top : 10.403%;" name="Rectangle 11" id="d9ff7c27b33c689325bc4f83d08a6f862067f6b2b6736e688c9a90c0245350b5" class="Rectangle-11" ></div><div style="width : 20.8571%;height : 1.21837%;left : 56.5714%;top : 10.403%;" name="In this section:" id="c2168557fb3b97ee5638a5307927c05ea12f6fc13cf205bdc056a6edab297e98" class="In-this-section" ><span >In this section:</span></div><div style="width : 4%;height : 0.187441%;left : 3.14286%;top : 10.8247%;" name="Rectangle 11 Copy" id="92a3e5e21552364a7e271262a891177c128ab35768fac450319dfaa80268e201" class="Rectangle-11-Copy" ></div><div style="width : 4%;height : 0.187441%;left : 3.14286%;top : 11.2465%;" name="Rectangle 11 Copy 2" id="2f9f545b1430e86c6e8657666327aa6198e35d57815ea53ce44903db7be88a3a" class="Rectangle-11-Copy-2" ></div><div style="width : 100%;height : 0.140581%;left : 0%;top : 11.9963%;" name="Rectangle Copy 2" id="06ddf303a3828977383d329c5e1878e5760e9ab4b3a36593c90a1337a0ef9885" class="Rectangle-Copy-2" ></div><div style="width : 82%;height : 3.37395%;left : 9%;top : 13.5895%;" name="Your team" id="38bddc411c294390f2b81e62da920dfb81aafb55ff46b45db55776cfe8cec023" class="Your-team" ><span >Your team</span></div><div style="width : 45.8571%;height : 19.2596%;left : 3%;top : 18.4161%;" name="Rectangle" id="22c411b18362ab7509ae4a47dc74f947629e5b1c8883005be203130d9b9a7fc1" class="Rectangle" ><div style="width : 37.8571%;height : 12.5117%;left : 7.14286%;top : 18.4161%;" name="Oval" id="7bdeb65f9499c02af605ed623411811e00b6eece1c0c502287878c8f57a48b16" class="Oval" ><div style="width : 37.8571%;height : 12.5117%;left : 7.14286%;top : 18.4161%;" name="Bitmap" id="75e28ea5799e2bed3fb807f797ff93d468fb11e3d148bcabced833971a55101f" class="Bitmap" ></div></div><div style="width : 39%;height : 12.7929%;left : 6.57143%;top : 18.4161%;" name="Bitmap" id="75e28ea5799e2bed3fb807f797ff93d468fb11e3d148bcabced833971a55101f" class="Bitmap" ></div></div><div style="width : 45.8571%;height : 19.2596%;left : 51%;top : 18.4161%;" name="Rectangle" id="e1a8d6bf014d8433dc79dd0841bf453cee43f718c4fe3fcff0ba2c1b4242b834" class="Rectangle" ><div style="width : 37.8571%;height : 12.5117%;left : 55.1429%;top : 18.4161%;" name="Oval" id="ed47383d4122ac6009c755ec9712fe6b01463ed42e48acfa4967f954558002a2" class="Oval" ><div style="width : 37.8571%;height : 12.5117%;left : 55.1429%;top : 18.4161%;" name="Bitmap" id="4fe9b54be95a0553c347d3e18703847963d0abe70f24b0a7908443995d23bb61" class="Bitmap" ></div></div><div style="width : 38.1429%;height : 12.5117%;left : 55%;top : 18.4161%;" name="Bitmap" id="4fe9b54be95a0553c347d3e18703847963d0abe70f24b0a7908443995d23bb61" class="Bitmap" ></div><div style="width : 45%;height : 5.52952%;left : 51.5714%;top : 31.6307%;" name="Girish Dharmoji | Cl" id="2b49e6f525e54be085b83dbf122df098e1d212bee0d09dcc49cb0873df3cfc7a" class="Girish-Dharmoji-Cl" ><span >Girish Dharmoji | Client Partner Dir. 76 + Cognizant Life Sciences 77 + +44 (0)7730592429 78 + girish.dharmoji@cognizant.com</span></div></div><div style="width : 45.8571%;height : 19.5408%;left : 51%;top : 38.6129%;" name="Rectangle" id="18d3ca1453ef6d2922431880e5a16f03676822773056e60d2003eacc01884085" class="Rectangle" ></div><div style="width : 47.7143%;height : 23.6645%;left : 0%;top : 57.6382%;" name="Rectangle" id="5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad" class="Rectangle" ><div style="width : 38.1429%;height : 15.6045%;left : 54.4286%;top : 38.7535%;" name="Rectangle" id="18d3ca1453ef6d2922431880e5a16f03676822773056e60d2003eacc01884085" class="Rectangle" ><div style="width : 38.1429%;height : 15.6045%;left : 54.4286%;top : 38.7535%;" name="Bitmap" id="0935cbb740a6beade3af779b76a5d723dc28d745c2539a1c361016afd6d85f8f" class="Bitmap" ><div style="width : 38.1429%;height : 15.6045%;left : 54.4286%;top : 38.7535%;" name="Bitmap" id="09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982" class="Bitmap" ></div></div><div style="width : 37.8571%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Oval" id="2ae0a77c58c33852ad64df56b47b83bc8a4a90ea525d3e3755bdf9b4fcf26c64" class="Oval" ><div style="width : 37.8571%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Bitmap" id="f4377588a2b0327b4eab9016085ba1b19b42e5bfca2c4bd7ad8c6153eae78ac3" class="Bitmap" ><div style="width : 37.8571%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Bitmap" id="0935cbb740a6beade3af779b76a5d723dc28d745c2539a1c361016afd6d85f8f" class="Bitmap" ><div style="width : 37.8571%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Bitmap" id="09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982" class="Bitmap" ></div></div></div></div><div style="width : 42.8571%;height : 5.48266%;left : 52.5714%;top : 52.1556%;" name="Hedy Lamarr | Invent" id="dd5ac6ce28df5dce6a904c53605a87d2acb96e58b8682012d259c47724cbc154" class="Hedy-Lamarr-Invent" ><span >Hedy Lamarr | Inventor 79 + Frequency Hopping 80 + +44 (0)7012 876 543 81 + hedy.lamarr@bluetooth.com</span></div></div><div style="width : 59.2857%;height : 19.3533%;left : 0%;top : 38.7535%;" name="Bitmap" id="09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982" class="Bitmap" ></div><div style="width : 37.8571%;height : 12.5117%;left : 6.71429%;top : 38.941%;" name="Oval" id="de4aec4295c22081bbce5356f282eeff93c1726bf275346f57718277548ab836" class="Oval" ><div style="width : 37.8571%;height : 12.5117%;left : 6.71429%;top : 38.941%;" name="Bitmap" id="09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982" class="Bitmap" ></div></div><div style="width : 45.8571%;height : 5.6701%;left : 3.14286%;top : 52.1556%;" name="Johnny Cash | Guitar" id="de8a8ca6f71c16b911bfb7e596fbf8a6cbf998d2930cd229f3f501f3389bcb38" class="Johnny-Cash-Guitar" ><span >Johnny Cash | Guitar and Vocals 82 + Musical Legend 83 + +44 (0)7012 345 678 84 + johnny.cash@country.com</span></div></div><div style="width : 37.8571%;height : 12.5117%;left : 6.71429%;top : 59.4658%;" name="Oval" id="8d6bce5924fd49d0d36d9746eaec3e36504810658df830263250281310e9b1b5" class="Oval" ><div style="width : 37.8571%;height : 12.5117%;left : 6.71429%;top : 59.4658%;" name="Bitmap" id="2e308bc73b3e07f11c3998314a62bb0c9b915a87a08c7ff48768237a0e39a430" class="Bitmap" ></div></div><div style="width : 46%;height : 5.99813%;left : 3%;top : 72.6804%;" name="Rosa Parks | Icon Mo" id="c999587813a28ac0090a5f6d2f4644dd591cf4f1ef63b57cb117f4713efd9f9d" class="Rosa-Parks-Icon-Mo" ><span >Rosa Parks | Icon 85 + Montgomery Alabama 86 + +44 (0)7787835663 87 + rosa.parks@history.com</span></div><div style="width : 81%;height : 12.0431%;left : 19%;top : 78.6785%;" name="Bitmap" id="4b9e3bc9c58251edf377a29745eec1430f0efae7708aa3960e0c86c1c0938c39" class="Bitmap" ></div><div style="width : 100%;height : 13.5895%;left : 0%;top : 86.4105%;" name="Rectangle" id="352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3" class="Rectangle" ><div style="width : 54.7143%;height : 1.49953%;left : 4.42857%;top : 87.4414%;" name="Your contacts at Cog" id="c2f21e09881c9cda37b4594a735593963e15542d1c02c8d586a2ccf61af94df0" class="Your-contacts-at-Cog" ><span >Your contacts at Cognizant:</span></div><div style="width : 54.7143%;height : 6.70103%;left : 4.42857%;top : 89.5033%;" name="Ritika Chaudhary | G" id="ff39378303a417af4e3b18e7a3a511753744f0a34e541882b41fc3d9d3fb89fa" class="Ritika-Chaudhary-G" ><span >Ritika Chaudhary | Global Client Partner 88 + Cognizant Life Sciences 89 + +44 (0)07471 325 032 90 + ritika.chaudhary@cognizant.com</span></div><div style="width : 4.24176%;height : 1.54639%;left : 69.2857%;top : 97.0478%;" name="Path" id="b6cf2ad29dc5c65254b2e5527a6235bd8b1bc9d4acfbf93721dc6492860c647e" class="Path" ></div><div style="width : 1.97949%;height : 1.40581%;left : 94.8777%;top : 97.0947%;" name="Path" id="ec1100d506a982c56324ef91b027c9f0113d59a55b82b95dead5bac1e1e22233" class="Path" ></div><div style="width : 0.70696%;height : 0.234302%;left : 83.9905%;top : 97.1415%;" name="Rectangle" id="5698408c3b9dd4c7e06042abcde4d243f4935d18fbec9e338ffe79175045732c" class="Rectangle" ></div><div style="width : 3.25201%;height : 1.07779%;left : 73.6689%;top : 97.4227%;" name="Shape" id="735752b13519bb1775f994bbccca85bef7414951665ca322cc5885c841c6ce09" class="Shape" ></div><div style="width : 2.82784%;height : 1.07779%;left : 80.7385%;top : 97.4227%;" name="Path" id="6a6740ad87abe4e19c80bacddf593a4e13666f011a97ede74eac802d51b2d0e8" class="Path" ></div><div style="width : 3.25201%;height : 1.07779%;left : 88.2322%;top : 97.4227%;" name="Shape" id="e6877b9b7e2d26dedc0cc44aa8c23331fd665e341fec3154044fe0ac67c231e4" class="Shape" ></div><div style="width : 2.82784%;height : 1.07779%;left : 91.9084%;top : 97.4227%;" name="Path" id="e692f9617a5b6087c40acc100774645277d94fb65151e67f8a139bfb48bf3877" class="Path" ></div><div style="width : 3.25201%;height : 1.59325%;left : 77.2037%;top : 97.4227%;" name="Shape" id="8da1904e620a933092b58602613f561f7cce7ff453c5e55dda9f706b6582490f" class="Shape" ></div><div style="width : 0.70696%;height : 1.03093%;left : 83.9905%;top : 97.4695%;" name="Rectangle" id="dc7962e68ffe9028a8117e184d5814cb5d166dfc3d030647facc3b9fde350c98" class="Rectangle" ></div></div></div><div style="width : 4.14286%;height : 1.49953%;left : 28.1429%;top : 2.10872%;" name="Path" id="33c15be77280811096a4cf1b0b7886855e4da044869ca7835bc8daaa084448a8" class="Path" ></div><div style="width : 38.1429%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Bitmap" id="09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982" class="Bitmap" ><div style="width : 38.1429%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Team page - tablet sample" id="9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2" class="Team-page---tablet-sample" ><div style="width : 38.1429%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Rectangle" id="5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad" class="Rectangle" ><div style="width : 38.1429%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Rectangle" id="18d3ca1453ef6d2922431880e5a16f03676822773056e60d2003eacc01884085" class="Rectangle" ><div style="width : 38.1429%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Oval" id="2ae0a77c58c33852ad64df56b47b83bc8a4a90ea525d3e3755bdf9b4fcf26c64" class="Oval" ><div style="width : 38.1429%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Bitmap" id="f4377588a2b0327b4eab9016085ba1b19b42e5bfca2c4bd7ad8c6153eae78ac3" class="Bitmap" ><div style="width : 38.1429%;height : 12.5117%;left : 54.4286%;top : 38.941%;" name="Bitmap" id="0935cbb740a6beade3af779b76a5d723dc28d745c2539a1c361016afd6d85f8f" class="Bitmap" ></div></div></div></div></div></div></div><div style="width : 2.82784%;height : 1.03093%;left : 85.263%;top : 97.4695%;" name="Path" id="10f6b3b7a52b7f1e6f406f1476ef1027eecb250217725bba2b74decbdeb511c0" class="Path" ></div></div></div></body></html>
+8969
Design2Html/test.json
··· 1 + { 2 + "_snapshot": { 3 + "_src": "https://cdn.zeplin.io/5a20f00d7bb87f6e7820f270/screens/CCB10B50-1307-44F5-9595-FCC7B1664749.png", 4 + "_style": [ 5 + { 6 + "_lhs": "width", 7 + "_rhs": "700px" 8 + }, 9 + { 10 + "_lhs": "height", 11 + "_rhs": "2134px" 12 + } 13 + ] 14 + }, 15 + "_nodes": [ 16 + [ 17 + { 18 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 19 + "_title": "Team page - tablet sample", 20 + "_coords": { 21 + "_x": 0, 22 + "_y": 0, 23 + "_width": 700, 24 + "_height": 2134 25 + }, 26 + "_content": null, 27 + "_css": { 28 + ".Team-page---tablet-sample": [ 29 + { 30 + "_lhs": "width", 31 + "_rhs": "700px" 32 + }, 33 + { 34 + "_lhs": "height", 35 + "_rhs": "2134px" 36 + }, 37 + { 38 + "_lhs": "background-color", 39 + "_rhs": "#ffffff" 40 + } 41 + ] 42 + }, 43 + "_style": [ 44 + { 45 + "_lhs": "width", 46 + "_rhs": "100%" 47 + }, 48 + { 49 + "_lhs": "height", 50 + "_rhs": "100%" 51 + }, 52 + { 53 + "_lhs": "left", 54 + "_rhs": "0%" 55 + }, 56 + { 57 + "_lhs": "top", 58 + "_rhs": "0%" 59 + } 60 + ] 61 + }, 62 + { 63 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 64 + "_title": "Rectangle", 65 + "_coords": { 66 + "_x": 0, 67 + "_y": 0, 68 + "_width": 700, 69 + "_height": 210 70 + }, 71 + "_content": null, 72 + "_css": { 73 + ".Rectangle": [ 74 + { 75 + "_lhs": "width", 76 + "_rhs": "700px" 77 + }, 78 + { 79 + "_lhs": "height", 80 + "_rhs": "210px" 81 + }, 82 + { 83 + "_lhs": "background-color", 84 + "_rhs": "#2d2926" 85 + } 86 + ] 87 + }, 88 + "_style": [ 89 + { 90 + "_lhs": "width", 91 + "_rhs": "100%" 92 + }, 93 + { 94 + "_lhs": "height", 95 + "_rhs": "100%" 96 + }, 97 + { 98 + "_lhs": "left", 99 + "_rhs": "0%" 100 + }, 101 + { 102 + "_lhs": "top", 103 + "_rhs": "0%" 104 + } 105 + ] 106 + } 107 + ], 108 + [ 109 + { 110 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 111 + "_title": "Team page - tablet sample", 112 + "_coords": { 113 + "_x": 0, 114 + "_y": 0, 115 + "_width": 700, 116 + "_height": 2134 117 + }, 118 + "_content": null, 119 + "_css": { 120 + ".Team-page---tablet-sample": [ 121 + { 122 + "_lhs": "width", 123 + "_rhs": "700px" 124 + }, 125 + { 126 + "_lhs": "height", 127 + "_rhs": "2134px" 128 + }, 129 + { 130 + "_lhs": "background-color", 131 + "_rhs": "#ffffff" 132 + } 133 + ] 134 + }, 135 + "_style": [ 136 + { 137 + "_lhs": "width", 138 + "_rhs": "100%" 139 + }, 140 + { 141 + "_lhs": "height", 142 + "_rhs": "0.140581%" 143 + }, 144 + { 145 + "_lhs": "left", 146 + "_rhs": "0%" 147 + }, 148 + { 149 + "_lhs": "top", 150 + "_rhs": "11.9963%" 151 + } 152 + ] 153 + }, 154 + { 155 + "_did": "06ddf303a3828977383d329c5e1878e5760e9ab4b3a36593c90a1337a0ef9885", 156 + "_title": "Rectangle Copy 2", 157 + "_coords": { 158 + "_x": 0, 159 + "_y": 256, 160 + "_width": 700, 161 + "_height": 3 162 + }, 163 + "_content": null, 164 + "_css": { 165 + ".Rectangle-Copy-2": [ 166 + { 167 + "_lhs": "width", 168 + "_rhs": "700px" 169 + }, 170 + { 171 + "_lhs": "height", 172 + "_rhs": "3px" 173 + }, 174 + { 175 + "_lhs": "background-color", 176 + "_rhs": "#4298b5" 177 + } 178 + ] 179 + }, 180 + "_style": [ 181 + { 182 + "_lhs": "width", 183 + "_rhs": "100%" 184 + }, 185 + { 186 + "_lhs": "height", 187 + "_rhs": "0.140581%" 188 + }, 189 + { 190 + "_lhs": "left", 191 + "_rhs": "0%" 192 + }, 193 + { 194 + "_lhs": "top", 195 + "_rhs": "11.9963%" 196 + } 197 + ] 198 + } 199 + ], 200 + [ 201 + { 202 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 203 + "_title": "Team page - tablet sample", 204 + "_coords": { 205 + "_x": 0, 206 + "_y": 0, 207 + "_width": 700, 208 + "_height": 2134 209 + }, 210 + "_content": null, 211 + "_css": { 212 + ".Team-page---tablet-sample": [ 213 + { 214 + "_lhs": "width", 215 + "_rhs": "700px" 216 + }, 217 + { 218 + "_lhs": "height", 219 + "_rhs": "2134px" 220 + }, 221 + { 222 + "_lhs": "background-color", 223 + "_rhs": "#ffffff" 224 + } 225 + ] 226 + }, 227 + "_style": [ 228 + { 229 + "_lhs": "width", 230 + "_rhs": "0.142857%" 231 + }, 232 + { 233 + "_lhs": "height", 234 + "_rhs": "1.87441%" 235 + }, 236 + { 237 + "_lhs": "left", 238 + "_rhs": "10%" 239 + }, 240 + { 241 + "_lhs": "top", 242 + "_rhs": "9.98126%" 243 + } 244 + ] 245 + }, 246 + { 247 + "_did": "d856bc44ed83ab10b6729b04133e801559b0244df6079dcfc3fe6232c16d928c", 248 + "_title": "Rectangle Copy 3", 249 + "_coords": { 250 + "_x": 70, 251 + "_y": 213, 252 + "_width": 1, 253 + "_height": 40 254 + }, 255 + "_content": null, 256 + "_css": { 257 + ".Rectangle-Copy-3": [ 258 + { 259 + "_lhs": "width", 260 + "_rhs": "1px" 261 + }, 262 + { 263 + "_lhs": "height", 264 + "_rhs": "40px" 265 + }, 266 + { 267 + "_lhs": "background-color", 268 + "_rhs": "#4298b5" 269 + } 270 + ] 271 + }, 272 + "_style": [ 273 + { 274 + "_lhs": "width", 275 + "_rhs": "0.142857%" 276 + }, 277 + { 278 + "_lhs": "height", 279 + "_rhs": "1.87441%" 280 + }, 281 + { 282 + "_lhs": "left", 283 + "_rhs": "10%" 284 + }, 285 + { 286 + "_lhs": "top", 287 + "_rhs": "9.98126%" 288 + } 289 + ] 290 + } 291 + ], 292 + [ 293 + { 294 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 295 + "_title": "Team page - tablet sample", 296 + "_coords": { 297 + "_x": 0, 298 + "_y": 0, 299 + "_width": 700, 300 + "_height": 2134 301 + }, 302 + "_content": null, 303 + "_css": { 304 + ".Team-page---tablet-sample": [ 305 + { 306 + "_lhs": "width", 307 + "_rhs": "700px" 308 + }, 309 + { 310 + "_lhs": "height", 311 + "_rhs": "2134px" 312 + }, 313 + { 314 + "_lhs": "background-color", 315 + "_rhs": "#ffffff" 316 + } 317 + ] 318 + }, 319 + "_style": [ 320 + { 321 + "_lhs": "width", 322 + "_rhs": "82%" 323 + }, 324 + { 325 + "_lhs": "height", 326 + "_rhs": "3.37395%" 327 + }, 328 + { 329 + "_lhs": "left", 330 + "_rhs": "9%" 331 + }, 332 + { 333 + "_lhs": "top", 334 + "_rhs": "13.5895%" 335 + } 336 + ] 337 + }, 338 + { 339 + "_did": "38bddc411c294390f2b81e62da920dfb81aafb55ff46b45db55776cfe8cec023", 340 + "_title": "Your team", 341 + "_coords": { 342 + "_x": 63, 343 + "_y": 290, 344 + "_width": 574, 345 + "_height": 72 346 + }, 347 + "_content": "Your team", 348 + "_css": { 349 + ".Your-team": [ 350 + { 351 + "_lhs": "width", 352 + "_rhs": "574px" 353 + }, 354 + { 355 + "_lhs": "height", 356 + "_rhs": "72px" 357 + }, 358 + { 359 + "_lhs": "font-family", 360 + "_rhs": "ProximaNova" 361 + }, 362 + { 363 + "_lhs": "font-size", 364 + "_rhs": "60px" 365 + }, 366 + { 367 + "_lhs": "font-weight", 368 + "_rhs": "300" 369 + }, 370 + { 371 + "_lhs": "font-style", 372 + "_rhs": "normal" 373 + }, 374 + { 375 + "_lhs": "font-stretch", 376 + "_rhs": "normal" 377 + }, 378 + { 379 + "_lhs": "line-height", 380 + "_rhs": "normal" 381 + }, 382 + { 383 + "_lhs": "letter-spacing", 384 + "_rhs": "normal" 385 + }, 386 + { 387 + "_lhs": "color", 388 + "_rhs": "#4298b5" 389 + } 390 + ] 391 + }, 392 + "_style": [ 393 + { 394 + "_lhs": "width", 395 + "_rhs": "82%" 396 + }, 397 + { 398 + "_lhs": "height", 399 + "_rhs": "3.37395%" 400 + }, 401 + { 402 + "_lhs": "left", 403 + "_rhs": "9%" 404 + }, 405 + { 406 + "_lhs": "top", 407 + "_rhs": "13.5895%" 408 + } 409 + ] 410 + } 411 + ], 412 + [ 413 + { 414 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 415 + "_title": "Team page - tablet sample", 416 + "_coords": { 417 + "_x": 0, 418 + "_y": 0, 419 + "_width": 700, 420 + "_height": 2134 421 + }, 422 + "_content": null, 423 + "_css": { 424 + ".Team-page---tablet-sample": [ 425 + { 426 + "_lhs": "width", 427 + "_rhs": "700px" 428 + }, 429 + { 430 + "_lhs": "height", 431 + "_rhs": "2134px" 432 + }, 433 + { 434 + "_lhs": "background-color", 435 + "_rhs": "#ffffff" 436 + } 437 + ] 438 + }, 439 + "_style": [ 440 + { 441 + "_lhs": "width", 442 + "_rhs": "81%" 443 + }, 444 + { 445 + "_lhs": "height", 446 + "_rhs": "12.0431%" 447 + }, 448 + { 449 + "_lhs": "left", 450 + "_rhs": "19%" 451 + }, 452 + { 453 + "_lhs": "top", 454 + "_rhs": "78.6785%" 455 + } 456 + ] 457 + }, 458 + { 459 + "_did": "4b9e3bc9c58251edf377a29745eec1430f0efae7708aa3960e0c86c1c0938c39", 460 + "_title": "Bitmap", 461 + "_coords": { 462 + "_x": 133, 463 + "_y": 1679, 464 + "_width": 567, 465 + "_height": 257 466 + }, 467 + "_content": null, 468 + "_css": { 469 + ".Bitmap": [ 470 + { 471 + "_lhs": "width", 472 + "_rhs": "567px" 473 + }, 474 + { 475 + "_lhs": "height", 476 + "_rhs": "257px" 477 + }, 478 + { 479 + "_lhs": "mix-blend-mode", 480 + "_rhs": "multiply" 481 + } 482 + ] 483 + }, 484 + "_style": [ 485 + { 486 + "_lhs": "width", 487 + "_rhs": "81%" 488 + }, 489 + { 490 + "_lhs": "height", 491 + "_rhs": "12.0431%" 492 + }, 493 + { 494 + "_lhs": "left", 495 + "_rhs": "19%" 496 + }, 497 + { 498 + "_lhs": "top", 499 + "_rhs": "78.6785%" 500 + } 501 + ] 502 + } 503 + ], 504 + [ 505 + { 506 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 507 + "_title": "Team page - tablet sample", 508 + "_coords": { 509 + "_x": 0, 510 + "_y": 0, 511 + "_width": 700, 512 + "_height": 2134 513 + }, 514 + "_content": null, 515 + "_css": { 516 + ".Team-page---tablet-sample": [ 517 + { 518 + "_lhs": "width", 519 + "_rhs": "700px" 520 + }, 521 + { 522 + "_lhs": "height", 523 + "_rhs": "2134px" 524 + }, 525 + { 526 + "_lhs": "background-color", 527 + "_rhs": "#ffffff" 528 + } 529 + ] 530 + }, 531 + "_style": [ 532 + { 533 + "_lhs": "width", 534 + "_rhs": "4%" 535 + }, 536 + { 537 + "_lhs": "height", 538 + "_rhs": "0.187441%" 539 + }, 540 + { 541 + "_lhs": "left", 542 + "_rhs": "3.14286%" 543 + }, 544 + { 545 + "_lhs": "top", 546 + "_rhs": "10.403%" 547 + } 548 + ] 549 + }, 550 + { 551 + "_did": "d9ff7c27b33c689325bc4f83d08a6f862067f6b2b6736e688c9a90c0245350b5", 552 + "_title": "Rectangle 11", 553 + "_coords": { 554 + "_x": 22, 555 + "_y": 222, 556 + "_width": 28, 557 + "_height": 4 558 + }, 559 + "_content": null, 560 + "_css": { 561 + ".Rectangle-11": [ 562 + { 563 + "_lhs": "width", 564 + "_rhs": "28px" 565 + }, 566 + { 567 + "_lhs": "height", 568 + "_rhs": "4px" 569 + }, 570 + { 571 + "_lhs": "border-radius", 572 + "_rhs": "2px" 573 + }, 574 + { 575 + "_lhs": "background-color", 576 + "_rhs": "#4298b5" 577 + } 578 + ] 579 + }, 580 + "_style": [ 581 + { 582 + "_lhs": "width", 583 + "_rhs": "4%" 584 + }, 585 + { 586 + "_lhs": "height", 587 + "_rhs": "0.187441%" 588 + }, 589 + { 590 + "_lhs": "left", 591 + "_rhs": "3.14286%" 592 + }, 593 + { 594 + "_lhs": "top", 595 + "_rhs": "10.403%" 596 + } 597 + ] 598 + } 599 + ], 600 + [ 601 + { 602 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 603 + "_title": "Team page - tablet sample", 604 + "_coords": { 605 + "_x": 0, 606 + "_y": 0, 607 + "_width": 700, 608 + "_height": 2134 609 + }, 610 + "_content": null, 611 + "_css": { 612 + ".Team-page---tablet-sample": [ 613 + { 614 + "_lhs": "width", 615 + "_rhs": "700px" 616 + }, 617 + { 618 + "_lhs": "height", 619 + "_rhs": "2134px" 620 + }, 621 + { 622 + "_lhs": "background-color", 623 + "_rhs": "#ffffff" 624 + } 625 + ] 626 + }, 627 + "_style": [ 628 + { 629 + "_lhs": "width", 630 + "_rhs": "4%" 631 + }, 632 + { 633 + "_lhs": "height", 634 + "_rhs": "0.187441%" 635 + }, 636 + { 637 + "_lhs": "left", 638 + "_rhs": "3.14286%" 639 + }, 640 + { 641 + "_lhs": "top", 642 + "_rhs": "10.8247%" 643 + } 644 + ] 645 + }, 646 + { 647 + "_did": "92a3e5e21552364a7e271262a891177c128ab35768fac450319dfaa80268e201", 648 + "_title": "Rectangle 11 Copy", 649 + "_coords": { 650 + "_x": 22, 651 + "_y": 231, 652 + "_width": 28, 653 + "_height": 4 654 + }, 655 + "_content": null, 656 + "_css": { 657 + ".Rectangle-11-Copy": [ 658 + { 659 + "_lhs": "width", 660 + "_rhs": "28px" 661 + }, 662 + { 663 + "_lhs": "height", 664 + "_rhs": "4px" 665 + }, 666 + { 667 + "_lhs": "border-radius", 668 + "_rhs": "2px" 669 + }, 670 + { 671 + "_lhs": "background-color", 672 + "_rhs": "#4298b5" 673 + } 674 + ] 675 + }, 676 + "_style": [ 677 + { 678 + "_lhs": "width", 679 + "_rhs": "4%" 680 + }, 681 + { 682 + "_lhs": "height", 683 + "_rhs": "0.187441%" 684 + }, 685 + { 686 + "_lhs": "left", 687 + "_rhs": "3.14286%" 688 + }, 689 + { 690 + "_lhs": "top", 691 + "_rhs": "10.8247%" 692 + } 693 + ] 694 + } 695 + ], 696 + [ 697 + { 698 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 699 + "_title": "Team page - tablet sample", 700 + "_coords": { 701 + "_x": 0, 702 + "_y": 0, 703 + "_width": 700, 704 + "_height": 2134 705 + }, 706 + "_content": null, 707 + "_css": { 708 + ".Team-page---tablet-sample": [ 709 + { 710 + "_lhs": "width", 711 + "_rhs": "700px" 712 + }, 713 + { 714 + "_lhs": "height", 715 + "_rhs": "2134px" 716 + }, 717 + { 718 + "_lhs": "background-color", 719 + "_rhs": "#ffffff" 720 + } 721 + ] 722 + }, 723 + "_style": [ 724 + { 725 + "_lhs": "width", 726 + "_rhs": "4%" 727 + }, 728 + { 729 + "_lhs": "height", 730 + "_rhs": "0.187441%" 731 + }, 732 + { 733 + "_lhs": "left", 734 + "_rhs": "3.14286%" 735 + }, 736 + { 737 + "_lhs": "top", 738 + "_rhs": "11.2465%" 739 + } 740 + ] 741 + }, 742 + { 743 + "_did": "2f9f545b1430e86c6e8657666327aa6198e35d57815ea53ce44903db7be88a3a", 744 + "_title": "Rectangle 11 Copy 2", 745 + "_coords": { 746 + "_x": 22, 747 + "_y": 240, 748 + "_width": 28, 749 + "_height": 4 750 + }, 751 + "_content": null, 752 + "_css": { 753 + ".Rectangle-11-Copy-2": [ 754 + { 755 + "_lhs": "width", 756 + "_rhs": "28px" 757 + }, 758 + { 759 + "_lhs": "height", 760 + "_rhs": "4px" 761 + }, 762 + { 763 + "_lhs": "border-radius", 764 + "_rhs": "2px" 765 + }, 766 + { 767 + "_lhs": "background-color", 768 + "_rhs": "#4298b5" 769 + } 770 + ] 771 + }, 772 + "_style": [ 773 + { 774 + "_lhs": "width", 775 + "_rhs": "4%" 776 + }, 777 + { 778 + "_lhs": "height", 779 + "_rhs": "0.187441%" 780 + }, 781 + { 782 + "_lhs": "left", 783 + "_rhs": "3.14286%" 784 + }, 785 + { 786 + "_lhs": "top", 787 + "_rhs": "11.2465%" 788 + } 789 + ] 790 + } 791 + ], 792 + [ 793 + { 794 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 795 + "_title": "Team page - tablet sample", 796 + "_coords": { 797 + "_x": 0, 798 + "_y": 0, 799 + "_width": 700, 800 + "_height": 2134 801 + }, 802 + "_content": null, 803 + "_css": { 804 + ".Team-page---tablet-sample": [ 805 + { 806 + "_lhs": "width", 807 + "_rhs": "700px" 808 + }, 809 + { 810 + "_lhs": "height", 811 + "_rhs": "2134px" 812 + }, 813 + { 814 + "_lhs": "background-color", 815 + "_rhs": "#ffffff" 816 + } 817 + ] 818 + }, 819 + "_style": [ 820 + { 821 + "_lhs": "width", 822 + "_rhs": "20.8571%" 823 + }, 824 + { 825 + "_lhs": "height", 826 + "_rhs": "1.21837%" 827 + }, 828 + { 829 + "_lhs": "left", 830 + "_rhs": "56.5714%" 831 + }, 832 + { 833 + "_lhs": "top", 834 + "_rhs": "10.403%" 835 + } 836 + ] 837 + }, 838 + { 839 + "_did": "c2168557fb3b97ee5638a5307927c05ea12f6fc13cf205bdc056a6edab297e98", 840 + "_title": "In this section:", 841 + "_coords": { 842 + "_x": 396, 843 + "_y": 222, 844 + "_width": 146, 845 + "_height": 26 846 + }, 847 + "_content": "In this section:", 848 + "_css": { 849 + ".In-this-section": [ 850 + { 851 + "_lhs": "width", 852 + "_rhs": "146px" 853 + }, 854 + { 855 + "_lhs": "height", 856 + "_rhs": "26px" 857 + }, 858 + { 859 + "_lhs": "font-family", 860 + "_rhs": "ProximaNova-It" 861 + }, 862 + { 863 + "_lhs": "font-size", 864 + "_rhs": "22px" 865 + }, 866 + { 867 + "_lhs": "font-weight", 868 + "_rhs": "300" 869 + }, 870 + { 871 + "_lhs": "font-style", 872 + "_rhs": "normal" 873 + }, 874 + { 875 + "_lhs": "font-stretch", 876 + "_rhs": "normal" 877 + }, 878 + { 879 + "_lhs": "line-height", 880 + "_rhs": "1.18" 881 + }, 882 + { 883 + "_lhs": "letter-spacing", 884 + "_rhs": "normal" 885 + }, 886 + { 887 + "_lhs": "color", 888 + "_rhs": "#2d2926" 889 + } 890 + ] 891 + }, 892 + "_style": [ 893 + { 894 + "_lhs": "width", 895 + "_rhs": "20.8571%" 896 + }, 897 + { 898 + "_lhs": "height", 899 + "_rhs": "1.21837%" 900 + }, 901 + { 902 + "_lhs": "left", 903 + "_rhs": "56.5714%" 904 + }, 905 + { 906 + "_lhs": "top", 907 + "_rhs": "10.403%" 908 + } 909 + ] 910 + } 911 + ], 912 + [ 913 + { 914 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 915 + "_title": "Team page - tablet sample", 916 + "_coords": { 917 + "_x": 0, 918 + "_y": 0, 919 + "_width": 700, 920 + "_height": 2134 921 + }, 922 + "_content": null, 923 + "_css": { 924 + ".Team-page---tablet-sample": [ 925 + { 926 + "_lhs": "width", 927 + "_rhs": "700px" 928 + }, 929 + { 930 + "_lhs": "height", 931 + "_rhs": "2134px" 932 + }, 933 + { 934 + "_lhs": "background-color", 935 + "_rhs": "#ffffff" 936 + } 937 + ] 938 + }, 939 + "_style": [ 940 + { 941 + "_lhs": "width", 942 + "_rhs": "21.4286%" 943 + }, 944 + { 945 + "_lhs": "height", 946 + "_rhs": "2.15558%" 947 + }, 948 + { 949 + "_lhs": "left", 950 + "_rhs": "78.5714%" 951 + }, 952 + { 953 + "_lhs": "top", 954 + "_rhs": "9.84067%" 955 + } 956 + ] 957 + }, 958 + { 959 + "_did": "d2d017cc1f2d3d77307d0b4a41ec2aa413b0e94355f6cf5f2da26714c6e29bd3", 960 + "_title": "Rectangle Copy 7", 961 + "_coords": { 962 + "_x": 550, 963 + "_y": 210, 964 + "_width": 150, 965 + "_height": 46 966 + }, 967 + "_content": null, 968 + "_css": { 969 + ".Rectangle-Copy-7": [ 970 + { 971 + "_lhs": "width", 972 + "_rhs": "150px" 973 + }, 974 + { 975 + "_lhs": "height", 976 + "_rhs": "46px" 977 + }, 978 + { 979 + "_lhs": "background-color", 980 + "_rhs": "#edeeee" 981 + } 982 + ] 983 + }, 984 + "_style": [ 985 + { 986 + "_lhs": "width", 987 + "_rhs": "21.4286%" 988 + }, 989 + { 990 + "_lhs": "height", 991 + "_rhs": "2.15558%" 992 + }, 993 + { 994 + "_lhs": "left", 995 + "_rhs": "78.5714%" 996 + }, 997 + { 998 + "_lhs": "top", 999 + "_rhs": "9.84067%" 1000 + } 1001 + ] 1002 + } 1003 + ], 1004 + [ 1005 + { 1006 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 1007 + "_title": "Team page - tablet sample", 1008 + "_coords": { 1009 + "_x": 0, 1010 + "_y": 0, 1011 + "_width": 700, 1012 + "_height": 2134 1013 + }, 1014 + "_content": null, 1015 + "_css": { 1016 + ".Team-page---tablet-sample": [ 1017 + { 1018 + "_lhs": "width", 1019 + "_rhs": "700px" 1020 + }, 1021 + { 1022 + "_lhs": "height", 1023 + "_rhs": "2134px" 1024 + }, 1025 + { 1026 + "_lhs": "background-color", 1027 + "_rhs": "#ffffff" 1028 + } 1029 + ] 1030 + }, 1031 + "_style": [ 1032 + { 1033 + "_lhs": "width", 1034 + "_rhs": "11.8571%" 1035 + }, 1036 + { 1037 + "_lhs": "height", 1038 + "_rhs": "1.21837%" 1039 + }, 1040 + { 1041 + "_lhs": "left", 1042 + "_rhs": "81.5714%" 1043 + }, 1044 + { 1045 + "_lhs": "top", 1046 + "_rhs": "10.4499%" 1047 + } 1048 + ] 1049 + }, 1050 + { 1051 + "_did": "d2d017cc1f2d3d77307d0b4a41ec2aa413b0e94355f6cf5f2da26714c6e29bd3", 1052 + "_title": "Rectangle Copy 7", 1053 + "_coords": { 1054 + "_x": 550, 1055 + "_y": 210, 1056 + "_width": 150, 1057 + "_height": 46 1058 + }, 1059 + "_content": null, 1060 + "_css": { 1061 + ".Rectangle-Copy-7": [ 1062 + { 1063 + "_lhs": "width", 1064 + "_rhs": "150px" 1065 + }, 1066 + { 1067 + "_lhs": "height", 1068 + "_rhs": "46px" 1069 + }, 1070 + { 1071 + "_lhs": "background-color", 1072 + "_rhs": "#edeeee" 1073 + } 1074 + ] 1075 + }, 1076 + "_style": [ 1077 + { 1078 + "_lhs": "width", 1079 + "_rhs": "11.8571%" 1080 + }, 1081 + { 1082 + "_lhs": "height", 1083 + "_rhs": "1.21837%" 1084 + }, 1085 + { 1086 + "_lhs": "left", 1087 + "_rhs": "81.5714%" 1088 + }, 1089 + { 1090 + "_lhs": "top", 1091 + "_rhs": "10.4499%" 1092 + } 1093 + ] 1094 + }, 1095 + { 1096 + "_did": "00e6919e1168f59353cb0561f921ba1b5c759d712f5c15507756379637c6c7f6", 1097 + "_title": "Your team", 1098 + "_coords": { 1099 + "_x": 571, 1100 + "_y": 223, 1101 + "_width": 83, 1102 + "_height": 26 1103 + }, 1104 + "_content": "Your team", 1105 + "_css": { 1106 + ".Your-team": [ 1107 + { 1108 + "_lhs": "width", 1109 + "_rhs": "83px" 1110 + }, 1111 + { 1112 + "_lhs": "height", 1113 + "_rhs": "26px" 1114 + }, 1115 + { 1116 + "_lhs": "font-family", 1117 + "_rhs": "ProximaNova" 1118 + }, 1119 + { 1120 + "_lhs": "font-size", 1121 + "_rhs": "18px" 1122 + }, 1123 + { 1124 + "_lhs": "font-weight", 1125 + "_rhs": "bold" 1126 + }, 1127 + { 1128 + "_lhs": "font-style", 1129 + "_rhs": "normal" 1130 + }, 1131 + { 1132 + "_lhs": "font-stretch", 1133 + "_rhs": "normal" 1134 + }, 1135 + { 1136 + "_lhs": "line-height", 1137 + "_rhs": "1.44" 1138 + }, 1139 + { 1140 + "_lhs": "letter-spacing", 1141 + "_rhs": "normal" 1142 + }, 1143 + { 1144 + "_lhs": "color", 1145 + "_rhs": "#2d2926" 1146 + } 1147 + ] 1148 + }, 1149 + "_style": [ 1150 + { 1151 + "_lhs": "width", 1152 + "_rhs": "11.8571%" 1153 + }, 1154 + { 1155 + "_lhs": "height", 1156 + "_rhs": "1.21837%" 1157 + }, 1158 + { 1159 + "_lhs": "left", 1160 + "_rhs": "81.5714%" 1161 + }, 1162 + { 1163 + "_lhs": "top", 1164 + "_rhs": "10.4499%" 1165 + } 1166 + ] 1167 + } 1168 + ], 1169 + [ 1170 + { 1171 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 1172 + "_title": "Team page - tablet sample", 1173 + "_coords": { 1174 + "_x": 0, 1175 + "_y": 0, 1176 + "_width": 700, 1177 + "_height": 2134 1178 + }, 1179 + "_content": null, 1180 + "_css": { 1181 + ".Team-page---tablet-sample": [ 1182 + { 1183 + "_lhs": "width", 1184 + "_rhs": "700px" 1185 + }, 1186 + { 1187 + "_lhs": "height", 1188 + "_rhs": "2134px" 1189 + }, 1190 + { 1191 + "_lhs": "background-color", 1192 + "_rhs": "#ffffff" 1193 + } 1194 + ] 1195 + }, 1196 + "_style": [ 1197 + { 1198 + "_lhs": "width", 1199 + "_rhs": "2.28571%" 1200 + }, 1201 + { 1202 + "_lhs": "height", 1203 + "_rhs": "0.656045%" 1204 + }, 1205 + { 1206 + "_lhs": "left", 1207 + "_rhs": "94.7143%" 1208 + }, 1209 + { 1210 + "_lhs": "top", 1211 + "_rhs": "10.731%" 1212 + } 1213 + ] 1214 + }, 1215 + { 1216 + "_did": "d2d017cc1f2d3d77307d0b4a41ec2aa413b0e94355f6cf5f2da26714c6e29bd3", 1217 + "_title": "Rectangle Copy 7", 1218 + "_coords": { 1219 + "_x": 550, 1220 + "_y": 210, 1221 + "_width": 150, 1222 + "_height": 46 1223 + }, 1224 + "_content": null, 1225 + "_css": { 1226 + ".Rectangle-Copy-7": [ 1227 + { 1228 + "_lhs": "width", 1229 + "_rhs": "150px" 1230 + }, 1231 + { 1232 + "_lhs": "height", 1233 + "_rhs": "46px" 1234 + }, 1235 + { 1236 + "_lhs": "background-color", 1237 + "_rhs": "#edeeee" 1238 + } 1239 + ] 1240 + }, 1241 + "_style": [ 1242 + { 1243 + "_lhs": "width", 1244 + "_rhs": "2.28571%" 1245 + }, 1246 + { 1247 + "_lhs": "height", 1248 + "_rhs": "0.656045%" 1249 + }, 1250 + { 1251 + "_lhs": "left", 1252 + "_rhs": "94.7143%" 1253 + }, 1254 + { 1255 + "_lhs": "top", 1256 + "_rhs": "10.731%" 1257 + } 1258 + ] 1259 + }, 1260 + { 1261 + "_did": "3259071322d743440d60585a1364e05839131783822e128d9dd69e9cdcdf1ed9", 1262 + "_title": "Triangle Copy 3", 1263 + "_coords": { 1264 + "_x": 663, 1265 + "_y": 229, 1266 + "_width": 16, 1267 + "_height": 14 1268 + }, 1269 + "_content": null, 1270 + "_css": { 1271 + ".Triangle-Copy-3": [ 1272 + { 1273 + "_lhs": "width", 1274 + "_rhs": "16px" 1275 + }, 1276 + { 1277 + "_lhs": "height", 1278 + "_rhs": "14px" 1279 + }, 1280 + { 1281 + "_lhs": "background-color", 1282 + "_rhs": "#4298b5" 1283 + } 1284 + ] 1285 + }, 1286 + "_style": [ 1287 + { 1288 + "_lhs": "width", 1289 + "_rhs": "2.28571%" 1290 + }, 1291 + { 1292 + "_lhs": "height", 1293 + "_rhs": "0.656045%" 1294 + }, 1295 + { 1296 + "_lhs": "left", 1297 + "_rhs": "94.7143%" 1298 + }, 1299 + { 1300 + "_lhs": "top", 1301 + "_rhs": "10.731%" 1302 + } 1303 + ] 1304 + } 1305 + ], 1306 + [ 1307 + { 1308 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 1309 + "_title": "Team page - tablet sample", 1310 + "_coords": { 1311 + "_x": 0, 1312 + "_y": 0, 1313 + "_width": 700, 1314 + "_height": 2134 1315 + }, 1316 + "_content": null, 1317 + "_css": { 1318 + ".Team-page---tablet-sample": [ 1319 + { 1320 + "_lhs": "width", 1321 + "_rhs": "700px" 1322 + }, 1323 + { 1324 + "_lhs": "height", 1325 + "_rhs": "2134px" 1326 + }, 1327 + { 1328 + "_lhs": "background-color", 1329 + "_rhs": "#ffffff" 1330 + } 1331 + ] 1332 + }, 1333 + "_style": [ 1334 + { 1335 + "_lhs": "width", 1336 + "_rhs": "100%" 1337 + }, 1338 + { 1339 + "_lhs": "height", 1340 + "_rhs": "9.84067%" 1341 + }, 1342 + { 1343 + "_lhs": "left", 1344 + "_rhs": "0%" 1345 + }, 1346 + { 1347 + "_lhs": "top", 1348 + "_rhs": "0%" 1349 + } 1350 + ] 1351 + }, 1352 + { 1353 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 1354 + "_title": "Rectangle", 1355 + "_coords": { 1356 + "_x": 0, 1357 + "_y": 0, 1358 + "_width": 700, 1359 + "_height": 210 1360 + }, 1361 + "_content": null, 1362 + "_css": { 1363 + ".Rectangle": [ 1364 + { 1365 + "_lhs": "width", 1366 + "_rhs": "700px" 1367 + }, 1368 + { 1369 + "_lhs": "height", 1370 + "_rhs": "210px" 1371 + }, 1372 + { 1373 + "_lhs": "background-color", 1374 + "_rhs": "#2d2926" 1375 + } 1376 + ] 1377 + }, 1378 + "_style": [ 1379 + { 1380 + "_lhs": "width", 1381 + "_rhs": "100%" 1382 + }, 1383 + { 1384 + "_lhs": "height", 1385 + "_rhs": "9.84067%" 1386 + }, 1387 + { 1388 + "_lhs": "left", 1389 + "_rhs": "0%" 1390 + }, 1391 + { 1392 + "_lhs": "top", 1393 + "_rhs": "0%" 1394 + } 1395 + ] 1396 + } 1397 + ], 1398 + [ 1399 + { 1400 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 1401 + "_title": "Team page - tablet sample", 1402 + "_coords": { 1403 + "_x": 0, 1404 + "_y": 0, 1405 + "_width": 700, 1406 + "_height": 2134 1407 + }, 1408 + "_content": null, 1409 + "_css": { 1410 + ".Team-page---tablet-sample": [ 1411 + { 1412 + "_lhs": "width", 1413 + "_rhs": "700px" 1414 + }, 1415 + { 1416 + "_lhs": "height", 1417 + "_rhs": "2134px" 1418 + }, 1419 + { 1420 + "_lhs": "background-color", 1421 + "_rhs": "#ffffff" 1422 + } 1423 + ] 1424 + }, 1425 + "_style": [ 1426 + { 1427 + "_lhs": "width", 1428 + "_rhs": "91.8571%" 1429 + }, 1430 + { 1431 + "_lhs": "height", 1432 + "_rhs": "1.78069%" 1433 + }, 1434 + { 1435 + "_lhs": "left", 1436 + "_rhs": "4.57143%" 1437 + }, 1438 + { 1439 + "_lhs": "top", 1440 + "_rhs": "5.24836%" 1441 + } 1442 + ] 1443 + }, 1444 + { 1445 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 1446 + "_title": "Rectangle", 1447 + "_coords": { 1448 + "_x": 0, 1449 + "_y": 0, 1450 + "_width": 700, 1451 + "_height": 210 1452 + }, 1453 + "_content": null, 1454 + "_css": { 1455 + ".Rectangle": [ 1456 + { 1457 + "_lhs": "width", 1458 + "_rhs": "700px" 1459 + }, 1460 + { 1461 + "_lhs": "height", 1462 + "_rhs": "210px" 1463 + }, 1464 + { 1465 + "_lhs": "background-color", 1466 + "_rhs": "#2d2926" 1467 + } 1468 + ] 1469 + }, 1470 + "_style": [ 1471 + { 1472 + "_lhs": "width", 1473 + "_rhs": "91.8571%" 1474 + }, 1475 + { 1476 + "_lhs": "height", 1477 + "_rhs": "1.78069%" 1478 + }, 1479 + { 1480 + "_lhs": "left", 1481 + "_rhs": "4.57143%" 1482 + }, 1483 + { 1484 + "_lhs": "top", 1485 + "_rhs": "5.24836%" 1486 + } 1487 + ] 1488 + }, 1489 + { 1490 + "_did": "2a68049d540221b86c703c2c06fe65c215e0845e732744531c433c0d5503d508", 1491 + "_title": "GSK R&D Strategic Ve", 1492 + "_coords": { 1493 + "_x": 32, 1494 + "_y": 112, 1495 + "_width": 643, 1496 + "_height": 38 1497 + }, 1498 + "_content": "GSK R&D Strategic Vendor selection ", 1499 + "_css": { 1500 + ".GSK-RD-Strategic-Ve": [ 1501 + { 1502 + "_lhs": "width", 1503 + "_rhs": "643px" 1504 + }, 1505 + { 1506 + "_lhs": "height", 1507 + "_rhs": "38px" 1508 + }, 1509 + { 1510 + "_lhs": "font-family", 1511 + "_rhs": "ProximaNova" 1512 + }, 1513 + { 1514 + "_lhs": "font-size", 1515 + "_rhs": "32px" 1516 + }, 1517 + { 1518 + "_lhs": "font-weight", 1519 + "_rhs": "bold" 1520 + }, 1521 + { 1522 + "_lhs": "font-style", 1523 + "_rhs": "normal" 1524 + }, 1525 + { 1526 + "_lhs": "font-stretch", 1527 + "_rhs": "normal" 1528 + }, 1529 + { 1530 + "_lhs": "line-height", 1531 + "_rhs": "normal" 1532 + }, 1533 + { 1534 + "_lhs": "letter-spacing", 1535 + "_rhs": "normal" 1536 + }, 1537 + { 1538 + "_lhs": "color", 1539 + "_rhs": "#ffffff" 1540 + } 1541 + ] 1542 + }, 1543 + "_style": [ 1544 + { 1545 + "_lhs": "width", 1546 + "_rhs": "91.8571%" 1547 + }, 1548 + { 1549 + "_lhs": "height", 1550 + "_rhs": "1.78069%" 1551 + }, 1552 + { 1553 + "_lhs": "left", 1554 + "_rhs": "4.57143%" 1555 + }, 1556 + { 1557 + "_lhs": "top", 1558 + "_rhs": "5.24836%" 1559 + } 1560 + ] 1561 + } 1562 + ], 1563 + [ 1564 + { 1565 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 1566 + "_title": "Team page - tablet sample", 1567 + "_coords": { 1568 + "_x": 0, 1569 + "_y": 0, 1570 + "_width": 700, 1571 + "_height": 2134 1572 + }, 1573 + "_content": null, 1574 + "_css": { 1575 + ".Team-page---tablet-sample": [ 1576 + { 1577 + "_lhs": "width", 1578 + "_rhs": "700px" 1579 + }, 1580 + { 1581 + "_lhs": "height", 1582 + "_rhs": "2134px" 1583 + }, 1584 + { 1585 + "_lhs": "background-color", 1586 + "_rhs": "#ffffff" 1587 + } 1588 + ] 1589 + }, 1590 + "_style": [ 1591 + { 1592 + "_lhs": "width", 1593 + "_rhs": "91.8571%" 1594 + }, 1595 + { 1596 + "_lhs": "height", 1597 + "_rhs": "1.78069%" 1598 + }, 1599 + { 1600 + "_lhs": "left", 1601 + "_rhs": "4.57143%" 1602 + }, 1603 + { 1604 + "_lhs": "top", 1605 + "_rhs": "7.49766%" 1606 + } 1607 + ] 1608 + }, 1609 + { 1610 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 1611 + "_title": "Rectangle", 1612 + "_coords": { 1613 + "_x": 0, 1614 + "_y": 0, 1615 + "_width": 700, 1616 + "_height": 210 1617 + }, 1618 + "_content": null, 1619 + "_css": { 1620 + ".Rectangle": [ 1621 + { 1622 + "_lhs": "width", 1623 + "_rhs": "700px" 1624 + }, 1625 + { 1626 + "_lhs": "height", 1627 + "_rhs": "210px" 1628 + }, 1629 + { 1630 + "_lhs": "background-color", 1631 + "_rhs": "#2d2926" 1632 + } 1633 + ] 1634 + }, 1635 + "_style": [ 1636 + { 1637 + "_lhs": "width", 1638 + "_rhs": "91.8571%" 1639 + }, 1640 + { 1641 + "_lhs": "height", 1642 + "_rhs": "1.78069%" 1643 + }, 1644 + { 1645 + "_lhs": "left", 1646 + "_rhs": "4.57143%" 1647 + }, 1648 + { 1649 + "_lhs": "top", 1650 + "_rhs": "7.49766%" 1651 + } 1652 + ] 1653 + }, 1654 + { 1655 + "_did": "0df73b4ec2334441f453d435da9ab8c3737e94e98046303554edf218c3c3f012", 1656 + "_title": "This line reserved f", 1657 + "_coords": { 1658 + "_x": 32, 1659 + "_y": 160, 1660 + "_width": 643, 1661 + "_height": 38 1662 + }, 1663 + "_content": "This line reserved for some sort of short vision statement", 1664 + "_css": { 1665 + ".This-line-reserved-f": [ 1666 + { 1667 + "_lhs": "width", 1668 + "_rhs": "643px" 1669 + }, 1670 + { 1671 + "_lhs": "height", 1672 + "_rhs": "38px" 1673 + }, 1674 + { 1675 + "_lhs": "font-family", 1676 + "_rhs": "ProximaNova" 1677 + }, 1678 + { 1679 + "_lhs": "font-size", 1680 + "_rhs": "22px" 1681 + }, 1682 + { 1683 + "_lhs": "font-weight", 1684 + "_rhs": "300" 1685 + }, 1686 + { 1687 + "_lhs": "font-style", 1688 + "_rhs": "normal" 1689 + }, 1690 + { 1691 + "_lhs": "font-stretch", 1692 + "_rhs": "normal" 1693 + }, 1694 + { 1695 + "_lhs": "line-height", 1696 + "_rhs": "normal" 1697 + }, 1698 + { 1699 + "_lhs": "letter-spacing", 1700 + "_rhs": "normal" 1701 + }, 1702 + { 1703 + "_lhs": "color", 1704 + "_rhs": "#ffffff" 1705 + } 1706 + ] 1707 + }, 1708 + "_style": [ 1709 + { 1710 + "_lhs": "width", 1711 + "_rhs": "91.8571%" 1712 + }, 1713 + { 1714 + "_lhs": "height", 1715 + "_rhs": "1.78069%" 1716 + }, 1717 + { 1718 + "_lhs": "left", 1719 + "_rhs": "4.57143%" 1720 + }, 1721 + { 1722 + "_lhs": "top", 1723 + "_rhs": "7.49766%" 1724 + } 1725 + ] 1726 + } 1727 + ], 1728 + [ 1729 + { 1730 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 1731 + "_title": "Team page - tablet sample", 1732 + "_coords": { 1733 + "_x": 0, 1734 + "_y": 0, 1735 + "_width": 700, 1736 + "_height": 2134 1737 + }, 1738 + "_content": null, 1739 + "_css": { 1740 + ".Team-page---tablet-sample": [ 1741 + { 1742 + "_lhs": "width", 1743 + "_rhs": "700px" 1744 + }, 1745 + { 1746 + "_lhs": "height", 1747 + "_rhs": "2134px" 1748 + }, 1749 + { 1750 + "_lhs": "background-color", 1751 + "_rhs": "#ffffff" 1752 + } 1753 + ] 1754 + }, 1755 + "_style": [ 1756 + { 1757 + "_lhs": "width", 1758 + "_rhs": "70.7143%" 1759 + }, 1760 + { 1761 + "_lhs": "height", 1762 + "_rhs": "2.90534%" 1763 + }, 1764 + { 1765 + "_lhs": "left", 1766 + "_rhs": "4.57143%" 1767 + }, 1768 + { 1769 + "_lhs": "top", 1770 + "_rhs": "1.45267%" 1771 + } 1772 + ] 1773 + }, 1774 + { 1775 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 1776 + "_title": "Rectangle", 1777 + "_coords": { 1778 + "_x": 0, 1779 + "_y": 0, 1780 + "_width": 700, 1781 + "_height": 210 1782 + }, 1783 + "_content": null, 1784 + "_css": { 1785 + ".Rectangle": [ 1786 + { 1787 + "_lhs": "width", 1788 + "_rhs": "700px" 1789 + }, 1790 + { 1791 + "_lhs": "height", 1792 + "_rhs": "210px" 1793 + }, 1794 + { 1795 + "_lhs": "background-color", 1796 + "_rhs": "#2d2926" 1797 + } 1798 + ] 1799 + }, 1800 + "_style": [ 1801 + { 1802 + "_lhs": "width", 1803 + "_rhs": "70.7143%" 1804 + }, 1805 + { 1806 + "_lhs": "height", 1807 + "_rhs": "2.90534%" 1808 + }, 1809 + { 1810 + "_lhs": "left", 1811 + "_rhs": "4.57143%" 1812 + }, 1813 + { 1814 + "_lhs": "top", 1815 + "_rhs": "1.45267%" 1816 + } 1817 + ] 1818 + }, 1819 + { 1820 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 1821 + "_title": "Cobranded logos", 1822 + "_coords": { 1823 + "_x": 32, 1824 + "_y": 31, 1825 + "_width": 495, 1826 + "_height": 62 1827 + }, 1828 + "_content": null, 1829 + "_css": { 1830 + ".Cobranded-logos": [ 1831 + { 1832 + "_lhs": "width", 1833 + "_rhs": "495px" 1834 + }, 1835 + { 1836 + "_lhs": "height", 1837 + "_rhs": "62px" 1838 + } 1839 + ] 1840 + }, 1841 + "_style": [ 1842 + { 1843 + "_lhs": "width", 1844 + "_rhs": "70.7143%" 1845 + }, 1846 + { 1847 + "_lhs": "height", 1848 + "_rhs": "2.90534%" 1849 + }, 1850 + { 1851 + "_lhs": "left", 1852 + "_rhs": "4.57143%" 1853 + }, 1854 + { 1855 + "_lhs": "top", 1856 + "_rhs": "1.45267%" 1857 + } 1858 + ] 1859 + }, 1860 + { 1861 + "_did": "e13af6b2b59883dc62c1d862ce84ee56f6db7f82cfaab885bda68bfeb8d7163c", 1862 + "_title": "Path", 1863 + "_coords": { 1864 + "_x": 32, 1865 + "_y": 31, 1866 + "_width": 44, 1867 + "_height": 49 1868 + }, 1869 + "_content": null, 1870 + "_css": { 1871 + ".Path": [ 1872 + { 1873 + "_lhs": "width", 1874 + "_rhs": "44px" 1875 + }, 1876 + { 1877 + "_lhs": "height", 1878 + "_rhs": "49px" 1879 + }, 1880 + { 1881 + "_lhs": "background-color", 1882 + "_rhs": "#ffffff" 1883 + } 1884 + ] 1885 + }, 1886 + "_style": [ 1887 + { 1888 + "_lhs": "width", 1889 + "_rhs": "70.7143%" 1890 + }, 1891 + { 1892 + "_lhs": "height", 1893 + "_rhs": "2.90534%" 1894 + }, 1895 + { 1896 + "_lhs": "left", 1897 + "_rhs": "4.57143%" 1898 + }, 1899 + { 1900 + "_lhs": "top", 1901 + "_rhs": "1.45267%" 1902 + } 1903 + ] 1904 + } 1905 + ], 1906 + [ 1907 + { 1908 + "_did": "33c15be77280811096a4cf1b0b7886855e4da044869ca7835bc8daaa084448a8", 1909 + "_title": "Path", 1910 + "_coords": { 1911 + "_x": 197, 1912 + "_y": 45, 1913 + "_width": 29, 1914 + "_height": 32 1915 + }, 1916 + "_content": null, 1917 + "_css": { 1918 + ".Path": [ 1919 + { 1920 + "_lhs": "width", 1921 + "_rhs": "29px" 1922 + }, 1923 + { 1924 + "_lhs": "height", 1925 + "_rhs": "32px" 1926 + }, 1927 + { 1928 + "_lhs": "background-color", 1929 + "_rhs": "#ffffff" 1930 + } 1931 + ] 1932 + }, 1933 + "_style": [ 1934 + { 1935 + "_lhs": "width", 1936 + "_rhs": "4.14286%" 1937 + }, 1938 + { 1939 + "_lhs": "height", 1940 + "_rhs": "1.49953%" 1941 + }, 1942 + { 1943 + "_lhs": "left", 1944 + "_rhs": "28.1429%" 1945 + }, 1946 + { 1947 + "_lhs": "top", 1948 + "_rhs": "2.10872%" 1949 + } 1950 + ] 1951 + } 1952 + ], 1953 + [ 1954 + { 1955 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 1956 + "_title": "Team page - tablet sample", 1957 + "_coords": { 1958 + "_x": 0, 1959 + "_y": 0, 1960 + "_width": 700, 1961 + "_height": 2134 1962 + }, 1963 + "_content": null, 1964 + "_css": { 1965 + ".Team-page---tablet-sample": [ 1966 + { 1967 + "_lhs": "width", 1968 + "_rhs": "700px" 1969 + }, 1970 + { 1971 + "_lhs": "height", 1972 + "_rhs": "2134px" 1973 + }, 1974 + { 1975 + "_lhs": "background-color", 1976 + "_rhs": "#ffffff" 1977 + } 1978 + ] 1979 + }, 1980 + "_style": [ 1981 + { 1982 + "_lhs": "width", 1983 + "_rhs": "1%" 1984 + }, 1985 + { 1986 + "_lhs": "height", 1987 + "_rhs": "0.328023%" 1988 + }, 1989 + { 1990 + "_lhs": "left", 1991 + "_rhs": "26.2857%" 1992 + }, 1993 + { 1994 + "_lhs": "top", 1995 + "_rhs": "1.59325%" 1996 + } 1997 + ] 1998 + }, 1999 + { 2000 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 2001 + "_title": "Rectangle", 2002 + "_coords": { 2003 + "_x": 0, 2004 + "_y": 0, 2005 + "_width": 700, 2006 + "_height": 210 2007 + }, 2008 + "_content": null, 2009 + "_css": { 2010 + ".Rectangle": [ 2011 + { 2012 + "_lhs": "width", 2013 + "_rhs": "700px" 2014 + }, 2015 + { 2016 + "_lhs": "height", 2017 + "_rhs": "210px" 2018 + }, 2019 + { 2020 + "_lhs": "background-color", 2021 + "_rhs": "#2d2926" 2022 + } 2023 + ] 2024 + }, 2025 + "_style": [ 2026 + { 2027 + "_lhs": "width", 2028 + "_rhs": "1%" 2029 + }, 2030 + { 2031 + "_lhs": "height", 2032 + "_rhs": "0.328023%" 2033 + }, 2034 + { 2035 + "_lhs": "left", 2036 + "_rhs": "26.2857%" 2037 + }, 2038 + { 2039 + "_lhs": "top", 2040 + "_rhs": "1.59325%" 2041 + } 2042 + ] 2043 + }, 2044 + { 2045 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 2046 + "_title": "Cobranded logos", 2047 + "_coords": { 2048 + "_x": 32, 2049 + "_y": 31, 2050 + "_width": 495, 2051 + "_height": 62 2052 + }, 2053 + "_content": null, 2054 + "_css": { 2055 + ".Cobranded-logos": [ 2056 + { 2057 + "_lhs": "width", 2058 + "_rhs": "495px" 2059 + }, 2060 + { 2061 + "_lhs": "height", 2062 + "_rhs": "62px" 2063 + } 2064 + ] 2065 + }, 2066 + "_style": [ 2067 + { 2068 + "_lhs": "width", 2069 + "_rhs": "1%" 2070 + }, 2071 + { 2072 + "_lhs": "height", 2073 + "_rhs": "0.328023%" 2074 + }, 2075 + { 2076 + "_lhs": "left", 2077 + "_rhs": "26.2857%" 2078 + }, 2079 + { 2080 + "_lhs": "top", 2081 + "_rhs": "1.59325%" 2082 + } 2083 + ] 2084 + }, 2085 + { 2086 + "_did": "0438cded3d1f8138bc79f5d02118cb5aabba0265d08814754b56fbc51ba5f3c7", 2087 + "_title": "Rectangle", 2088 + "_coords": { 2089 + "_x": 184, 2090 + "_y": 34, 2091 + "_width": 7, 2092 + "_height": 7 2093 + }, 2094 + "_content": null, 2095 + "_css": { 2096 + ".Rectangle": [ 2097 + { 2098 + "_lhs": "width", 2099 + "_rhs": "7px" 2100 + }, 2101 + { 2102 + "_lhs": "height", 2103 + "_rhs": "7px" 2104 + }, 2105 + { 2106 + "_lhs": "background-color", 2107 + "_rhs": "#ffffff" 2108 + } 2109 + ] 2110 + }, 2111 + "_style": [ 2112 + { 2113 + "_lhs": "width", 2114 + "_rhs": "1%" 2115 + }, 2116 + { 2117 + "_lhs": "height", 2118 + "_rhs": "0.328023%" 2119 + }, 2120 + { 2121 + "_lhs": "left", 2122 + "_rhs": "26.2857%" 2123 + }, 2124 + { 2125 + "_lhs": "top", 2126 + "_rhs": "1.59325%" 2127 + } 2128 + ] 2129 + } 2130 + ], 2131 + [ 2132 + { 2133 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 2134 + "_title": "Team page - tablet sample", 2135 + "_coords": { 2136 + "_x": 0, 2137 + "_y": 0, 2138 + "_width": 700, 2139 + "_height": 2134 2140 + }, 2141 + "_content": null, 2142 + "_css": { 2143 + ".Team-page---tablet-sample": [ 2144 + { 2145 + "_lhs": "width", 2146 + "_rhs": "700px" 2147 + }, 2148 + { 2149 + "_lhs": "height", 2150 + "_rhs": "2134px" 2151 + }, 2152 + { 2153 + "_lhs": "background-color", 2154 + "_rhs": "#ffffff" 2155 + } 2156 + ] 2157 + }, 2158 + "_style": [ 2159 + { 2160 + "_lhs": "width", 2161 + "_rhs": "1%" 2162 + }, 2163 + { 2164 + "_lhs": "height", 2165 + "_rhs": "1.49953%" 2166 + }, 2167 + { 2168 + "_lhs": "left", 2169 + "_rhs": "26.2857%" 2170 + }, 2171 + { 2172 + "_lhs": "top", 2173 + "_rhs": "2.10872%" 2174 + } 2175 + ] 2176 + }, 2177 + { 2178 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 2179 + "_title": "Rectangle", 2180 + "_coords": { 2181 + "_x": 0, 2182 + "_y": 0, 2183 + "_width": 700, 2184 + "_height": 210 2185 + }, 2186 + "_content": null, 2187 + "_css": { 2188 + ".Rectangle": [ 2189 + { 2190 + "_lhs": "width", 2191 + "_rhs": "700px" 2192 + }, 2193 + { 2194 + "_lhs": "height", 2195 + "_rhs": "210px" 2196 + }, 2197 + { 2198 + "_lhs": "background-color", 2199 + "_rhs": "#2d2926" 2200 + } 2201 + ] 2202 + }, 2203 + "_style": [ 2204 + { 2205 + "_lhs": "width", 2206 + "_rhs": "1%" 2207 + }, 2208 + { 2209 + "_lhs": "height", 2210 + "_rhs": "1.49953%" 2211 + }, 2212 + { 2213 + "_lhs": "left", 2214 + "_rhs": "26.2857%" 2215 + }, 2216 + { 2217 + "_lhs": "top", 2218 + "_rhs": "2.10872%" 2219 + } 2220 + ] 2221 + }, 2222 + { 2223 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 2224 + "_title": "Cobranded logos", 2225 + "_coords": { 2226 + "_x": 32, 2227 + "_y": 31, 2228 + "_width": 495, 2229 + "_height": 62 2230 + }, 2231 + "_content": null, 2232 + "_css": { 2233 + ".Cobranded-logos": [ 2234 + { 2235 + "_lhs": "width", 2236 + "_rhs": "495px" 2237 + }, 2238 + { 2239 + "_lhs": "height", 2240 + "_rhs": "62px" 2241 + } 2242 + ] 2243 + }, 2244 + "_style": [ 2245 + { 2246 + "_lhs": "width", 2247 + "_rhs": "1%" 2248 + }, 2249 + { 2250 + "_lhs": "height", 2251 + "_rhs": "1.49953%" 2252 + }, 2253 + { 2254 + "_lhs": "left", 2255 + "_rhs": "26.2857%" 2256 + }, 2257 + { 2258 + "_lhs": "top", 2259 + "_rhs": "2.10872%" 2260 + } 2261 + ] 2262 + }, 2263 + { 2264 + "_did": "c0f4e7016e82eec7e69134f692aeb2dbc7d02542b7b9fd7ebf61a5338e679437", 2265 + "_title": "Rectangle", 2266 + "_coords": { 2267 + "_x": 184, 2268 + "_y": 45, 2269 + "_width": 7, 2270 + "_height": 32 2271 + }, 2272 + "_content": null, 2273 + "_css": { 2274 + ".Rectangle": [ 2275 + { 2276 + "_lhs": "width", 2277 + "_rhs": "7px" 2278 + }, 2279 + { 2280 + "_lhs": "height", 2281 + "_rhs": "32px" 2282 + }, 2283 + { 2284 + "_lhs": "background-color", 2285 + "_rhs": "#ffffff" 2286 + } 2287 + ] 2288 + }, 2289 + "_style": [ 2290 + { 2291 + "_lhs": "width", 2292 + "_rhs": "1%" 2293 + }, 2294 + { 2295 + "_lhs": "height", 2296 + "_rhs": "1.49953%" 2297 + }, 2298 + { 2299 + "_lhs": "left", 2300 + "_rhs": "26.2857%" 2301 + }, 2302 + { 2303 + "_lhs": "top", 2304 + "_rhs": "2.10872%" 2305 + } 2306 + ] 2307 + } 2308 + ], 2309 + [ 2310 + { 2311 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 2312 + "_title": "Team page - tablet sample", 2313 + "_coords": { 2314 + "_x": 0, 2315 + "_y": 0, 2316 + "_width": 700, 2317 + "_height": 2134 2318 + }, 2319 + "_content": null, 2320 + "_css": { 2321 + ".Team-page---tablet-sample": [ 2322 + { 2323 + "_lhs": "width", 2324 + "_rhs": "700px" 2325 + }, 2326 + { 2327 + "_lhs": "height", 2328 + "_rhs": "2134px" 2329 + }, 2330 + { 2331 + "_lhs": "background-color", 2332 + "_rhs": "#ffffff" 2333 + } 2334 + ] 2335 + }, 2336 + "_style": [ 2337 + { 2338 + "_lhs": "width", 2339 + "_rhs": "4.85714%" 2340 + }, 2341 + { 2342 + "_lhs": "height", 2343 + "_rhs": "1.59325%" 2344 + }, 2345 + { 2346 + "_lhs": "left", 2347 + "_rhs": "11%" 2348 + }, 2349 + { 2350 + "_lhs": "top", 2351 + "_rhs": "2.015%" 2352 + } 2353 + ] 2354 + }, 2355 + { 2356 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 2357 + "_title": "Rectangle", 2358 + "_coords": { 2359 + "_x": 0, 2360 + "_y": 0, 2361 + "_width": 700, 2362 + "_height": 210 2363 + }, 2364 + "_content": null, 2365 + "_css": { 2366 + ".Rectangle": [ 2367 + { 2368 + "_lhs": "width", 2369 + "_rhs": "700px" 2370 + }, 2371 + { 2372 + "_lhs": "height", 2373 + "_rhs": "210px" 2374 + }, 2375 + { 2376 + "_lhs": "background-color", 2377 + "_rhs": "#2d2926" 2378 + } 2379 + ] 2380 + }, 2381 + "_style": [ 2382 + { 2383 + "_lhs": "width", 2384 + "_rhs": "4.85714%" 2385 + }, 2386 + { 2387 + "_lhs": "height", 2388 + "_rhs": "1.59325%" 2389 + }, 2390 + { 2391 + "_lhs": "left", 2392 + "_rhs": "11%" 2393 + }, 2394 + { 2395 + "_lhs": "top", 2396 + "_rhs": "2.015%" 2397 + } 2398 + ] 2399 + }, 2400 + { 2401 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 2402 + "_title": "Cobranded logos", 2403 + "_coords": { 2404 + "_x": 32, 2405 + "_y": 31, 2406 + "_width": 495, 2407 + "_height": 62 2408 + }, 2409 + "_content": null, 2410 + "_css": { 2411 + ".Cobranded-logos": [ 2412 + { 2413 + "_lhs": "width", 2414 + "_rhs": "495px" 2415 + }, 2416 + { 2417 + "_lhs": "height", 2418 + "_rhs": "62px" 2419 + } 2420 + ] 2421 + }, 2422 + "_style": [ 2423 + { 2424 + "_lhs": "width", 2425 + "_rhs": "4.85714%" 2426 + }, 2427 + { 2428 + "_lhs": "height", 2429 + "_rhs": "1.59325%" 2430 + }, 2431 + { 2432 + "_lhs": "left", 2433 + "_rhs": "11%" 2434 + }, 2435 + { 2436 + "_lhs": "top", 2437 + "_rhs": "2.015%" 2438 + } 2439 + ] 2440 + }, 2441 + { 2442 + "_did": "7b21370bd01c62e24a29c9af2577667ad68240d1eaea8004e2ebd4806f02ffaa", 2443 + "_title": "Shape", 2444 + "_coords": { 2445 + "_x": 77, 2446 + "_y": 43, 2447 + "_width": 34, 2448 + "_height": 34 2449 + }, 2450 + "_content": null, 2451 + "_css": { 2452 + ".Shape": [ 2453 + { 2454 + "_lhs": "width", 2455 + "_rhs": "34px" 2456 + }, 2457 + { 2458 + "_lhs": "height", 2459 + "_rhs": "34px" 2460 + }, 2461 + { 2462 + "_lhs": "background-color", 2463 + "_rhs": "#ffffff" 2464 + } 2465 + ] 2466 + }, 2467 + "_style": [ 2468 + { 2469 + "_lhs": "width", 2470 + "_rhs": "4.85714%" 2471 + }, 2472 + { 2473 + "_lhs": "height", 2474 + "_rhs": "1.59325%" 2475 + }, 2476 + { 2477 + "_lhs": "left", 2478 + "_rhs": "11%" 2479 + }, 2480 + { 2481 + "_lhs": "top", 2482 + "_rhs": "2.015%" 2483 + } 2484 + ] 2485 + } 2486 + ], 2487 + [ 2488 + { 2489 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 2490 + "_title": "Team page - tablet sample", 2491 + "_coords": { 2492 + "_x": 0, 2493 + "_y": 0, 2494 + "_width": 700, 2495 + "_height": 2134 2496 + }, 2497 + "_content": null, 2498 + "_css": { 2499 + ".Team-page---tablet-sample": [ 2500 + { 2501 + "_lhs": "width", 2502 + "_rhs": "700px" 2503 + }, 2504 + { 2505 + "_lhs": "height", 2506 + "_rhs": "2134px" 2507 + }, 2508 + { 2509 + "_lhs": "background-color", 2510 + "_rhs": "#ffffff" 2511 + } 2512 + ] 2513 + }, 2514 + "_style": [ 2515 + { 2516 + "_lhs": "width", 2517 + "_rhs": "4.14286%" 2518 + }, 2519 + { 2520 + "_lhs": "height", 2521 + "_rhs": "1.59325%" 2522 + }, 2523 + { 2524 + "_lhs": "left", 2525 + "_rhs": "21.5714%" 2526 + }, 2527 + { 2528 + "_lhs": "top", 2529 + "_rhs": "2.015%" 2530 + } 2531 + ] 2532 + }, 2533 + { 2534 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 2535 + "_title": "Rectangle", 2536 + "_coords": { 2537 + "_x": 0, 2538 + "_y": 0, 2539 + "_width": 700, 2540 + "_height": 210 2541 + }, 2542 + "_content": null, 2543 + "_css": { 2544 + ".Rectangle": [ 2545 + { 2546 + "_lhs": "width", 2547 + "_rhs": "700px" 2548 + }, 2549 + { 2550 + "_lhs": "height", 2551 + "_rhs": "210px" 2552 + }, 2553 + { 2554 + "_lhs": "background-color", 2555 + "_rhs": "#2d2926" 2556 + } 2557 + ] 2558 + }, 2559 + "_style": [ 2560 + { 2561 + "_lhs": "width", 2562 + "_rhs": "4.14286%" 2563 + }, 2564 + { 2565 + "_lhs": "height", 2566 + "_rhs": "1.59325%" 2567 + }, 2568 + { 2569 + "_lhs": "left", 2570 + "_rhs": "21.5714%" 2571 + }, 2572 + { 2573 + "_lhs": "top", 2574 + "_rhs": "2.015%" 2575 + } 2576 + ] 2577 + }, 2578 + { 2579 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 2580 + "_title": "Cobranded logos", 2581 + "_coords": { 2582 + "_x": 32, 2583 + "_y": 31, 2584 + "_width": 495, 2585 + "_height": 62 2586 + }, 2587 + "_content": null, 2588 + "_css": { 2589 + ".Cobranded-logos": [ 2590 + { 2591 + "_lhs": "width", 2592 + "_rhs": "495px" 2593 + }, 2594 + { 2595 + "_lhs": "height", 2596 + "_rhs": "62px" 2597 + } 2598 + ] 2599 + }, 2600 + "_style": [ 2601 + { 2602 + "_lhs": "width", 2603 + "_rhs": "4.14286%" 2604 + }, 2605 + { 2606 + "_lhs": "height", 2607 + "_rhs": "1.59325%" 2608 + }, 2609 + { 2610 + "_lhs": "left", 2611 + "_rhs": "21.5714%" 2612 + }, 2613 + { 2614 + "_lhs": "top", 2615 + "_rhs": "2.015%" 2616 + } 2617 + ] 2618 + }, 2619 + { 2620 + "_did": "2b79fd900560a17dc1b0d333ab026e0ad9f2ab5a52e7485648a2aab647af7a04", 2621 + "_title": "Path", 2622 + "_coords": { 2623 + "_x": 151, 2624 + "_y": 43, 2625 + "_width": 29, 2626 + "_height": 34 2627 + }, 2628 + "_content": null, 2629 + "_css": { 2630 + ".Path": [ 2631 + { 2632 + "_lhs": "width", 2633 + "_rhs": "29px" 2634 + }, 2635 + { 2636 + "_lhs": "height", 2637 + "_rhs": "34px" 2638 + }, 2639 + { 2640 + "_lhs": "background-color", 2641 + "_rhs": "#ffffff" 2642 + } 2643 + ] 2644 + }, 2645 + "_style": [ 2646 + { 2647 + "_lhs": "width", 2648 + "_rhs": "4.14286%" 2649 + }, 2650 + { 2651 + "_lhs": "height", 2652 + "_rhs": "1.59325%" 2653 + }, 2654 + { 2655 + "_lhs": "left", 2656 + "_rhs": "21.5714%" 2657 + }, 2658 + { 2659 + "_lhs": "top", 2660 + "_rhs": "2.015%" 2661 + } 2662 + ] 2663 + } 2664 + ], 2665 + [ 2666 + { 2667 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 2668 + "_title": "Team page - tablet sample", 2669 + "_coords": { 2670 + "_x": 0, 2671 + "_y": 0, 2672 + "_width": 700, 2673 + "_height": 2134 2674 + }, 2675 + "_content": null, 2676 + "_css": { 2677 + ".Team-page---tablet-sample": [ 2678 + { 2679 + "_lhs": "width", 2680 + "_rhs": "700px" 2681 + }, 2682 + { 2683 + "_lhs": "height", 2684 + "_rhs": "2134px" 2685 + }, 2686 + { 2687 + "_lhs": "background-color", 2688 + "_rhs": "#ffffff" 2689 + } 2690 + ] 2691 + }, 2692 + "_style": [ 2693 + { 2694 + "_lhs": "width", 2695 + "_rhs": "4.85714%" 2696 + }, 2697 + { 2698 + "_lhs": "height", 2699 + "_rhs": "1.59325%" 2700 + }, 2701 + { 2702 + "_lhs": "left", 2703 + "_rhs": "32.5714%" 2704 + }, 2705 + { 2706 + "_lhs": "top", 2707 + "_rhs": "2.015%" 2708 + } 2709 + ] 2710 + }, 2711 + { 2712 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 2713 + "_title": "Rectangle", 2714 + "_coords": { 2715 + "_x": 0, 2716 + "_y": 0, 2717 + "_width": 700, 2718 + "_height": 210 2719 + }, 2720 + "_content": null, 2721 + "_css": { 2722 + ".Rectangle": [ 2723 + { 2724 + "_lhs": "width", 2725 + "_rhs": "700px" 2726 + }, 2727 + { 2728 + "_lhs": "height", 2729 + "_rhs": "210px" 2730 + }, 2731 + { 2732 + "_lhs": "background-color", 2733 + "_rhs": "#2d2926" 2734 + } 2735 + ] 2736 + }, 2737 + "_style": [ 2738 + { 2739 + "_lhs": "width", 2740 + "_rhs": "4.85714%" 2741 + }, 2742 + { 2743 + "_lhs": "height", 2744 + "_rhs": "1.59325%" 2745 + }, 2746 + { 2747 + "_lhs": "left", 2748 + "_rhs": "32.5714%" 2749 + }, 2750 + { 2751 + "_lhs": "top", 2752 + "_rhs": "2.015%" 2753 + } 2754 + ] 2755 + }, 2756 + { 2757 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 2758 + "_title": "Cobranded logos", 2759 + "_coords": { 2760 + "_x": 32, 2761 + "_y": 31, 2762 + "_width": 495, 2763 + "_height": 62 2764 + }, 2765 + "_content": null, 2766 + "_css": { 2767 + ".Cobranded-logos": [ 2768 + { 2769 + "_lhs": "width", 2770 + "_rhs": "495px" 2771 + }, 2772 + { 2773 + "_lhs": "height", 2774 + "_rhs": "62px" 2775 + } 2776 + ] 2777 + }, 2778 + "_style": [ 2779 + { 2780 + "_lhs": "width", 2781 + "_rhs": "4.85714%" 2782 + }, 2783 + { 2784 + "_lhs": "height", 2785 + "_rhs": "1.59325%" 2786 + }, 2787 + { 2788 + "_lhs": "left", 2789 + "_rhs": "32.5714%" 2790 + }, 2791 + { 2792 + "_lhs": "top", 2793 + "_rhs": "2.015%" 2794 + } 2795 + ] 2796 + }, 2797 + { 2798 + "_did": "912ad40ae7b4d324f41358df95e33990760a42e14224398ad7d083bd83b4b1c4", 2799 + "_title": "Shape", 2800 + "_coords": { 2801 + "_x": 228, 2802 + "_y": 43, 2803 + "_width": 34, 2804 + "_height": 34 2805 + }, 2806 + "_content": null, 2807 + "_css": { 2808 + ".Shape": [ 2809 + { 2810 + "_lhs": "width", 2811 + "_rhs": "34px" 2812 + }, 2813 + { 2814 + "_lhs": "height", 2815 + "_rhs": "34px" 2816 + }, 2817 + { 2818 + "_lhs": "background-color", 2819 + "_rhs": "#ffffff" 2820 + } 2821 + ] 2822 + }, 2823 + "_style": [ 2824 + { 2825 + "_lhs": "width", 2826 + "_rhs": "4.85714%" 2827 + }, 2828 + { 2829 + "_lhs": "height", 2830 + "_rhs": "1.59325%" 2831 + }, 2832 + { 2833 + "_lhs": "left", 2834 + "_rhs": "32.5714%" 2835 + }, 2836 + { 2837 + "_lhs": "top", 2838 + "_rhs": "2.015%" 2839 + } 2840 + ] 2841 + } 2842 + ], 2843 + [ 2844 + { 2845 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 2846 + "_title": "Team page - tablet sample", 2847 + "_coords": { 2848 + "_x": 0, 2849 + "_y": 0, 2850 + "_width": 700, 2851 + "_height": 2134 2852 + }, 2853 + "_content": null, 2854 + "_css": { 2855 + ".Team-page---tablet-sample": [ 2856 + { 2857 + "_lhs": "width", 2858 + "_rhs": "700px" 2859 + }, 2860 + { 2861 + "_lhs": "height", 2862 + "_rhs": "2134px" 2863 + }, 2864 + { 2865 + "_lhs": "background-color", 2866 + "_rhs": "#ffffff" 2867 + } 2868 + ] 2869 + }, 2870 + "_style": [ 2871 + { 2872 + "_lhs": "width", 2873 + "_rhs": "4.14286%" 2874 + }, 2875 + { 2876 + "_lhs": "height", 2877 + "_rhs": "1.59325%" 2878 + }, 2879 + { 2880 + "_lhs": "left", 2881 + "_rhs": "38%" 2882 + }, 2883 + { 2884 + "_lhs": "top", 2885 + "_rhs": "2.015%" 2886 + } 2887 + ] 2888 + }, 2889 + { 2890 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 2891 + "_title": "Rectangle", 2892 + "_coords": { 2893 + "_x": 0, 2894 + "_y": 0, 2895 + "_width": 700, 2896 + "_height": 210 2897 + }, 2898 + "_content": null, 2899 + "_css": { 2900 + ".Rectangle": [ 2901 + { 2902 + "_lhs": "width", 2903 + "_rhs": "700px" 2904 + }, 2905 + { 2906 + "_lhs": "height", 2907 + "_rhs": "210px" 2908 + }, 2909 + { 2910 + "_lhs": "background-color", 2911 + "_rhs": "#2d2926" 2912 + } 2913 + ] 2914 + }, 2915 + "_style": [ 2916 + { 2917 + "_lhs": "width", 2918 + "_rhs": "4.14286%" 2919 + }, 2920 + { 2921 + "_lhs": "height", 2922 + "_rhs": "1.59325%" 2923 + }, 2924 + { 2925 + "_lhs": "left", 2926 + "_rhs": "38%" 2927 + }, 2928 + { 2929 + "_lhs": "top", 2930 + "_rhs": "2.015%" 2931 + } 2932 + ] 2933 + }, 2934 + { 2935 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 2936 + "_title": "Cobranded logos", 2937 + "_coords": { 2938 + "_x": 32, 2939 + "_y": 31, 2940 + "_width": 495, 2941 + "_height": 62 2942 + }, 2943 + "_content": null, 2944 + "_css": { 2945 + ".Cobranded-logos": [ 2946 + { 2947 + "_lhs": "width", 2948 + "_rhs": "495px" 2949 + }, 2950 + { 2951 + "_lhs": "height", 2952 + "_rhs": "62px" 2953 + } 2954 + ] 2955 + }, 2956 + "_style": [ 2957 + { 2958 + "_lhs": "width", 2959 + "_rhs": "4.14286%" 2960 + }, 2961 + { 2962 + "_lhs": "height", 2963 + "_rhs": "1.59325%" 2964 + }, 2965 + { 2966 + "_lhs": "left", 2967 + "_rhs": "38%" 2968 + }, 2969 + { 2970 + "_lhs": "top", 2971 + "_rhs": "2.015%" 2972 + } 2973 + ] 2974 + }, 2975 + { 2976 + "_did": "8225c490146e50a1541b6ba4aaba07700824f8fb1af098c1340a87224eae4e07", 2977 + "_title": "Path", 2978 + "_coords": { 2979 + "_x": 266, 2980 + "_y": 43, 2981 + "_width": 29, 2982 + "_height": 34 2983 + }, 2984 + "_content": null, 2985 + "_css": { 2986 + ".Path": [ 2987 + { 2988 + "_lhs": "width", 2989 + "_rhs": "29px" 2990 + }, 2991 + { 2992 + "_lhs": "height", 2993 + "_rhs": "34px" 2994 + }, 2995 + { 2996 + "_lhs": "background-color", 2997 + "_rhs": "#ffffff" 2998 + } 2999 + ] 3000 + }, 3001 + "_style": [ 3002 + { 3003 + "_lhs": "width", 3004 + "_rhs": "4.14286%" 3005 + }, 3006 + { 3007 + "_lhs": "height", 3008 + "_rhs": "1.59325%" 3009 + }, 3010 + { 3011 + "_lhs": "left", 3012 + "_rhs": "38%" 3013 + }, 3014 + { 3015 + "_lhs": "top", 3016 + "_rhs": "2.015%" 3017 + } 3018 + ] 3019 + } 3020 + ], 3021 + [ 3022 + { 3023 + "_did": "33c15be77280811096a4cf1b0b7886855e4da044869ca7835bc8daaa084448a8", 3024 + "_title": "Path", 3025 + "_coords": { 3026 + "_x": 197, 3027 + "_y": 45, 3028 + "_width": 29, 3029 + "_height": 32 3030 + }, 3031 + "_content": null, 3032 + "_css": { 3033 + ".Path": [ 3034 + { 3035 + "_lhs": "width", 3036 + "_rhs": "29px" 3037 + }, 3038 + { 3039 + "_lhs": "height", 3040 + "_rhs": "32px" 3041 + }, 3042 + { 3043 + "_lhs": "background-color", 3044 + "_rhs": "#ffffff" 3045 + } 3046 + ] 3047 + }, 3048 + "_style": [ 3049 + { 3050 + "_lhs": "width", 3051 + "_rhs": "4.14286%" 3052 + }, 3053 + { 3054 + "_lhs": "height", 3055 + "_rhs": "1.49953%" 3056 + }, 3057 + { 3058 + "_lhs": "left", 3059 + "_rhs": "28.1429%" 3060 + }, 3061 + { 3062 + "_lhs": "top", 3063 + "_rhs": "2.10872%" 3064 + } 3065 + ] 3066 + } 3067 + ], 3068 + [ 3069 + { 3070 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 3071 + "_title": "Team page - tablet sample", 3072 + "_coords": { 3073 + "_x": 0, 3074 + "_y": 0, 3075 + "_width": 700, 3076 + "_height": 2134 3077 + }, 3078 + "_content": null, 3079 + "_css": { 3080 + ".Team-page---tablet-sample": [ 3081 + { 3082 + "_lhs": "width", 3083 + "_rhs": "700px" 3084 + }, 3085 + { 3086 + "_lhs": "height", 3087 + "_rhs": "2134px" 3088 + }, 3089 + { 3090 + "_lhs": "background-color", 3091 + "_rhs": "#ffffff" 3092 + } 3093 + ] 3094 + }, 3095 + "_style": [ 3096 + { 3097 + "_lhs": "width", 3098 + "_rhs": "6.28571%" 3099 + }, 3100 + { 3101 + "_lhs": "height", 3102 + "_rhs": "2.29616%" 3103 + }, 3104 + { 3105 + "_lhs": "left", 3106 + "_rhs": "4.57143%" 3107 + }, 3108 + { 3109 + "_lhs": "top", 3110 + "_rhs": "1.45267%" 3111 + } 3112 + ] 3113 + }, 3114 + { 3115 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 3116 + "_title": "Rectangle", 3117 + "_coords": { 3118 + "_x": 0, 3119 + "_y": 0, 3120 + "_width": 700, 3121 + "_height": 210 3122 + }, 3123 + "_content": null, 3124 + "_css": { 3125 + ".Rectangle": [ 3126 + { 3127 + "_lhs": "width", 3128 + "_rhs": "700px" 3129 + }, 3130 + { 3131 + "_lhs": "height", 3132 + "_rhs": "210px" 3133 + }, 3134 + { 3135 + "_lhs": "background-color", 3136 + "_rhs": "#2d2926" 3137 + } 3138 + ] 3139 + }, 3140 + "_style": [ 3141 + { 3142 + "_lhs": "width", 3143 + "_rhs": "6.28571%" 3144 + }, 3145 + { 3146 + "_lhs": "height", 3147 + "_rhs": "2.29616%" 3148 + }, 3149 + { 3150 + "_lhs": "left", 3151 + "_rhs": "4.57143%" 3152 + }, 3153 + { 3154 + "_lhs": "top", 3155 + "_rhs": "1.45267%" 3156 + } 3157 + ] 3158 + }, 3159 + { 3160 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 3161 + "_title": "Cobranded logos", 3162 + "_coords": { 3163 + "_x": 32, 3164 + "_y": 31, 3165 + "_width": 495, 3166 + "_height": 62 3167 + }, 3168 + "_content": null, 3169 + "_css": { 3170 + ".Cobranded-logos": [ 3171 + { 3172 + "_lhs": "width", 3173 + "_rhs": "495px" 3174 + }, 3175 + { 3176 + "_lhs": "height", 3177 + "_rhs": "62px" 3178 + } 3179 + ] 3180 + }, 3181 + "_style": [ 3182 + { 3183 + "_lhs": "width", 3184 + "_rhs": "6.28571%" 3185 + }, 3186 + { 3187 + "_lhs": "height", 3188 + "_rhs": "2.29616%" 3189 + }, 3190 + { 3191 + "_lhs": "left", 3192 + "_rhs": "4.57143%" 3193 + }, 3194 + { 3195 + "_lhs": "top", 3196 + "_rhs": "1.45267%" 3197 + } 3198 + ] 3199 + }, 3200 + { 3201 + "_did": "e13af6b2b59883dc62c1d862ce84ee56f6db7f82cfaab885bda68bfeb8d7163c", 3202 + "_title": "Path", 3203 + "_coords": { 3204 + "_x": 32, 3205 + "_y": 31, 3206 + "_width": 44, 3207 + "_height": 49 3208 + }, 3209 + "_content": null, 3210 + "_css": { 3211 + ".Path": [ 3212 + { 3213 + "_lhs": "width", 3214 + "_rhs": "44px" 3215 + }, 3216 + { 3217 + "_lhs": "height", 3218 + "_rhs": "49px" 3219 + }, 3220 + { 3221 + "_lhs": "background-color", 3222 + "_rhs": "#ffffff" 3223 + } 3224 + ] 3225 + }, 3226 + "_style": [ 3227 + { 3228 + "_lhs": "width", 3229 + "_rhs": "6.28571%" 3230 + }, 3231 + { 3232 + "_lhs": "height", 3233 + "_rhs": "2.29616%" 3234 + }, 3235 + { 3236 + "_lhs": "left", 3237 + "_rhs": "4.57143%" 3238 + }, 3239 + { 3240 + "_lhs": "top", 3241 + "_rhs": "1.45267%" 3242 + } 3243 + ] 3244 + } 3245 + ], 3246 + [ 3247 + { 3248 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 3249 + "_title": "Team page - tablet sample", 3250 + "_coords": { 3251 + "_x": 0, 3252 + "_y": 0, 3253 + "_width": 700, 3254 + "_height": 2134 3255 + }, 3256 + "_content": null, 3257 + "_css": { 3258 + ".Team-page---tablet-sample": [ 3259 + { 3260 + "_lhs": "width", 3261 + "_rhs": "700px" 3262 + }, 3263 + { 3264 + "_lhs": "height", 3265 + "_rhs": "2134px" 3266 + }, 3267 + { 3268 + "_lhs": "background-color", 3269 + "_rhs": "#ffffff" 3270 + } 3271 + ] 3272 + }, 3273 + "_style": [ 3274 + { 3275 + "_lhs": "width", 3276 + "_rhs": "4.85714%" 3277 + }, 3278 + { 3279 + "_lhs": "height", 3280 + "_rhs": "2.34302%" 3281 + }, 3282 + { 3283 + "_lhs": "left", 3284 + "_rhs": "16.2857%" 3285 + }, 3286 + { 3287 + "_lhs": "top", 3288 + "_rhs": "2.015%" 3289 + } 3290 + ] 3291 + }, 3292 + { 3293 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 3294 + "_title": "Rectangle", 3295 + "_coords": { 3296 + "_x": 0, 3297 + "_y": 0, 3298 + "_width": 700, 3299 + "_height": 210 3300 + }, 3301 + "_content": null, 3302 + "_css": { 3303 + ".Rectangle": [ 3304 + { 3305 + "_lhs": "width", 3306 + "_rhs": "700px" 3307 + }, 3308 + { 3309 + "_lhs": "height", 3310 + "_rhs": "210px" 3311 + }, 3312 + { 3313 + "_lhs": "background-color", 3314 + "_rhs": "#2d2926" 3315 + } 3316 + ] 3317 + }, 3318 + "_style": [ 3319 + { 3320 + "_lhs": "width", 3321 + "_rhs": "4.85714%" 3322 + }, 3323 + { 3324 + "_lhs": "height", 3325 + "_rhs": "2.34302%" 3326 + }, 3327 + { 3328 + "_lhs": "left", 3329 + "_rhs": "16.2857%" 3330 + }, 3331 + { 3332 + "_lhs": "top", 3333 + "_rhs": "2.015%" 3334 + } 3335 + ] 3336 + }, 3337 + { 3338 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 3339 + "_title": "Cobranded logos", 3340 + "_coords": { 3341 + "_x": 32, 3342 + "_y": 31, 3343 + "_width": 495, 3344 + "_height": 62 3345 + }, 3346 + "_content": null, 3347 + "_css": { 3348 + ".Cobranded-logos": [ 3349 + { 3350 + "_lhs": "width", 3351 + "_rhs": "495px" 3352 + }, 3353 + { 3354 + "_lhs": "height", 3355 + "_rhs": "62px" 3356 + } 3357 + ] 3358 + }, 3359 + "_style": [ 3360 + { 3361 + "_lhs": "width", 3362 + "_rhs": "4.85714%" 3363 + }, 3364 + { 3365 + "_lhs": "height", 3366 + "_rhs": "2.34302%" 3367 + }, 3368 + { 3369 + "_lhs": "left", 3370 + "_rhs": "16.2857%" 3371 + }, 3372 + { 3373 + "_lhs": "top", 3374 + "_rhs": "2.015%" 3375 + } 3376 + ] 3377 + }, 3378 + { 3379 + "_did": "9b494e1a95c7ea2ec508ae060675c30e273e5dc4a79929c47ed02526587e36cc", 3380 + "_title": "Shape", 3381 + "_coords": { 3382 + "_x": 114, 3383 + "_y": 43, 3384 + "_width": 34, 3385 + "_height": 50 3386 + }, 3387 + "_content": null, 3388 + "_css": { 3389 + ".Shape": [ 3390 + { 3391 + "_lhs": "width", 3392 + "_rhs": "34px" 3393 + }, 3394 + { 3395 + "_lhs": "height", 3396 + "_rhs": "50px" 3397 + }, 3398 + { 3399 + "_lhs": "background-color", 3400 + "_rhs": "#ffffff" 3401 + } 3402 + ] 3403 + }, 3404 + "_style": [ 3405 + { 3406 + "_lhs": "width", 3407 + "_rhs": "4.85714%" 3408 + }, 3409 + { 3410 + "_lhs": "height", 3411 + "_rhs": "2.34302%" 3412 + }, 3413 + { 3414 + "_lhs": "left", 3415 + "_rhs": "16.2857%" 3416 + }, 3417 + { 3418 + "_lhs": "top", 3419 + "_rhs": "2.015%" 3420 + } 3421 + ] 3422 + } 3423 + ], 3424 + [ 3425 + { 3426 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 3427 + "_title": "Team page - tablet sample", 3428 + "_coords": { 3429 + "_x": 0, 3430 + "_y": 0, 3431 + "_width": 700, 3432 + "_height": 2134 3433 + }, 3434 + "_content": null, 3435 + "_css": { 3436 + ".Team-page---tablet-sample": [ 3437 + { 3438 + "_lhs": "width", 3439 + "_rhs": "700px" 3440 + }, 3441 + { 3442 + "_lhs": "height", 3443 + "_rhs": "2134px" 3444 + }, 3445 + { 3446 + "_lhs": "background-color", 3447 + "_rhs": "#ffffff" 3448 + } 3449 + ] 3450 + }, 3451 + "_style": [ 3452 + { 3453 + "_lhs": "width", 3454 + "_rhs": "2.85714%" 3455 + }, 3456 + { 3457 + "_lhs": "height", 3458 + "_rhs": "2.06186%" 3459 + }, 3460 + { 3461 + "_lhs": "left", 3462 + "_rhs": "42.4286%" 3463 + }, 3464 + { 3465 + "_lhs": "top", 3466 + "_rhs": "1.54639%" 3467 + } 3468 + ] 3469 + }, 3470 + { 3471 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 3472 + "_title": "Rectangle", 3473 + "_coords": { 3474 + "_x": 0, 3475 + "_y": 0, 3476 + "_width": 700, 3477 + "_height": 210 3478 + }, 3479 + "_content": null, 3480 + "_css": { 3481 + ".Rectangle": [ 3482 + { 3483 + "_lhs": "width", 3484 + "_rhs": "700px" 3485 + }, 3486 + { 3487 + "_lhs": "height", 3488 + "_rhs": "210px" 3489 + }, 3490 + { 3491 + "_lhs": "background-color", 3492 + "_rhs": "#2d2926" 3493 + } 3494 + ] 3495 + }, 3496 + "_style": [ 3497 + { 3498 + "_lhs": "width", 3499 + "_rhs": "2.85714%" 3500 + }, 3501 + { 3502 + "_lhs": "height", 3503 + "_rhs": "2.06186%" 3504 + }, 3505 + { 3506 + "_lhs": "left", 3507 + "_rhs": "42.4286%" 3508 + }, 3509 + { 3510 + "_lhs": "top", 3511 + "_rhs": "1.54639%" 3512 + } 3513 + ] 3514 + }, 3515 + { 3516 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 3517 + "_title": "Cobranded logos", 3518 + "_coords": { 3519 + "_x": 32, 3520 + "_y": 31, 3521 + "_width": 495, 3522 + "_height": 62 3523 + }, 3524 + "_content": null, 3525 + "_css": { 3526 + ".Cobranded-logos": [ 3527 + { 3528 + "_lhs": "width", 3529 + "_rhs": "495px" 3530 + }, 3531 + { 3532 + "_lhs": "height", 3533 + "_rhs": "62px" 3534 + } 3535 + ] 3536 + }, 3537 + "_style": [ 3538 + { 3539 + "_lhs": "width", 3540 + "_rhs": "2.85714%" 3541 + }, 3542 + { 3543 + "_lhs": "height", 3544 + "_rhs": "2.06186%" 3545 + }, 3546 + { 3547 + "_lhs": "left", 3548 + "_rhs": "42.4286%" 3549 + }, 3550 + { 3551 + "_lhs": "top", 3552 + "_rhs": "1.54639%" 3553 + } 3554 + ] 3555 + }, 3556 + { 3557 + "_did": "a6b2c2d3d60cf40177cf0ccdb030837654a9df54e79b9a6e95c52ac1fc06da83", 3558 + "_title": "Path", 3559 + "_coords": { 3560 + "_x": 297, 3561 + "_y": 33, 3562 + "_width": 20, 3563 + "_height": 44 3564 + }, 3565 + "_content": null, 3566 + "_css": { 3567 + ".Path": [ 3568 + { 3569 + "_lhs": "width", 3570 + "_rhs": "20px" 3571 + }, 3572 + { 3573 + "_lhs": "height", 3574 + "_rhs": "44px" 3575 + }, 3576 + { 3577 + "_lhs": "background-color", 3578 + "_rhs": "#ffffff" 3579 + } 3580 + ] 3581 + }, 3582 + "_style": [ 3583 + { 3584 + "_lhs": "width", 3585 + "_rhs": "2.85714%" 3586 + }, 3587 + { 3588 + "_lhs": "height", 3589 + "_rhs": "2.06186%" 3590 + }, 3591 + { 3592 + "_lhs": "left", 3593 + "_rhs": "42.4286%" 3594 + }, 3595 + { 3596 + "_lhs": "top", 3597 + "_rhs": "1.54639%" 3598 + } 3599 + ] 3600 + } 3601 + ], 3602 + [ 3603 + { 3604 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 3605 + "_title": "Team page - tablet sample", 3606 + "_coords": { 3607 + "_x": 0, 3608 + "_y": 0, 3609 + "_width": 700, 3610 + "_height": 2134 3611 + }, 3612 + "_content": null, 3613 + "_css": { 3614 + ".Team-page---tablet-sample": [ 3615 + { 3616 + "_lhs": "width", 3617 + "_rhs": "700px" 3618 + }, 3619 + { 3620 + "_lhs": "height", 3621 + "_rhs": "2134px" 3622 + }, 3623 + { 3624 + "_lhs": "background-color", 3625 + "_rhs": "#ffffff" 3626 + } 3627 + ] 3628 + }, 3629 + "_style": [ 3630 + { 3631 + "_lhs": "width", 3632 + "_rhs": "10.2857%" 3633 + }, 3634 + { 3635 + "_lhs": "height", 3636 + "_rhs": "2.90534%" 3637 + }, 3638 + { 3639 + "_lhs": "left", 3640 + "_rhs": "57%" 3641 + }, 3642 + { 3643 + "_lhs": "top", 3644 + "_rhs": "1.45267%" 3645 + } 3646 + ] 3647 + }, 3648 + { 3649 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 3650 + "_title": "Rectangle", 3651 + "_coords": { 3652 + "_x": 0, 3653 + "_y": 0, 3654 + "_width": 700, 3655 + "_height": 210 3656 + }, 3657 + "_content": null, 3658 + "_css": { 3659 + ".Rectangle": [ 3660 + { 3661 + "_lhs": "width", 3662 + "_rhs": "700px" 3663 + }, 3664 + { 3665 + "_lhs": "height", 3666 + "_rhs": "210px" 3667 + }, 3668 + { 3669 + "_lhs": "background-color", 3670 + "_rhs": "#2d2926" 3671 + } 3672 + ] 3673 + }, 3674 + "_style": [ 3675 + { 3676 + "_lhs": "width", 3677 + "_rhs": "10.2857%" 3678 + }, 3679 + { 3680 + "_lhs": "height", 3681 + "_rhs": "2.90534%" 3682 + }, 3683 + { 3684 + "_lhs": "left", 3685 + "_rhs": "57%" 3686 + }, 3687 + { 3688 + "_lhs": "top", 3689 + "_rhs": "1.45267%" 3690 + } 3691 + ] 3692 + }, 3693 + { 3694 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 3695 + "_title": "Cobranded logos", 3696 + "_coords": { 3697 + "_x": 32, 3698 + "_y": 31, 3699 + "_width": 495, 3700 + "_height": 62 3701 + }, 3702 + "_content": null, 3703 + "_css": { 3704 + ".Cobranded-logos": [ 3705 + { 3706 + "_lhs": "width", 3707 + "_rhs": "495px" 3708 + }, 3709 + { 3710 + "_lhs": "height", 3711 + "_rhs": "62px" 3712 + } 3713 + ] 3714 + }, 3715 + "_style": [ 3716 + { 3717 + "_lhs": "width", 3718 + "_rhs": "10.2857%" 3719 + }, 3720 + { 3721 + "_lhs": "height", 3722 + "_rhs": "2.90534%" 3723 + }, 3724 + { 3725 + "_lhs": "left", 3726 + "_rhs": "57%" 3727 + }, 3728 + { 3729 + "_lhs": "top", 3730 + "_rhs": "1.45267%" 3731 + } 3732 + ] 3733 + }, 3734 + { 3735 + "_did": "0619b184c19b80a9ab622081c385e077be422557987b82e3ce2ad6f54621b5ab", 3736 + "_title": "Bitmap", 3737 + "_coords": { 3738 + "_x": 399, 3739 + "_y": 31, 3740 + "_width": 72, 3741 + "_height": 62 3742 + }, 3743 + "_content": null, 3744 + "_css": { 3745 + ".Bitmap": [ 3746 + { 3747 + "_lhs": "width", 3748 + "_rhs": "72px" 3749 + }, 3750 + { 3751 + "_lhs": "height", 3752 + "_rhs": "62px" 3753 + } 3754 + ] 3755 + }, 3756 + "_style": [ 3757 + { 3758 + "_lhs": "width", 3759 + "_rhs": "10.2857%" 3760 + }, 3761 + { 3762 + "_lhs": "height", 3763 + "_rhs": "2.90534%" 3764 + }, 3765 + { 3766 + "_lhs": "left", 3767 + "_rhs": "57%" 3768 + }, 3769 + { 3770 + "_lhs": "top", 3771 + "_rhs": "1.45267%" 3772 + } 3773 + ] 3774 + } 3775 + ], 3776 + [ 3777 + { 3778 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 3779 + "_title": "Team page - tablet sample", 3780 + "_coords": { 3781 + "_x": 0, 3782 + "_y": 0, 3783 + "_width": 700, 3784 + "_height": 2134 3785 + }, 3786 + "_content": null, 3787 + "_css": { 3788 + ".Team-page---tablet-sample": [ 3789 + { 3790 + "_lhs": "width", 3791 + "_rhs": "700px" 3792 + }, 3793 + { 3794 + "_lhs": "height", 3795 + "_rhs": "2134px" 3796 + }, 3797 + { 3798 + "_lhs": "background-color", 3799 + "_rhs": "#ffffff" 3800 + } 3801 + ] 3802 + }, 3803 + "_style": [ 3804 + { 3805 + "_lhs": "width", 3806 + "_rhs": "0.142857%" 3807 + }, 3808 + { 3809 + "_lhs": "height", 3810 + "_rhs": "2.81162%" 3811 + }, 3812 + { 3813 + "_lhs": "left", 3814 + "_rhs": "51%" 3815 + }, 3816 + { 3817 + "_lhs": "top", 3818 + "_rhs": "1.54639%" 3819 + } 3820 + ] 3821 + }, 3822 + { 3823 + "_did": "a8c283c209933f92d359dae41a202b7a9b7003665bec61b56696c652829782d9", 3824 + "_title": "Rectangle", 3825 + "_coords": { 3826 + "_x": 0, 3827 + "_y": 0, 3828 + "_width": 700, 3829 + "_height": 210 3830 + }, 3831 + "_content": null, 3832 + "_css": { 3833 + ".Rectangle": [ 3834 + { 3835 + "_lhs": "width", 3836 + "_rhs": "700px" 3837 + }, 3838 + { 3839 + "_lhs": "height", 3840 + "_rhs": "210px" 3841 + }, 3842 + { 3843 + "_lhs": "background-color", 3844 + "_rhs": "#2d2926" 3845 + } 3846 + ] 3847 + }, 3848 + "_style": [ 3849 + { 3850 + "_lhs": "width", 3851 + "_rhs": "0.142857%" 3852 + }, 3853 + { 3854 + "_lhs": "height", 3855 + "_rhs": "2.81162%" 3856 + }, 3857 + { 3858 + "_lhs": "left", 3859 + "_rhs": "51%" 3860 + }, 3861 + { 3862 + "_lhs": "top", 3863 + "_rhs": "1.54639%" 3864 + } 3865 + ] 3866 + }, 3867 + { 3868 + "_did": "7e6e49198387b64e2aa24a628f00cf127fc438d78fb570d8b5c0ffb48e6a57d0", 3869 + "_title": "Cobranded logos", 3870 + "_coords": { 3871 + "_x": 32, 3872 + "_y": 31, 3873 + "_width": 495, 3874 + "_height": 62 3875 + }, 3876 + "_content": null, 3877 + "_css": { 3878 + ".Cobranded-logos": [ 3879 + { 3880 + "_lhs": "width", 3881 + "_rhs": "495px" 3882 + }, 3883 + { 3884 + "_lhs": "height", 3885 + "_rhs": "62px" 3886 + } 3887 + ] 3888 + }, 3889 + "_style": [ 3890 + { 3891 + "_lhs": "width", 3892 + "_rhs": "0.142857%" 3893 + }, 3894 + { 3895 + "_lhs": "height", 3896 + "_rhs": "2.81162%" 3897 + }, 3898 + { 3899 + "_lhs": "left", 3900 + "_rhs": "51%" 3901 + }, 3902 + { 3903 + "_lhs": "top", 3904 + "_rhs": "1.54639%" 3905 + } 3906 + ] 3907 + }, 3908 + { 3909 + "_did": "5ed1b692abf18ac1539fa5135c3ba923afa8968cb96962ea4d073636382f8207", 3910 + "_title": "Rectangle", 3911 + "_coords": { 3912 + "_x": 357, 3913 + "_y": 33, 3914 + "_width": 1, 3915 + "_height": 60 3916 + }, 3917 + "_content": null, 3918 + "_css": { 3919 + ".Rectangle": [ 3920 + { 3921 + "_lhs": "width", 3922 + "_rhs": "1px" 3923 + }, 3924 + { 3925 + "_lhs": "height", 3926 + "_rhs": "60px" 3927 + }, 3928 + { 3929 + "_lhs": "background-color", 3930 + "_rhs": "#edeeee" 3931 + } 3932 + ] 3933 + }, 3934 + "_style": [ 3935 + { 3936 + "_lhs": "width", 3937 + "_rhs": "0.142857%" 3938 + }, 3939 + { 3940 + "_lhs": "height", 3941 + "_rhs": "2.81162%" 3942 + }, 3943 + { 3944 + "_lhs": "left", 3945 + "_rhs": "51%" 3946 + }, 3947 + { 3948 + "_lhs": "top", 3949 + "_rhs": "1.54639%" 3950 + } 3951 + ] 3952 + } 3953 + ], 3954 + [ 3955 + { 3956 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 3957 + "_title": "Team page - tablet sample", 3958 + "_coords": { 3959 + "_x": 0, 3960 + "_y": 0, 3961 + "_width": 700, 3962 + "_height": 2134 3963 + }, 3964 + "_content": null, 3965 + "_css": { 3966 + ".Team-page---tablet-sample": [ 3967 + { 3968 + "_lhs": "width", 3969 + "_rhs": "700px" 3970 + }, 3971 + { 3972 + "_lhs": "height", 3973 + "_rhs": "2134px" 3974 + }, 3975 + { 3976 + "_lhs": "background-color", 3977 + "_rhs": "#ffffff" 3978 + } 3979 + ] 3980 + }, 3981 + "_style": [ 3982 + { 3983 + "_lhs": "width", 3984 + "_rhs": "59.2857%" 3985 + }, 3986 + { 3987 + "_lhs": "height", 3988 + "_rhs": "19.3533%" 3989 + }, 3990 + { 3991 + "_lhs": "left", 3992 + "_rhs": "0%" 3993 + }, 3994 + { 3995 + "_lhs": "top", 3996 + "_rhs": "38.7535%" 3997 + } 3998 + ] 3999 + }, 4000 + { 4001 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 4002 + "_title": "Rectangle", 4003 + "_coords": { 4004 + "_x": 0, 4005 + "_y": 827, 4006 + "_width": 415, 4007 + "_height": 413 4008 + }, 4009 + "_content": null, 4010 + "_css": { 4011 + ".Rectangle": [ 4012 + { 4013 + "_lhs": "width", 4014 + "_rhs": "415px" 4015 + }, 4016 + { 4017 + "_lhs": "height", 4018 + "_rhs": "413px" 4019 + }, 4020 + { 4021 + "_lhs": "background-color", 4022 + "_rhs": "#ffffff" 4023 + } 4024 + ] 4025 + }, 4026 + "_style": [ 4027 + { 4028 + "_lhs": "width", 4029 + "_rhs": "59.2857%" 4030 + }, 4031 + { 4032 + "_lhs": "height", 4033 + "_rhs": "19.3533%" 4034 + }, 4035 + { 4036 + "_lhs": "left", 4037 + "_rhs": "0%" 4038 + }, 4039 + { 4040 + "_lhs": "top", 4041 + "_rhs": "38.7535%" 4042 + } 4043 + ] 4044 + }, 4045 + { 4046 + "_did": "09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982", 4047 + "_title": "Bitmap", 4048 + "_coords": { 4049 + "_x": 0, 4050 + "_y": 827, 4051 + "_width": 415, 4052 + "_height": 270 4053 + }, 4054 + "_content": null, 4055 + "_css": { 4056 + ".Bitmap": [ 4057 + { 4058 + "_lhs": "width", 4059 + "_rhs": "415px" 4060 + }, 4061 + { 4062 + "_lhs": "height", 4063 + "_rhs": "270px" 4064 + } 4065 + ] 4066 + }, 4067 + "_style": [ 4068 + { 4069 + "_lhs": "width", 4070 + "_rhs": "59.2857%" 4071 + }, 4072 + { 4073 + "_lhs": "height", 4074 + "_rhs": "19.3533%" 4075 + }, 4076 + { 4077 + "_lhs": "left", 4078 + "_rhs": "0%" 4079 + }, 4080 + { 4081 + "_lhs": "top", 4082 + "_rhs": "38.7535%" 4083 + } 4084 + ] 4085 + } 4086 + ], 4087 + [ 4088 + { 4089 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 4090 + "_title": "Team page - tablet sample", 4091 + "_coords": { 4092 + "_x": 0, 4093 + "_y": 0, 4094 + "_width": 700, 4095 + "_height": 2134 4096 + }, 4097 + "_content": null, 4098 + "_css": { 4099 + ".Team-page---tablet-sample": [ 4100 + { 4101 + "_lhs": "width", 4102 + "_rhs": "700px" 4103 + }, 4104 + { 4105 + "_lhs": "height", 4106 + "_rhs": "2134px" 4107 + }, 4108 + { 4109 + "_lhs": "background-color", 4110 + "_rhs": "#ffffff" 4111 + } 4112 + ] 4113 + }, 4114 + "_style": [ 4115 + { 4116 + "_lhs": "width", 4117 + "_rhs": "100%" 4118 + }, 4119 + { 4120 + "_lhs": "height", 4121 + "_rhs": "13.5895%" 4122 + }, 4123 + { 4124 + "_lhs": "left", 4125 + "_rhs": "0%" 4126 + }, 4127 + { 4128 + "_lhs": "top", 4129 + "_rhs": "86.4105%" 4130 + } 4131 + ] 4132 + }, 4133 + { 4134 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 4135 + "_title": "Rectangle", 4136 + "_coords": { 4137 + "_x": 0, 4138 + "_y": 1844, 4139 + "_width": 700, 4140 + "_height": 290 4141 + }, 4142 + "_content": null, 4143 + "_css": { 4144 + ".Rectangle": [ 4145 + { 4146 + "_lhs": "width", 4147 + "_rhs": "700px" 4148 + }, 4149 + { 4150 + "_lhs": "height", 4151 + "_rhs": "290px" 4152 + }, 4153 + { 4154 + "_lhs": "background-color", 4155 + "_rhs": "#2d2926" 4156 + } 4157 + ] 4158 + }, 4159 + "_style": [ 4160 + { 4161 + "_lhs": "width", 4162 + "_rhs": "100%" 4163 + }, 4164 + { 4165 + "_lhs": "height", 4166 + "_rhs": "13.5895%" 4167 + }, 4168 + { 4169 + "_lhs": "left", 4170 + "_rhs": "0%" 4171 + }, 4172 + { 4173 + "_lhs": "top", 4174 + "_rhs": "86.4105%" 4175 + } 4176 + ] 4177 + } 4178 + ], 4179 + [ 4180 + { 4181 + "_did": "10f6b3b7a52b7f1e6f406f1476ef1027eecb250217725bba2b74decbdeb511c0", 4182 + "_title": "Path", 4183 + "_coords": { 4184 + "_x": 596, 4185 + "_y": 2080, 4186 + "_width": 19, 4187 + "_height": 22 4188 + }, 4189 + "_content": null, 4190 + "_css": { 4191 + ".Path": [ 4192 + { 4193 + "_lhs": "width", 4194 + "_rhs": "19.8px" 4195 + }, 4196 + { 4197 + "_lhs": "height", 4198 + "_rhs": "22px" 4199 + }, 4200 + { 4201 + "_lhs": "background-color", 4202 + "_rhs": "#ffffff" 4203 + } 4204 + ] 4205 + }, 4206 + "_style": [ 4207 + { 4208 + "_lhs": "width", 4209 + "_rhs": "2.82784%" 4210 + }, 4211 + { 4212 + "_lhs": "height", 4213 + "_rhs": "1.03093%" 4214 + }, 4215 + { 4216 + "_lhs": "left", 4217 + "_rhs": "85.263%" 4218 + }, 4219 + { 4220 + "_lhs": "top", 4221 + "_rhs": "97.4695%" 4222 + } 4223 + ] 4224 + } 4225 + ], 4226 + [ 4227 + { 4228 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 4229 + "_title": "Team page - tablet sample", 4230 + "_coords": { 4231 + "_x": 0, 4232 + "_y": 0, 4233 + "_width": 700, 4234 + "_height": 2134 4235 + }, 4236 + "_content": null, 4237 + "_css": { 4238 + ".Team-page---tablet-sample": [ 4239 + { 4240 + "_lhs": "width", 4241 + "_rhs": "700px" 4242 + }, 4243 + { 4244 + "_lhs": "height", 4245 + "_rhs": "2134px" 4246 + }, 4247 + { 4248 + "_lhs": "background-color", 4249 + "_rhs": "#ffffff" 4250 + } 4251 + ] 4252 + }, 4253 + "_style": [ 4254 + { 4255 + "_lhs": "width", 4256 + "_rhs": "0.70696%" 4257 + }, 4258 + { 4259 + "_lhs": "height", 4260 + "_rhs": "0.234302%" 4261 + }, 4262 + { 4263 + "_lhs": "left", 4264 + "_rhs": "83.9905%" 4265 + }, 4266 + { 4267 + "_lhs": "top", 4268 + "_rhs": "97.1415%" 4269 + } 4270 + ] 4271 + }, 4272 + { 4273 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 4274 + "_title": "Rectangle", 4275 + "_coords": { 4276 + "_x": 0, 4277 + "_y": 1844, 4278 + "_width": 700, 4279 + "_height": 290 4280 + }, 4281 + "_content": null, 4282 + "_css": { 4283 + ".Rectangle": [ 4284 + { 4285 + "_lhs": "width", 4286 + "_rhs": "700px" 4287 + }, 4288 + { 4289 + "_lhs": "height", 4290 + "_rhs": "290px" 4291 + }, 4292 + { 4293 + "_lhs": "background-color", 4294 + "_rhs": "#2d2926" 4295 + } 4296 + ] 4297 + }, 4298 + "_style": [ 4299 + { 4300 + "_lhs": "width", 4301 + "_rhs": "0.70696%" 4302 + }, 4303 + { 4304 + "_lhs": "height", 4305 + "_rhs": "0.234302%" 4306 + }, 4307 + { 4308 + "_lhs": "left", 4309 + "_rhs": "83.9905%" 4310 + }, 4311 + { 4312 + "_lhs": "top", 4313 + "_rhs": "97.1415%" 4314 + } 4315 + ] 4316 + }, 4317 + { 4318 + "_did": "5698408c3b9dd4c7e06042abcde4d243f4935d18fbec9e338ffe79175045732c", 4319 + "_title": "Rectangle", 4320 + "_coords": { 4321 + "_x": 587, 4322 + "_y": 2073, 4323 + "_width": 4, 4324 + "_height": 5 4325 + }, 4326 + "_content": null, 4327 + "_css": { 4328 + ".Rectangle": [ 4329 + { 4330 + "_lhs": "width", 4331 + "_rhs": "4.9px" 4332 + }, 4333 + { 4334 + "_lhs": "height", 4335 + "_rhs": "5px" 4336 + }, 4337 + { 4338 + "_lhs": "background-color", 4339 + "_rhs": "#ffffff" 4340 + } 4341 + ] 4342 + }, 4343 + "_style": [ 4344 + { 4345 + "_lhs": "width", 4346 + "_rhs": "0.70696%" 4347 + }, 4348 + { 4349 + "_lhs": "height", 4350 + "_rhs": "0.234302%" 4351 + }, 4352 + { 4353 + "_lhs": "left", 4354 + "_rhs": "83.9905%" 4355 + }, 4356 + { 4357 + "_lhs": "top", 4358 + "_rhs": "97.1415%" 4359 + } 4360 + ] 4361 + } 4362 + ], 4363 + [ 4364 + { 4365 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 4366 + "_title": "Team page - tablet sample", 4367 + "_coords": { 4368 + "_x": 0, 4369 + "_y": 0, 4370 + "_width": 700, 4371 + "_height": 2134 4372 + }, 4373 + "_content": null, 4374 + "_css": { 4375 + ".Team-page---tablet-sample": [ 4376 + { 4377 + "_lhs": "width", 4378 + "_rhs": "700px" 4379 + }, 4380 + { 4381 + "_lhs": "height", 4382 + "_rhs": "2134px" 4383 + }, 4384 + { 4385 + "_lhs": "background-color", 4386 + "_rhs": "#ffffff" 4387 + } 4388 + ] 4389 + }, 4390 + "_style": [ 4391 + { 4392 + "_lhs": "width", 4393 + "_rhs": "0.70696%" 4394 + }, 4395 + { 4396 + "_lhs": "height", 4397 + "_rhs": "1.03093%" 4398 + }, 4399 + { 4400 + "_lhs": "left", 4401 + "_rhs": "83.9905%" 4402 + }, 4403 + { 4404 + "_lhs": "top", 4405 + "_rhs": "97.4695%" 4406 + } 4407 + ] 4408 + }, 4409 + { 4410 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 4411 + "_title": "Rectangle", 4412 + "_coords": { 4413 + "_x": 0, 4414 + "_y": 1844, 4415 + "_width": 700, 4416 + "_height": 290 4417 + }, 4418 + "_content": null, 4419 + "_css": { 4420 + ".Rectangle": [ 4421 + { 4422 + "_lhs": "width", 4423 + "_rhs": "700px" 4424 + }, 4425 + { 4426 + "_lhs": "height", 4427 + "_rhs": "290px" 4428 + }, 4429 + { 4430 + "_lhs": "background-color", 4431 + "_rhs": "#2d2926" 4432 + } 4433 + ] 4434 + }, 4435 + "_style": [ 4436 + { 4437 + "_lhs": "width", 4438 + "_rhs": "0.70696%" 4439 + }, 4440 + { 4441 + "_lhs": "height", 4442 + "_rhs": "1.03093%" 4443 + }, 4444 + { 4445 + "_lhs": "left", 4446 + "_rhs": "83.9905%" 4447 + }, 4448 + { 4449 + "_lhs": "top", 4450 + "_rhs": "97.4695%" 4451 + } 4452 + ] 4453 + }, 4454 + { 4455 + "_did": "dc7962e68ffe9028a8117e184d5814cb5d166dfc3d030647facc3b9fde350c98", 4456 + "_title": "Rectangle", 4457 + "_coords": { 4458 + "_x": 587, 4459 + "_y": 2080, 4460 + "_width": 4, 4461 + "_height": 22 4462 + }, 4463 + "_content": null, 4464 + "_css": { 4465 + ".Rectangle": [ 4466 + { 4467 + "_lhs": "width", 4468 + "_rhs": "4.9px" 4469 + }, 4470 + { 4471 + "_lhs": "height", 4472 + "_rhs": "22px" 4473 + }, 4474 + { 4475 + "_lhs": "background-color", 4476 + "_rhs": "#ffffff" 4477 + } 4478 + ] 4479 + }, 4480 + "_style": [ 4481 + { 4482 + "_lhs": "width", 4483 + "_rhs": "0.70696%" 4484 + }, 4485 + { 4486 + "_lhs": "height", 4487 + "_rhs": "1.03093%" 4488 + }, 4489 + { 4490 + "_lhs": "left", 4491 + "_rhs": "83.9905%" 4492 + }, 4493 + { 4494 + "_lhs": "top", 4495 + "_rhs": "97.4695%" 4496 + } 4497 + ] 4498 + } 4499 + ], 4500 + [ 4501 + { 4502 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 4503 + "_title": "Team page - tablet sample", 4504 + "_coords": { 4505 + "_x": 0, 4506 + "_y": 0, 4507 + "_width": 700, 4508 + "_height": 2134 4509 + }, 4510 + "_content": null, 4511 + "_css": { 4512 + ".Team-page---tablet-sample": [ 4513 + { 4514 + "_lhs": "width", 4515 + "_rhs": "700px" 4516 + }, 4517 + { 4518 + "_lhs": "height", 4519 + "_rhs": "2134px" 4520 + }, 4521 + { 4522 + "_lhs": "background-color", 4523 + "_rhs": "#ffffff" 4524 + } 4525 + ] 4526 + }, 4527 + "_style": [ 4528 + { 4529 + "_lhs": "width", 4530 + "_rhs": "3.25201%" 4531 + }, 4532 + { 4533 + "_lhs": "height", 4534 + "_rhs": "1.07779%" 4535 + }, 4536 + { 4537 + "_lhs": "left", 4538 + "_rhs": "73.6689%" 4539 + }, 4540 + { 4541 + "_lhs": "top", 4542 + "_rhs": "97.4227%" 4543 + } 4544 + ] 4545 + }, 4546 + { 4547 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 4548 + "_title": "Rectangle", 4549 + "_coords": { 4550 + "_x": 0, 4551 + "_y": 1844, 4552 + "_width": 700, 4553 + "_height": 290 4554 + }, 4555 + "_content": null, 4556 + "_css": { 4557 + ".Rectangle": [ 4558 + { 4559 + "_lhs": "width", 4560 + "_rhs": "700px" 4561 + }, 4562 + { 4563 + "_lhs": "height", 4564 + "_rhs": "290px" 4565 + }, 4566 + { 4567 + "_lhs": "background-color", 4568 + "_rhs": "#2d2926" 4569 + } 4570 + ] 4571 + }, 4572 + "_style": [ 4573 + { 4574 + "_lhs": "width", 4575 + "_rhs": "3.25201%" 4576 + }, 4577 + { 4578 + "_lhs": "height", 4579 + "_rhs": "1.07779%" 4580 + }, 4581 + { 4582 + "_lhs": "left", 4583 + "_rhs": "73.6689%" 4584 + }, 4585 + { 4586 + "_lhs": "top", 4587 + "_rhs": "97.4227%" 4588 + } 4589 + ] 4590 + }, 4591 + { 4592 + "_did": "735752b13519bb1775f994bbccca85bef7414951665ca322cc5885c841c6ce09", 4593 + "_title": "Shape", 4594 + "_coords": { 4595 + "_x": 515, 4596 + "_y": 2079, 4597 + "_width": 22, 4598 + "_height": 23 4599 + }, 4600 + "_content": null, 4601 + "_css": { 4602 + ".Shape": [ 4603 + { 4604 + "_lhs": "width", 4605 + "_rhs": "22.8px" 4606 + }, 4607 + { 4608 + "_lhs": "height", 4609 + "_rhs": "23px" 4610 + }, 4611 + { 4612 + "_lhs": "background-color", 4613 + "_rhs": "#ffffff" 4614 + } 4615 + ] 4616 + }, 4617 + "_style": [ 4618 + { 4619 + "_lhs": "width", 4620 + "_rhs": "3.25201%" 4621 + }, 4622 + { 4623 + "_lhs": "height", 4624 + "_rhs": "1.07779%" 4625 + }, 4626 + { 4627 + "_lhs": "left", 4628 + "_rhs": "73.6689%" 4629 + }, 4630 + { 4631 + "_lhs": "top", 4632 + "_rhs": "97.4227%" 4633 + } 4634 + ] 4635 + } 4636 + ], 4637 + [ 4638 + { 4639 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 4640 + "_title": "Team page - tablet sample", 4641 + "_coords": { 4642 + "_x": 0, 4643 + "_y": 0, 4644 + "_width": 700, 4645 + "_height": 2134 4646 + }, 4647 + "_content": null, 4648 + "_css": { 4649 + ".Team-page---tablet-sample": [ 4650 + { 4651 + "_lhs": "width", 4652 + "_rhs": "700px" 4653 + }, 4654 + { 4655 + "_lhs": "height", 4656 + "_rhs": "2134px" 4657 + }, 4658 + { 4659 + "_lhs": "background-color", 4660 + "_rhs": "#ffffff" 4661 + } 4662 + ] 4663 + }, 4664 + "_style": [ 4665 + { 4666 + "_lhs": "width", 4667 + "_rhs": "2.82784%" 4668 + }, 4669 + { 4670 + "_lhs": "height", 4671 + "_rhs": "1.07779%" 4672 + }, 4673 + { 4674 + "_lhs": "left", 4675 + "_rhs": "80.7385%" 4676 + }, 4677 + { 4678 + "_lhs": "top", 4679 + "_rhs": "97.4227%" 4680 + } 4681 + ] 4682 + }, 4683 + { 4684 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 4685 + "_title": "Rectangle", 4686 + "_coords": { 4687 + "_x": 0, 4688 + "_y": 1844, 4689 + "_width": 700, 4690 + "_height": 290 4691 + }, 4692 + "_content": null, 4693 + "_css": { 4694 + ".Rectangle": [ 4695 + { 4696 + "_lhs": "width", 4697 + "_rhs": "700px" 4698 + }, 4699 + { 4700 + "_lhs": "height", 4701 + "_rhs": "290px" 4702 + }, 4703 + { 4704 + "_lhs": "background-color", 4705 + "_rhs": "#2d2926" 4706 + } 4707 + ] 4708 + }, 4709 + "_style": [ 4710 + { 4711 + "_lhs": "width", 4712 + "_rhs": "2.82784%" 4713 + }, 4714 + { 4715 + "_lhs": "height", 4716 + "_rhs": "1.07779%" 4717 + }, 4718 + { 4719 + "_lhs": "left", 4720 + "_rhs": "80.7385%" 4721 + }, 4722 + { 4723 + "_lhs": "top", 4724 + "_rhs": "97.4227%" 4725 + } 4726 + ] 4727 + }, 4728 + { 4729 + "_did": "6a6740ad87abe4e19c80bacddf593a4e13666f011a97ede74eac802d51b2d0e8", 4730 + "_title": "Path", 4731 + "_coords": { 4732 + "_x": 565, 4733 + "_y": 2079, 4734 + "_width": 19, 4735 + "_height": 23 4736 + }, 4737 + "_content": null, 4738 + "_css": { 4739 + ".Path": [ 4740 + { 4741 + "_lhs": "width", 4742 + "_rhs": "19.8px" 4743 + }, 4744 + { 4745 + "_lhs": "height", 4746 + "_rhs": "23px" 4747 + }, 4748 + { 4749 + "_lhs": "background-color", 4750 + "_rhs": "#ffffff" 4751 + } 4752 + ] 4753 + }, 4754 + "_style": [ 4755 + { 4756 + "_lhs": "width", 4757 + "_rhs": "2.82784%" 4758 + }, 4759 + { 4760 + "_lhs": "height", 4761 + "_rhs": "1.07779%" 4762 + }, 4763 + { 4764 + "_lhs": "left", 4765 + "_rhs": "80.7385%" 4766 + }, 4767 + { 4768 + "_lhs": "top", 4769 + "_rhs": "97.4227%" 4770 + } 4771 + ] 4772 + } 4773 + ], 4774 + [ 4775 + { 4776 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 4777 + "_title": "Team page - tablet sample", 4778 + "_coords": { 4779 + "_x": 0, 4780 + "_y": 0, 4781 + "_width": 700, 4782 + "_height": 2134 4783 + }, 4784 + "_content": null, 4785 + "_css": { 4786 + ".Team-page---tablet-sample": [ 4787 + { 4788 + "_lhs": "width", 4789 + "_rhs": "700px" 4790 + }, 4791 + { 4792 + "_lhs": "height", 4793 + "_rhs": "2134px" 4794 + }, 4795 + { 4796 + "_lhs": "background-color", 4797 + "_rhs": "#ffffff" 4798 + } 4799 + ] 4800 + }, 4801 + "_style": [ 4802 + { 4803 + "_lhs": "width", 4804 + "_rhs": "3.25201%" 4805 + }, 4806 + { 4807 + "_lhs": "height", 4808 + "_rhs": "1.07779%" 4809 + }, 4810 + { 4811 + "_lhs": "left", 4812 + "_rhs": "88.2322%" 4813 + }, 4814 + { 4815 + "_lhs": "top", 4816 + "_rhs": "97.4227%" 4817 + } 4818 + ] 4819 + }, 4820 + { 4821 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 4822 + "_title": "Rectangle", 4823 + "_coords": { 4824 + "_x": 0, 4825 + "_y": 1844, 4826 + "_width": 700, 4827 + "_height": 290 4828 + }, 4829 + "_content": null, 4830 + "_css": { 4831 + ".Rectangle": [ 4832 + { 4833 + "_lhs": "width", 4834 + "_rhs": "700px" 4835 + }, 4836 + { 4837 + "_lhs": "height", 4838 + "_rhs": "290px" 4839 + }, 4840 + { 4841 + "_lhs": "background-color", 4842 + "_rhs": "#2d2926" 4843 + } 4844 + ] 4845 + }, 4846 + "_style": [ 4847 + { 4848 + "_lhs": "width", 4849 + "_rhs": "3.25201%" 4850 + }, 4851 + { 4852 + "_lhs": "height", 4853 + "_rhs": "1.07779%" 4854 + }, 4855 + { 4856 + "_lhs": "left", 4857 + "_rhs": "88.2322%" 4858 + }, 4859 + { 4860 + "_lhs": "top", 4861 + "_rhs": "97.4227%" 4862 + } 4863 + ] 4864 + }, 4865 + { 4866 + "_did": "e6877b9b7e2d26dedc0cc44aa8c23331fd665e341fec3154044fe0ac67c231e4", 4867 + "_title": "Shape", 4868 + "_coords": { 4869 + "_x": 617, 4870 + "_y": 2079, 4871 + "_width": 22, 4872 + "_height": 23 4873 + }, 4874 + "_content": null, 4875 + "_css": { 4876 + ".Shape": [ 4877 + { 4878 + "_lhs": "width", 4879 + "_rhs": "22.8px" 4880 + }, 4881 + { 4882 + "_lhs": "height", 4883 + "_rhs": "23px" 4884 + }, 4885 + { 4886 + "_lhs": "background-color", 4887 + "_rhs": "#ffffff" 4888 + } 4889 + ] 4890 + }, 4891 + "_style": [ 4892 + { 4893 + "_lhs": "width", 4894 + "_rhs": "3.25201%" 4895 + }, 4896 + { 4897 + "_lhs": "height", 4898 + "_rhs": "1.07779%" 4899 + }, 4900 + { 4901 + "_lhs": "left", 4902 + "_rhs": "88.2322%" 4903 + }, 4904 + { 4905 + "_lhs": "top", 4906 + "_rhs": "97.4227%" 4907 + } 4908 + ] 4909 + } 4910 + ], 4911 + [ 4912 + { 4913 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 4914 + "_title": "Team page - tablet sample", 4915 + "_coords": { 4916 + "_x": 0, 4917 + "_y": 0, 4918 + "_width": 700, 4919 + "_height": 2134 4920 + }, 4921 + "_content": null, 4922 + "_css": { 4923 + ".Team-page---tablet-sample": [ 4924 + { 4925 + "_lhs": "width", 4926 + "_rhs": "700px" 4927 + }, 4928 + { 4929 + "_lhs": "height", 4930 + "_rhs": "2134px" 4931 + }, 4932 + { 4933 + "_lhs": "background-color", 4934 + "_rhs": "#ffffff" 4935 + } 4936 + ] 4937 + }, 4938 + "_style": [ 4939 + { 4940 + "_lhs": "width", 4941 + "_rhs": "2.82784%" 4942 + }, 4943 + { 4944 + "_lhs": "height", 4945 + "_rhs": "1.07779%" 4946 + }, 4947 + { 4948 + "_lhs": "left", 4949 + "_rhs": "91.9084%" 4950 + }, 4951 + { 4952 + "_lhs": "top", 4953 + "_rhs": "97.4227%" 4954 + } 4955 + ] 4956 + }, 4957 + { 4958 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 4959 + "_title": "Rectangle", 4960 + "_coords": { 4961 + "_x": 0, 4962 + "_y": 1844, 4963 + "_width": 700, 4964 + "_height": 290 4965 + }, 4966 + "_content": null, 4967 + "_css": { 4968 + ".Rectangle": [ 4969 + { 4970 + "_lhs": "width", 4971 + "_rhs": "700px" 4972 + }, 4973 + { 4974 + "_lhs": "height", 4975 + "_rhs": "290px" 4976 + }, 4977 + { 4978 + "_lhs": "background-color", 4979 + "_rhs": "#2d2926" 4980 + } 4981 + ] 4982 + }, 4983 + "_style": [ 4984 + { 4985 + "_lhs": "width", 4986 + "_rhs": "2.82784%" 4987 + }, 4988 + { 4989 + "_lhs": "height", 4990 + "_rhs": "1.07779%" 4991 + }, 4992 + { 4993 + "_lhs": "left", 4994 + "_rhs": "91.9084%" 4995 + }, 4996 + { 4997 + "_lhs": "top", 4998 + "_rhs": "97.4227%" 4999 + } 5000 + ] 5001 + }, 5002 + { 5003 + "_did": "e692f9617a5b6087c40acc100774645277d94fb65151e67f8a139bfb48bf3877", 5004 + "_title": "Path", 5005 + "_coords": { 5006 + "_x": 643, 5007 + "_y": 2079, 5008 + "_width": 19, 5009 + "_height": 23 5010 + }, 5011 + "_content": null, 5012 + "_css": { 5013 + ".Path": [ 5014 + { 5015 + "_lhs": "width", 5016 + "_rhs": "19.8px" 5017 + }, 5018 + { 5019 + "_lhs": "height", 5020 + "_rhs": "23px" 5021 + }, 5022 + { 5023 + "_lhs": "background-color", 5024 + "_rhs": "#ffffff" 5025 + } 5026 + ] 5027 + }, 5028 + "_style": [ 5029 + { 5030 + "_lhs": "width", 5031 + "_rhs": "2.82784%" 5032 + }, 5033 + { 5034 + "_lhs": "height", 5035 + "_rhs": "1.07779%" 5036 + }, 5037 + { 5038 + "_lhs": "left", 5039 + "_rhs": "91.9084%" 5040 + }, 5041 + { 5042 + "_lhs": "top", 5043 + "_rhs": "97.4227%" 5044 + } 5045 + ] 5046 + } 5047 + ], 5048 + [ 5049 + { 5050 + "_did": "10f6b3b7a52b7f1e6f406f1476ef1027eecb250217725bba2b74decbdeb511c0", 5051 + "_title": "Path", 5052 + "_coords": { 5053 + "_x": 596, 5054 + "_y": 2080, 5055 + "_width": 19, 5056 + "_height": 22 5057 + }, 5058 + "_content": null, 5059 + "_css": { 5060 + ".Path": [ 5061 + { 5062 + "_lhs": "width", 5063 + "_rhs": "19.8px" 5064 + }, 5065 + { 5066 + "_lhs": "height", 5067 + "_rhs": "22px" 5068 + }, 5069 + { 5070 + "_lhs": "background-color", 5071 + "_rhs": "#ffffff" 5072 + } 5073 + ] 5074 + }, 5075 + "_style": [ 5076 + { 5077 + "_lhs": "width", 5078 + "_rhs": "2.82784%" 5079 + }, 5080 + { 5081 + "_lhs": "height", 5082 + "_rhs": "1.03093%" 5083 + }, 5084 + { 5085 + "_lhs": "left", 5086 + "_rhs": "85.263%" 5087 + }, 5088 + { 5089 + "_lhs": "top", 5090 + "_rhs": "97.4695%" 5091 + } 5092 + ] 5093 + } 5094 + ], 5095 + [ 5096 + { 5097 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 5098 + "_title": "Team page - tablet sample", 5099 + "_coords": { 5100 + "_x": 0, 5101 + "_y": 0, 5102 + "_width": 700, 5103 + "_height": 2134 5104 + }, 5105 + "_content": null, 5106 + "_css": { 5107 + ".Team-page---tablet-sample": [ 5108 + { 5109 + "_lhs": "width", 5110 + "_rhs": "700px" 5111 + }, 5112 + { 5113 + "_lhs": "height", 5114 + "_rhs": "2134px" 5115 + }, 5116 + { 5117 + "_lhs": "background-color", 5118 + "_rhs": "#ffffff" 5119 + } 5120 + ] 5121 + }, 5122 + "_style": [ 5123 + { 5124 + "_lhs": "width", 5125 + "_rhs": "4.24176%" 5126 + }, 5127 + { 5128 + "_lhs": "height", 5129 + "_rhs": "1.54639%" 5130 + }, 5131 + { 5132 + "_lhs": "left", 5133 + "_rhs": "69.2857%" 5134 + }, 5135 + { 5136 + "_lhs": "top", 5137 + "_rhs": "97.0478%" 5138 + } 5139 + ] 5140 + }, 5141 + { 5142 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 5143 + "_title": "Rectangle", 5144 + "_coords": { 5145 + "_x": 0, 5146 + "_y": 1844, 5147 + "_width": 700, 5148 + "_height": 290 5149 + }, 5150 + "_content": null, 5151 + "_css": { 5152 + ".Rectangle": [ 5153 + { 5154 + "_lhs": "width", 5155 + "_rhs": "700px" 5156 + }, 5157 + { 5158 + "_lhs": "height", 5159 + "_rhs": "290px" 5160 + }, 5161 + { 5162 + "_lhs": "background-color", 5163 + "_rhs": "#2d2926" 5164 + } 5165 + ] 5166 + }, 5167 + "_style": [ 5168 + { 5169 + "_lhs": "width", 5170 + "_rhs": "4.24176%" 5171 + }, 5172 + { 5173 + "_lhs": "height", 5174 + "_rhs": "1.54639%" 5175 + }, 5176 + { 5177 + "_lhs": "left", 5178 + "_rhs": "69.2857%" 5179 + }, 5180 + { 5181 + "_lhs": "top", 5182 + "_rhs": "97.0478%" 5183 + } 5184 + ] 5185 + }, 5186 + { 5187 + "_did": "b6cf2ad29dc5c65254b2e5527a6235bd8b1bc9d4acfbf93721dc6492860c647e", 5188 + "_title": "Path", 5189 + "_coords": { 5190 + "_x": 485, 5191 + "_y": 2071, 5192 + "_width": 29, 5193 + "_height": 33 5194 + }, 5195 + "_content": null, 5196 + "_css": { 5197 + ".Path": [ 5198 + { 5199 + "_lhs": "width", 5200 + "_rhs": "29.7px" 5201 + }, 5202 + { 5203 + "_lhs": "height", 5204 + "_rhs": "33px" 5205 + }, 5206 + { 5207 + "_lhs": "background-color", 5208 + "_rhs": "#ffffff" 5209 + } 5210 + ] 5211 + }, 5212 + "_style": [ 5213 + { 5214 + "_lhs": "width", 5215 + "_rhs": "4.24176%" 5216 + }, 5217 + { 5218 + "_lhs": "height", 5219 + "_rhs": "1.54639%" 5220 + }, 5221 + { 5222 + "_lhs": "left", 5223 + "_rhs": "69.2857%" 5224 + }, 5225 + { 5226 + "_lhs": "top", 5227 + "_rhs": "97.0478%" 5228 + } 5229 + ] 5230 + } 5231 + ], 5232 + [ 5233 + { 5234 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 5235 + "_title": "Team page - tablet sample", 5236 + "_coords": { 5237 + "_x": 0, 5238 + "_y": 0, 5239 + "_width": 700, 5240 + "_height": 2134 5241 + }, 5242 + "_content": null, 5243 + "_css": { 5244 + ".Team-page---tablet-sample": [ 5245 + { 5246 + "_lhs": "width", 5247 + "_rhs": "700px" 5248 + }, 5249 + { 5250 + "_lhs": "height", 5251 + "_rhs": "2134px" 5252 + }, 5253 + { 5254 + "_lhs": "background-color", 5255 + "_rhs": "#ffffff" 5256 + } 5257 + ] 5258 + }, 5259 + "_style": [ 5260 + { 5261 + "_lhs": "width", 5262 + "_rhs": "3.25201%" 5263 + }, 5264 + { 5265 + "_lhs": "height", 5266 + "_rhs": "1.59325%" 5267 + }, 5268 + { 5269 + "_lhs": "left", 5270 + "_rhs": "77.2037%" 5271 + }, 5272 + { 5273 + "_lhs": "top", 5274 + "_rhs": "97.4227%" 5275 + } 5276 + ] 5277 + }, 5278 + { 5279 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 5280 + "_title": "Rectangle", 5281 + "_coords": { 5282 + "_x": 0, 5283 + "_y": 1844, 5284 + "_width": 700, 5285 + "_height": 290 5286 + }, 5287 + "_content": null, 5288 + "_css": { 5289 + ".Rectangle": [ 5290 + { 5291 + "_lhs": "width", 5292 + "_rhs": "700px" 5293 + }, 5294 + { 5295 + "_lhs": "height", 5296 + "_rhs": "290px" 5297 + }, 5298 + { 5299 + "_lhs": "background-color", 5300 + "_rhs": "#2d2926" 5301 + } 5302 + ] 5303 + }, 5304 + "_style": [ 5305 + { 5306 + "_lhs": "width", 5307 + "_rhs": "3.25201%" 5308 + }, 5309 + { 5310 + "_lhs": "height", 5311 + "_rhs": "1.59325%" 5312 + }, 5313 + { 5314 + "_lhs": "left", 5315 + "_rhs": "77.2037%" 5316 + }, 5317 + { 5318 + "_lhs": "top", 5319 + "_rhs": "97.4227%" 5320 + } 5321 + ] 5322 + }, 5323 + { 5324 + "_did": "8da1904e620a933092b58602613f561f7cce7ff453c5e55dda9f706b6582490f", 5325 + "_title": "Shape", 5326 + "_coords": { 5327 + "_x": 540, 5328 + "_y": 2079, 5329 + "_width": 22, 5330 + "_height": 34 5331 + }, 5332 + "_content": null, 5333 + "_css": { 5334 + ".Shape": [ 5335 + { 5336 + "_lhs": "width", 5337 + "_rhs": "22.8px" 5338 + }, 5339 + { 5340 + "_lhs": "height", 5341 + "_rhs": "34px" 5342 + }, 5343 + { 5344 + "_lhs": "background-color", 5345 + "_rhs": "#ffffff" 5346 + } 5347 + ] 5348 + }, 5349 + "_style": [ 5350 + { 5351 + "_lhs": "width", 5352 + "_rhs": "3.25201%" 5353 + }, 5354 + { 5355 + "_lhs": "height", 5356 + "_rhs": "1.59325%" 5357 + }, 5358 + { 5359 + "_lhs": "left", 5360 + "_rhs": "77.2037%" 5361 + }, 5362 + { 5363 + "_lhs": "top", 5364 + "_rhs": "97.4227%" 5365 + } 5366 + ] 5367 + } 5368 + ], 5369 + [ 5370 + { 5371 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 5372 + "_title": "Team page - tablet sample", 5373 + "_coords": { 5374 + "_x": 0, 5375 + "_y": 0, 5376 + "_width": 700, 5377 + "_height": 2134 5378 + }, 5379 + "_content": null, 5380 + "_css": { 5381 + ".Team-page---tablet-sample": [ 5382 + { 5383 + "_lhs": "width", 5384 + "_rhs": "700px" 5385 + }, 5386 + { 5387 + "_lhs": "height", 5388 + "_rhs": "2134px" 5389 + }, 5390 + { 5391 + "_lhs": "background-color", 5392 + "_rhs": "#ffffff" 5393 + } 5394 + ] 5395 + }, 5396 + "_style": [ 5397 + { 5398 + "_lhs": "width", 5399 + "_rhs": "1.97949%" 5400 + }, 5401 + { 5402 + "_lhs": "height", 5403 + "_rhs": "1.40581%" 5404 + }, 5405 + { 5406 + "_lhs": "left", 5407 + "_rhs": "94.8777%" 5408 + }, 5409 + { 5410 + "_lhs": "top", 5411 + "_rhs": "97.0947%" 5412 + } 5413 + ] 5414 + }, 5415 + { 5416 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 5417 + "_title": "Rectangle", 5418 + "_coords": { 5419 + "_x": 0, 5420 + "_y": 1844, 5421 + "_width": 700, 5422 + "_height": 290 5423 + }, 5424 + "_content": null, 5425 + "_css": { 5426 + ".Rectangle": [ 5427 + { 5428 + "_lhs": "width", 5429 + "_rhs": "700px" 5430 + }, 5431 + { 5432 + "_lhs": "height", 5433 + "_rhs": "290px" 5434 + }, 5435 + { 5436 + "_lhs": "background-color", 5437 + "_rhs": "#2d2926" 5438 + } 5439 + ] 5440 + }, 5441 + "_style": [ 5442 + { 5443 + "_lhs": "width", 5444 + "_rhs": "1.97949%" 5445 + }, 5446 + { 5447 + "_lhs": "height", 5448 + "_rhs": "1.40581%" 5449 + }, 5450 + { 5451 + "_lhs": "left", 5452 + "_rhs": "94.8777%" 5453 + }, 5454 + { 5455 + "_lhs": "top", 5456 + "_rhs": "97.0947%" 5457 + } 5458 + ] 5459 + }, 5460 + { 5461 + "_did": "ec1100d506a982c56324ef91b027c9f0113d59a55b82b95dead5bac1e1e22233", 5462 + "_title": "Path", 5463 + "_coords": { 5464 + "_x": 664, 5465 + "_y": 2072, 5466 + "_width": 13, 5467 + "_height": 30 5468 + }, 5469 + "_content": null, 5470 + "_css": { 5471 + ".Path": [ 5472 + { 5473 + "_lhs": "width", 5474 + "_rhs": "13.9px" 5475 + }, 5476 + { 5477 + "_lhs": "height", 5478 + "_rhs": "30px" 5479 + }, 5480 + { 5481 + "_lhs": "background-color", 5482 + "_rhs": "#ffffff" 5483 + } 5484 + ] 5485 + }, 5486 + "_style": [ 5487 + { 5488 + "_lhs": "width", 5489 + "_rhs": "1.97949%" 5490 + }, 5491 + { 5492 + "_lhs": "height", 5493 + "_rhs": "1.40581%" 5494 + }, 5495 + { 5496 + "_lhs": "left", 5497 + "_rhs": "94.8777%" 5498 + }, 5499 + { 5500 + "_lhs": "top", 5501 + "_rhs": "97.0947%" 5502 + } 5503 + ] 5504 + } 5505 + ], 5506 + [ 5507 + { 5508 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 5509 + "_title": "Team page - tablet sample", 5510 + "_coords": { 5511 + "_x": 0, 5512 + "_y": 0, 5513 + "_width": 700, 5514 + "_height": 2134 5515 + }, 5516 + "_content": null, 5517 + "_css": { 5518 + ".Team-page---tablet-sample": [ 5519 + { 5520 + "_lhs": "width", 5521 + "_rhs": "700px" 5522 + }, 5523 + { 5524 + "_lhs": "height", 5525 + "_rhs": "2134px" 5526 + }, 5527 + { 5528 + "_lhs": "background-color", 5529 + "_rhs": "#ffffff" 5530 + } 5531 + ] 5532 + }, 5533 + "_style": [ 5534 + { 5535 + "_lhs": "width", 5536 + "_rhs": "54.7143%" 5537 + }, 5538 + { 5539 + "_lhs": "height", 5540 + "_rhs": "1.49953%" 5541 + }, 5542 + { 5543 + "_lhs": "left", 5544 + "_rhs": "4.42857%" 5545 + }, 5546 + { 5547 + "_lhs": "top", 5548 + "_rhs": "87.4414%" 5549 + } 5550 + ] 5551 + }, 5552 + { 5553 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 5554 + "_title": "Rectangle", 5555 + "_coords": { 5556 + "_x": 0, 5557 + "_y": 1844, 5558 + "_width": 700, 5559 + "_height": 290 5560 + }, 5561 + "_content": null, 5562 + "_css": { 5563 + ".Rectangle": [ 5564 + { 5565 + "_lhs": "width", 5566 + "_rhs": "700px" 5567 + }, 5568 + { 5569 + "_lhs": "height", 5570 + "_rhs": "290px" 5571 + }, 5572 + { 5573 + "_lhs": "background-color", 5574 + "_rhs": "#2d2926" 5575 + } 5576 + ] 5577 + }, 5578 + "_style": [ 5579 + { 5580 + "_lhs": "width", 5581 + "_rhs": "54.7143%" 5582 + }, 5583 + { 5584 + "_lhs": "height", 5585 + "_rhs": "1.49953%" 5586 + }, 5587 + { 5588 + "_lhs": "left", 5589 + "_rhs": "4.42857%" 5590 + }, 5591 + { 5592 + "_lhs": "top", 5593 + "_rhs": "87.4414%" 5594 + } 5595 + ] 5596 + }, 5597 + { 5598 + "_did": "c2f21e09881c9cda37b4594a735593963e15542d1c02c8d586a2ccf61af94df0", 5599 + "_title": "Your contacts at Cog", 5600 + "_coords": { 5601 + "_x": 31, 5602 + "_y": 1866, 5603 + "_width": 383, 5604 + "_height": 32 5605 + }, 5606 + "_content": "Your contacts at Cognizant:", 5607 + "_css": { 5608 + ".Your-contacts-at-Cog": [ 5609 + { 5610 + "_lhs": "width", 5611 + "_rhs": "383px" 5612 + }, 5613 + { 5614 + "_lhs": "height", 5615 + "_rhs": "32px" 5616 + }, 5617 + { 5618 + "_lhs": "font-family", 5619 + "_rhs": "ProximaNova-It" 5620 + }, 5621 + { 5622 + "_lhs": "font-size", 5623 + "_rhs": "22px" 5624 + }, 5625 + { 5626 + "_lhs": "font-weight", 5627 + "_rhs": "300" 5628 + }, 5629 + { 5630 + "_lhs": "font-style", 5631 + "_rhs": "normal" 5632 + }, 5633 + { 5634 + "_lhs": "font-stretch", 5635 + "_rhs": "normal" 5636 + }, 5637 + { 5638 + "_lhs": "line-height", 5639 + "_rhs": "1.45" 5640 + }, 5641 + { 5642 + "_lhs": "letter-spacing", 5643 + "_rhs": "normal" 5644 + }, 5645 + { 5646 + "_lhs": "color", 5647 + "_rhs": "#edeeee" 5648 + } 5649 + ] 5650 + }, 5651 + "_style": [ 5652 + { 5653 + "_lhs": "width", 5654 + "_rhs": "54.7143%" 5655 + }, 5656 + { 5657 + "_lhs": "height", 5658 + "_rhs": "1.49953%" 5659 + }, 5660 + { 5661 + "_lhs": "left", 5662 + "_rhs": "4.42857%" 5663 + }, 5664 + { 5665 + "_lhs": "top", 5666 + "_rhs": "87.4414%" 5667 + } 5668 + ] 5669 + } 5670 + ], 5671 + [ 5672 + { 5673 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 5674 + "_title": "Team page - tablet sample", 5675 + "_coords": { 5676 + "_x": 0, 5677 + "_y": 0, 5678 + "_width": 700, 5679 + "_height": 2134 5680 + }, 5681 + "_content": null, 5682 + "_css": { 5683 + ".Team-page---tablet-sample": [ 5684 + { 5685 + "_lhs": "width", 5686 + "_rhs": "700px" 5687 + }, 5688 + { 5689 + "_lhs": "height", 5690 + "_rhs": "2134px" 5691 + }, 5692 + { 5693 + "_lhs": "background-color", 5694 + "_rhs": "#ffffff" 5695 + } 5696 + ] 5697 + }, 5698 + "_style": [ 5699 + { 5700 + "_lhs": "width", 5701 + "_rhs": "54.7143%" 5702 + }, 5703 + { 5704 + "_lhs": "height", 5705 + "_rhs": "6.70103%" 5706 + }, 5707 + { 5708 + "_lhs": "left", 5709 + "_rhs": "4.42857%" 5710 + }, 5711 + { 5712 + "_lhs": "top", 5713 + "_rhs": "89.5033%" 5714 + } 5715 + ] 5716 + }, 5717 + { 5718 + "_did": "352fefa86e720372812574f51b713859f5aab770661f874510d6d3d5261bb6b3", 5719 + "_title": "Rectangle", 5720 + "_coords": { 5721 + "_x": 0, 5722 + "_y": 1844, 5723 + "_width": 700, 5724 + "_height": 290 5725 + }, 5726 + "_content": null, 5727 + "_css": { 5728 + ".Rectangle": [ 5729 + { 5730 + "_lhs": "width", 5731 + "_rhs": "700px" 5732 + }, 5733 + { 5734 + "_lhs": "height", 5735 + "_rhs": "290px" 5736 + }, 5737 + { 5738 + "_lhs": "background-color", 5739 + "_rhs": "#2d2926" 5740 + } 5741 + ] 5742 + }, 5743 + "_style": [ 5744 + { 5745 + "_lhs": "width", 5746 + "_rhs": "54.7143%" 5747 + }, 5748 + { 5749 + "_lhs": "height", 5750 + "_rhs": "6.70103%" 5751 + }, 5752 + { 5753 + "_lhs": "left", 5754 + "_rhs": "4.42857%" 5755 + }, 5756 + { 5757 + "_lhs": "top", 5758 + "_rhs": "89.5033%" 5759 + } 5760 + ] 5761 + }, 5762 + { 5763 + "_did": "ff39378303a417af4e3b18e7a3a511753744f0a34e541882b41fc3d9d3fb89fa", 5764 + "_title": "Ritika Chaudhary | G", 5765 + "_coords": { 5766 + "_x": 31, 5767 + "_y": 1910, 5768 + "_width": 383, 5769 + "_height": 143 5770 + }, 5771 + "_content": "Ritika Chaudhary | Global Client Partner\nCognizant Life Sciences\n+44 (0)07471 325 032\nritika.chaudhary@cognizant.com", 5772 + "_css": { 5773 + ".Ritika-Chaudhary-G": [ 5774 + { 5775 + "_lhs": "width", 5776 + "_rhs": "383px" 5777 + }, 5778 + { 5779 + "_lhs": "height", 5780 + "_rhs": "143px" 5781 + }, 5782 + { 5783 + "_lhs": "font-family", 5784 + "_rhs": "ProximaNova" 5785 + }, 5786 + { 5787 + "_lhs": "font-size", 5788 + "_rhs": "18px" 5789 + }, 5790 + { 5791 + "_lhs": "font-weight", 5792 + "_rhs": "300" 5793 + }, 5794 + { 5795 + "_lhs": "font-style", 5796 + "_rhs": "normal" 5797 + }, 5798 + { 5799 + "_lhs": "font-stretch", 5800 + "_rhs": "normal" 5801 + }, 5802 + { 5803 + "_lhs": "line-height", 5804 + "_rhs": "1.78" 5805 + }, 5806 + { 5807 + "_lhs": "letter-spacing", 5808 + "_rhs": "normal" 5809 + }, 5810 + { 5811 + "_lhs": "color", 5812 + "_rhs": "#ffffff" 5813 + }, 5814 + { 5815 + "_lhs": "}.Ritika-Chaudhary-G .text-style-1 { font-weight", 5816 + "_rhs": "bold" 5817 + }, 5818 + { 5819 + "_lhs": "}.Ritika-Chaudhary-G .text-style-2 { font-weight", 5820 + "_rhs": "normal" 5821 + }, 5822 + { 5823 + "_lhs": "color", 5824 + "_rhs": "#71c5e8" 5825 + } 5826 + ] 5827 + }, 5828 + "_style": [ 5829 + { 5830 + "_lhs": "width", 5831 + "_rhs": "54.7143%" 5832 + }, 5833 + { 5834 + "_lhs": "height", 5835 + "_rhs": "6.70103%" 5836 + }, 5837 + { 5838 + "_lhs": "left", 5839 + "_rhs": "4.42857%" 5840 + }, 5841 + { 5842 + "_lhs": "top", 5843 + "_rhs": "89.5033%" 5844 + } 5845 + ] 5846 + } 5847 + ], 5848 + [ 5849 + { 5850 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 5851 + "_title": "Team page - tablet sample", 5852 + "_coords": { 5853 + "_x": 0, 5854 + "_y": 0, 5855 + "_width": 700, 5856 + "_height": 2134 5857 + }, 5858 + "_content": null, 5859 + "_css": { 5860 + ".Team-page---tablet-sample": [ 5861 + { 5862 + "_lhs": "width", 5863 + "_rhs": "700px" 5864 + }, 5865 + { 5866 + "_lhs": "height", 5867 + "_rhs": "2134px" 5868 + }, 5869 + { 5870 + "_lhs": "background-color", 5871 + "_rhs": "#ffffff" 5872 + } 5873 + ] 5874 + }, 5875 + "_style": [ 5876 + { 5877 + "_lhs": "width", 5878 + "_rhs": "45.8571%" 5879 + }, 5880 + { 5881 + "_lhs": "height", 5882 + "_rhs": "19.5408%" 5883 + }, 5884 + { 5885 + "_lhs": "left", 5886 + "_rhs": "51%" 5887 + }, 5888 + { 5889 + "_lhs": "top", 5890 + "_rhs": "38.6129%" 5891 + } 5892 + ] 5893 + }, 5894 + { 5895 + "_did": "18d3ca1453ef6d2922431880e5a16f03676822773056e60d2003eacc01884085", 5896 + "_title": "Rectangle", 5897 + "_coords": { 5898 + "_x": 357, 5899 + "_y": 824, 5900 + "_width": 321, 5901 + "_height": 417 5902 + }, 5903 + "_content": null, 5904 + "_css": { 5905 + ".Rectangle": [ 5906 + { 5907 + "_lhs": "width", 5908 + "_rhs": "321px" 5909 + }, 5910 + { 5911 + "_lhs": "height", 5912 + "_rhs": "417px" 5913 + }, 5914 + { 5915 + "_lhs": "background-color", 5916 + "_rhs": "#ffffff" 5917 + } 5918 + ] 5919 + }, 5920 + "_style": [ 5921 + { 5922 + "_lhs": "width", 5923 + "_rhs": "45.8571%" 5924 + }, 5925 + { 5926 + "_lhs": "height", 5927 + "_rhs": "19.5408%" 5928 + }, 5929 + { 5930 + "_lhs": "left", 5931 + "_rhs": "51%" 5932 + }, 5933 + { 5934 + "_lhs": "top", 5935 + "_rhs": "38.6129%" 5936 + } 5937 + ] 5938 + } 5939 + ], 5940 + [ 5941 + { 5942 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 5943 + "_title": "Team page - tablet sample", 5944 + "_coords": { 5945 + "_x": 0, 5946 + "_y": 0, 5947 + "_width": 700, 5948 + "_height": 2134 5949 + }, 5950 + "_content": null, 5951 + "_css": { 5952 + ".Team-page---tablet-sample": [ 5953 + { 5954 + "_lhs": "width", 5955 + "_rhs": "700px" 5956 + }, 5957 + { 5958 + "_lhs": "height", 5959 + "_rhs": "2134px" 5960 + }, 5961 + { 5962 + "_lhs": "background-color", 5963 + "_rhs": "#ffffff" 5964 + } 5965 + ] 5966 + }, 5967 + "_style": [ 5968 + { 5969 + "_lhs": "width", 5970 + "_rhs": "42.8571%" 5971 + }, 5972 + { 5973 + "_lhs": "height", 5974 + "_rhs": "5.48266%" 5975 + }, 5976 + { 5977 + "_lhs": "left", 5978 + "_rhs": "52.5714%" 5979 + }, 5980 + { 5981 + "_lhs": "top", 5982 + "_rhs": "52.1556%" 5983 + } 5984 + ] 5985 + }, 5986 + { 5987 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 5988 + "_title": "Rectangle", 5989 + "_coords": { 5990 + "_x": 0, 5991 + "_y": 827, 5992 + "_width": 415, 5993 + "_height": 413 5994 + }, 5995 + "_content": null, 5996 + "_css": { 5997 + ".Rectangle": [ 5998 + { 5999 + "_lhs": "width", 6000 + "_rhs": "415px" 6001 + }, 6002 + { 6003 + "_lhs": "height", 6004 + "_rhs": "413px" 6005 + }, 6006 + { 6007 + "_lhs": "background-color", 6008 + "_rhs": "#ffffff" 6009 + } 6010 + ] 6011 + }, 6012 + "_style": [ 6013 + { 6014 + "_lhs": "width", 6015 + "_rhs": "42.8571%" 6016 + }, 6017 + { 6018 + "_lhs": "height", 6019 + "_rhs": "5.48266%" 6020 + }, 6021 + { 6022 + "_lhs": "left", 6023 + "_rhs": "52.5714%" 6024 + }, 6025 + { 6026 + "_lhs": "top", 6027 + "_rhs": "52.1556%" 6028 + } 6029 + ] 6030 + }, 6031 + { 6032 + "_did": "18d3ca1453ef6d2922431880e5a16f03676822773056e60d2003eacc01884085", 6033 + "_title": "Rectangle", 6034 + "_coords": { 6035 + "_x": 357, 6036 + "_y": 824, 6037 + "_width": 321, 6038 + "_height": 417 6039 + }, 6040 + "_content": null, 6041 + "_css": { 6042 + ".Rectangle": [ 6043 + { 6044 + "_lhs": "width", 6045 + "_rhs": "321px" 6046 + }, 6047 + { 6048 + "_lhs": "height", 6049 + "_rhs": "417px" 6050 + }, 6051 + { 6052 + "_lhs": "background-color", 6053 + "_rhs": "#ffffff" 6054 + } 6055 + ] 6056 + }, 6057 + "_style": [ 6058 + { 6059 + "_lhs": "width", 6060 + "_rhs": "42.8571%" 6061 + }, 6062 + { 6063 + "_lhs": "height", 6064 + "_rhs": "5.48266%" 6065 + }, 6066 + { 6067 + "_lhs": "left", 6068 + "_rhs": "52.5714%" 6069 + }, 6070 + { 6071 + "_lhs": "top", 6072 + "_rhs": "52.1556%" 6073 + } 6074 + ] 6075 + }, 6076 + { 6077 + "_did": "dd5ac6ce28df5dce6a904c53605a87d2acb96e58b8682012d259c47724cbc154", 6078 + "_title": "Hedy Lamarr | Invent", 6079 + "_coords": { 6080 + "_x": 368, 6081 + "_y": 1113, 6082 + "_width": 300, 6083 + "_height": 117 6084 + }, 6085 + "_content": "Hedy Lamarr | Inventor\nFrequency Hopping\n+44 (0)7012 876 543\nhedy.lamarr@bluetooth.com", 6086 + "_css": { 6087 + ".Hedy-Lamarr-Invent": [ 6088 + { 6089 + "_lhs": "width", 6090 + "_rhs": "300px" 6091 + }, 6092 + { 6093 + "_lhs": "height", 6094 + "_rhs": "117px" 6095 + }, 6096 + { 6097 + "_lhs": "font-family", 6098 + "_rhs": "ProximaNova" 6099 + }, 6100 + { 6101 + "_lhs": "font-size", 6102 + "_rhs": "18px" 6103 + }, 6104 + { 6105 + "_lhs": "font-weight", 6106 + "_rhs": "300" 6107 + }, 6108 + { 6109 + "_lhs": "font-style", 6110 + "_rhs": "normal" 6111 + }, 6112 + { 6113 + "_lhs": "font-stretch", 6114 + "_rhs": "normal" 6115 + }, 6116 + { 6117 + "_lhs": "line-height", 6118 + "_rhs": "1.44" 6119 + }, 6120 + { 6121 + "_lhs": "letter-spacing", 6122 + "_rhs": "normal" 6123 + }, 6124 + { 6125 + "_lhs": "text-align", 6126 + "_rhs": "center" 6127 + }, 6128 + { 6129 + "_lhs": "color", 6130 + "_rhs": "#2d2926" 6131 + }, 6132 + { 6133 + "_lhs": "}.Hedy-Lamarr-Invent .text-style-1 { font-weight", 6134 + "_rhs": "bold" 6135 + }, 6136 + { 6137 + "_lhs": "}.Hedy-Lamarr-Invent .text-style-2 { font-weight", 6138 + "_rhs": "normal" 6139 + }, 6140 + { 6141 + "_lhs": "color", 6142 + "_rhs": "#4298b5" 6143 + } 6144 + ] 6145 + }, 6146 + "_style": [ 6147 + { 6148 + "_lhs": "width", 6149 + "_rhs": "42.8571%" 6150 + }, 6151 + { 6152 + "_lhs": "height", 6153 + "_rhs": "5.48266%" 6154 + }, 6155 + { 6156 + "_lhs": "left", 6157 + "_rhs": "52.5714%" 6158 + }, 6159 + { 6160 + "_lhs": "top", 6161 + "_rhs": "52.1556%" 6162 + } 6163 + ] 6164 + } 6165 + ], 6166 + [ 6167 + { 6168 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 6169 + "_title": "Team page - tablet sample", 6170 + "_coords": { 6171 + "_x": 0, 6172 + "_y": 0, 6173 + "_width": 700, 6174 + "_height": 2134 6175 + }, 6176 + "_content": null, 6177 + "_css": { 6178 + ".Team-page---tablet-sample": [ 6179 + { 6180 + "_lhs": "width", 6181 + "_rhs": "700px" 6182 + }, 6183 + { 6184 + "_lhs": "height", 6185 + "_rhs": "2134px" 6186 + }, 6187 + { 6188 + "_lhs": "background-color", 6189 + "_rhs": "#ffffff" 6190 + } 6191 + ] 6192 + }, 6193 + "_style": [ 6194 + { 6195 + "_lhs": "width", 6196 + "_rhs": "37.8571%" 6197 + }, 6198 + { 6199 + "_lhs": "height", 6200 + "_rhs": "12.5117%" 6201 + }, 6202 + { 6203 + "_lhs": "left", 6204 + "_rhs": "54.4286%" 6205 + }, 6206 + { 6207 + "_lhs": "top", 6208 + "_rhs": "38.941%" 6209 + } 6210 + ] 6211 + }, 6212 + { 6213 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 6214 + "_title": "Rectangle", 6215 + "_coords": { 6216 + "_x": 0, 6217 + "_y": 827, 6218 + "_width": 415, 6219 + "_height": 413 6220 + }, 6221 + "_content": null, 6222 + "_css": { 6223 + ".Rectangle": [ 6224 + { 6225 + "_lhs": "width", 6226 + "_rhs": "415px" 6227 + }, 6228 + { 6229 + "_lhs": "height", 6230 + "_rhs": "413px" 6231 + }, 6232 + { 6233 + "_lhs": "background-color", 6234 + "_rhs": "#ffffff" 6235 + } 6236 + ] 6237 + }, 6238 + "_style": [ 6239 + { 6240 + "_lhs": "width", 6241 + "_rhs": "37.8571%" 6242 + }, 6243 + { 6244 + "_lhs": "height", 6245 + "_rhs": "12.5117%" 6246 + }, 6247 + { 6248 + "_lhs": "left", 6249 + "_rhs": "54.4286%" 6250 + }, 6251 + { 6252 + "_lhs": "top", 6253 + "_rhs": "38.941%" 6254 + } 6255 + ] 6256 + }, 6257 + { 6258 + "_did": "18d3ca1453ef6d2922431880e5a16f03676822773056e60d2003eacc01884085", 6259 + "_title": "Rectangle", 6260 + "_coords": { 6261 + "_x": 357, 6262 + "_y": 824, 6263 + "_width": 321, 6264 + "_height": 417 6265 + }, 6266 + "_content": null, 6267 + "_css": { 6268 + ".Rectangle": [ 6269 + { 6270 + "_lhs": "width", 6271 + "_rhs": "321px" 6272 + }, 6273 + { 6274 + "_lhs": "height", 6275 + "_rhs": "417px" 6276 + }, 6277 + { 6278 + "_lhs": "background-color", 6279 + "_rhs": "#ffffff" 6280 + } 6281 + ] 6282 + }, 6283 + "_style": [ 6284 + { 6285 + "_lhs": "width", 6286 + "_rhs": "37.8571%" 6287 + }, 6288 + { 6289 + "_lhs": "height", 6290 + "_rhs": "12.5117%" 6291 + }, 6292 + { 6293 + "_lhs": "left", 6294 + "_rhs": "54.4286%" 6295 + }, 6296 + { 6297 + "_lhs": "top", 6298 + "_rhs": "38.941%" 6299 + } 6300 + ] 6301 + }, 6302 + { 6303 + "_did": "2ae0a77c58c33852ad64df56b47b83bc8a4a90ea525d3e3755bdf9b4fcf26c64", 6304 + "_title": "Oval", 6305 + "_coords": { 6306 + "_x": 381, 6307 + "_y": 831, 6308 + "_width": 265, 6309 + "_height": 267 6310 + }, 6311 + "_content": null, 6312 + "_css": { 6313 + ".Oval": [ 6314 + { 6315 + "_lhs": "width", 6316 + "_rhs": "265px" 6317 + }, 6318 + { 6319 + "_lhs": "height", 6320 + "_rhs": "267px" 6321 + }, 6322 + { 6323 + "_lhs": "background-color", 6324 + "_rhs": "#d8d8d8" 6325 + } 6326 + ] 6327 + }, 6328 + "_style": [ 6329 + { 6330 + "_lhs": "width", 6331 + "_rhs": "37.8571%" 6332 + }, 6333 + { 6334 + "_lhs": "height", 6335 + "_rhs": "12.5117%" 6336 + }, 6337 + { 6338 + "_lhs": "left", 6339 + "_rhs": "54.4286%" 6340 + }, 6341 + { 6342 + "_lhs": "top", 6343 + "_rhs": "38.941%" 6344 + } 6345 + ] 6346 + }, 6347 + { 6348 + "_did": "f4377588a2b0327b4eab9016085ba1b19b42e5bfca2c4bd7ad8c6153eae78ac3", 6349 + "_title": "Bitmap", 6350 + "_coords": { 6351 + "_x": 381, 6352 + "_y": 831, 6353 + "_width": 267, 6354 + "_height": 267 6355 + }, 6356 + "_content": null, 6357 + "_css": { 6358 + ".Bitmap": [ 6359 + { 6360 + "_lhs": "width", 6361 + "_rhs": "267px" 6362 + }, 6363 + { 6364 + "_lhs": "height", 6365 + "_rhs": "267px" 6366 + } 6367 + ] 6368 + }, 6369 + "_style": [ 6370 + { 6371 + "_lhs": "width", 6372 + "_rhs": "37.8571%" 6373 + }, 6374 + { 6375 + "_lhs": "height", 6376 + "_rhs": "12.5117%" 6377 + }, 6378 + { 6379 + "_lhs": "left", 6380 + "_rhs": "54.4286%" 6381 + }, 6382 + { 6383 + "_lhs": "top", 6384 + "_rhs": "38.941%" 6385 + } 6386 + ] 6387 + }, 6388 + { 6389 + "_did": "0935cbb740a6beade3af779b76a5d723dc28d745c2539a1c361016afd6d85f8f", 6390 + "_title": "Bitmap", 6391 + "_coords": { 6392 + "_x": 381, 6393 + "_y": 827, 6394 + "_width": 267, 6395 + "_height": 333 6396 + }, 6397 + "_content": null, 6398 + "_css": { 6399 + ".Bitmap": [ 6400 + { 6401 + "_lhs": "width", 6402 + "_rhs": "267px" 6403 + }, 6404 + { 6405 + "_lhs": "height", 6406 + "_rhs": "333px" 6407 + } 6408 + ] 6409 + }, 6410 + "_style": [ 6411 + { 6412 + "_lhs": "width", 6413 + "_rhs": "37.8571%" 6414 + }, 6415 + { 6416 + "_lhs": "height", 6417 + "_rhs": "12.5117%" 6418 + }, 6419 + { 6420 + "_lhs": "left", 6421 + "_rhs": "54.4286%" 6422 + }, 6423 + { 6424 + "_lhs": "top", 6425 + "_rhs": "38.941%" 6426 + } 6427 + ] 6428 + }, 6429 + { 6430 + "_did": "09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982", 6431 + "_title": "Bitmap", 6432 + "_coords": { 6433 + "_x": 0, 6434 + "_y": 827, 6435 + "_width": 415, 6436 + "_height": 270 6437 + }, 6438 + "_content": null, 6439 + "_css": { 6440 + ".Bitmap": [ 6441 + { 6442 + "_lhs": "width", 6443 + "_rhs": "415px" 6444 + }, 6445 + { 6446 + "_lhs": "height", 6447 + "_rhs": "270px" 6448 + } 6449 + ] 6450 + }, 6451 + "_style": [ 6452 + { 6453 + "_lhs": "width", 6454 + "_rhs": "37.8571%" 6455 + }, 6456 + { 6457 + "_lhs": "height", 6458 + "_rhs": "12.5117%" 6459 + }, 6460 + { 6461 + "_lhs": "left", 6462 + "_rhs": "54.4286%" 6463 + }, 6464 + { 6465 + "_lhs": "top", 6466 + "_rhs": "38.941%" 6467 + } 6468 + ] 6469 + } 6470 + ], 6471 + [ 6472 + { 6473 + "_did": "09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982", 6474 + "_title": "Bitmap", 6475 + "_coords": { 6476 + "_x": 0, 6477 + "_y": 827, 6478 + "_width": 415, 6479 + "_height": 270 6480 + }, 6481 + "_content": null, 6482 + "_css": { 6483 + ".Bitmap": [ 6484 + { 6485 + "_lhs": "width", 6486 + "_rhs": "415px" 6487 + }, 6488 + { 6489 + "_lhs": "height", 6490 + "_rhs": "270px" 6491 + } 6492 + ] 6493 + }, 6494 + "_style": [ 6495 + { 6496 + "_lhs": "width", 6497 + "_rhs": "38.1429%" 6498 + }, 6499 + { 6500 + "_lhs": "height", 6501 + "_rhs": "12.5117%" 6502 + }, 6503 + { 6504 + "_lhs": "left", 6505 + "_rhs": "54.4286%" 6506 + }, 6507 + { 6508 + "_lhs": "top", 6509 + "_rhs": "38.941%" 6510 + } 6511 + ] 6512 + }, 6513 + { 6514 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 6515 + "_title": "Team page - tablet sample", 6516 + "_coords": { 6517 + "_x": 0, 6518 + "_y": 0, 6519 + "_width": 700, 6520 + "_height": 2134 6521 + }, 6522 + "_content": null, 6523 + "_css": { 6524 + ".Team-page---tablet-sample": [ 6525 + { 6526 + "_lhs": "width", 6527 + "_rhs": "700px" 6528 + }, 6529 + { 6530 + "_lhs": "height", 6531 + "_rhs": "2134px" 6532 + }, 6533 + { 6534 + "_lhs": "background-color", 6535 + "_rhs": "#ffffff" 6536 + } 6537 + ] 6538 + }, 6539 + "_style": [ 6540 + { 6541 + "_lhs": "width", 6542 + "_rhs": "38.1429%" 6543 + }, 6544 + { 6545 + "_lhs": "height", 6546 + "_rhs": "12.5117%" 6547 + }, 6548 + { 6549 + "_lhs": "left", 6550 + "_rhs": "54.4286%" 6551 + }, 6552 + { 6553 + "_lhs": "top", 6554 + "_rhs": "38.941%" 6555 + } 6556 + ] 6557 + }, 6558 + { 6559 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 6560 + "_title": "Rectangle", 6561 + "_coords": { 6562 + "_x": 0, 6563 + "_y": 827, 6564 + "_width": 415, 6565 + "_height": 413 6566 + }, 6567 + "_content": null, 6568 + "_css": { 6569 + ".Rectangle": [ 6570 + { 6571 + "_lhs": "width", 6572 + "_rhs": "415px" 6573 + }, 6574 + { 6575 + "_lhs": "height", 6576 + "_rhs": "413px" 6577 + }, 6578 + { 6579 + "_lhs": "background-color", 6580 + "_rhs": "#ffffff" 6581 + } 6582 + ] 6583 + }, 6584 + "_style": [ 6585 + { 6586 + "_lhs": "width", 6587 + "_rhs": "38.1429%" 6588 + }, 6589 + { 6590 + "_lhs": "height", 6591 + "_rhs": "12.5117%" 6592 + }, 6593 + { 6594 + "_lhs": "left", 6595 + "_rhs": "54.4286%" 6596 + }, 6597 + { 6598 + "_lhs": "top", 6599 + "_rhs": "38.941%" 6600 + } 6601 + ] 6602 + }, 6603 + { 6604 + "_did": "18d3ca1453ef6d2922431880e5a16f03676822773056e60d2003eacc01884085", 6605 + "_title": "Rectangle", 6606 + "_coords": { 6607 + "_x": 357, 6608 + "_y": 824, 6609 + "_width": 321, 6610 + "_height": 417 6611 + }, 6612 + "_content": null, 6613 + "_css": { 6614 + ".Rectangle": [ 6615 + { 6616 + "_lhs": "width", 6617 + "_rhs": "321px" 6618 + }, 6619 + { 6620 + "_lhs": "height", 6621 + "_rhs": "417px" 6622 + }, 6623 + { 6624 + "_lhs": "background-color", 6625 + "_rhs": "#ffffff" 6626 + } 6627 + ] 6628 + }, 6629 + "_style": [ 6630 + { 6631 + "_lhs": "width", 6632 + "_rhs": "38.1429%" 6633 + }, 6634 + { 6635 + "_lhs": "height", 6636 + "_rhs": "12.5117%" 6637 + }, 6638 + { 6639 + "_lhs": "left", 6640 + "_rhs": "54.4286%" 6641 + }, 6642 + { 6643 + "_lhs": "top", 6644 + "_rhs": "38.941%" 6645 + } 6646 + ] 6647 + }, 6648 + { 6649 + "_did": "2ae0a77c58c33852ad64df56b47b83bc8a4a90ea525d3e3755bdf9b4fcf26c64", 6650 + "_title": "Oval", 6651 + "_coords": { 6652 + "_x": 381, 6653 + "_y": 831, 6654 + "_width": 265, 6655 + "_height": 267 6656 + }, 6657 + "_content": null, 6658 + "_css": { 6659 + ".Oval": [ 6660 + { 6661 + "_lhs": "width", 6662 + "_rhs": "265px" 6663 + }, 6664 + { 6665 + "_lhs": "height", 6666 + "_rhs": "267px" 6667 + }, 6668 + { 6669 + "_lhs": "background-color", 6670 + "_rhs": "#d8d8d8" 6671 + } 6672 + ] 6673 + }, 6674 + "_style": [ 6675 + { 6676 + "_lhs": "width", 6677 + "_rhs": "38.1429%" 6678 + }, 6679 + { 6680 + "_lhs": "height", 6681 + "_rhs": "12.5117%" 6682 + }, 6683 + { 6684 + "_lhs": "left", 6685 + "_rhs": "54.4286%" 6686 + }, 6687 + { 6688 + "_lhs": "top", 6689 + "_rhs": "38.941%" 6690 + } 6691 + ] 6692 + }, 6693 + { 6694 + "_did": "f4377588a2b0327b4eab9016085ba1b19b42e5bfca2c4bd7ad8c6153eae78ac3", 6695 + "_title": "Bitmap", 6696 + "_coords": { 6697 + "_x": 381, 6698 + "_y": 831, 6699 + "_width": 267, 6700 + "_height": 267 6701 + }, 6702 + "_content": null, 6703 + "_css": { 6704 + ".Bitmap": [ 6705 + { 6706 + "_lhs": "width", 6707 + "_rhs": "267px" 6708 + }, 6709 + { 6710 + "_lhs": "height", 6711 + "_rhs": "267px" 6712 + } 6713 + ] 6714 + }, 6715 + "_style": [ 6716 + { 6717 + "_lhs": "width", 6718 + "_rhs": "38.1429%" 6719 + }, 6720 + { 6721 + "_lhs": "height", 6722 + "_rhs": "12.5117%" 6723 + }, 6724 + { 6725 + "_lhs": "left", 6726 + "_rhs": "54.4286%" 6727 + }, 6728 + { 6729 + "_lhs": "top", 6730 + "_rhs": "38.941%" 6731 + } 6732 + ] 6733 + }, 6734 + { 6735 + "_did": "0935cbb740a6beade3af779b76a5d723dc28d745c2539a1c361016afd6d85f8f", 6736 + "_title": "Bitmap", 6737 + "_coords": { 6738 + "_x": 381, 6739 + "_y": 827, 6740 + "_width": 267, 6741 + "_height": 333 6742 + }, 6743 + "_content": null, 6744 + "_css": { 6745 + ".Bitmap": [ 6746 + { 6747 + "_lhs": "width", 6748 + "_rhs": "267px" 6749 + }, 6750 + { 6751 + "_lhs": "height", 6752 + "_rhs": "333px" 6753 + } 6754 + ] 6755 + }, 6756 + "_style": [ 6757 + { 6758 + "_lhs": "width", 6759 + "_rhs": "38.1429%" 6760 + }, 6761 + { 6762 + "_lhs": "height", 6763 + "_rhs": "12.5117%" 6764 + }, 6765 + { 6766 + "_lhs": "left", 6767 + "_rhs": "54.4286%" 6768 + }, 6769 + { 6770 + "_lhs": "top", 6771 + "_rhs": "38.941%" 6772 + } 6773 + ] 6774 + } 6775 + ], 6776 + [ 6777 + { 6778 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 6779 + "_title": "Team page - tablet sample", 6780 + "_coords": { 6781 + "_x": 0, 6782 + "_y": 0, 6783 + "_width": 700, 6784 + "_height": 2134 6785 + }, 6786 + "_content": null, 6787 + "_css": { 6788 + ".Team-page---tablet-sample": [ 6789 + { 6790 + "_lhs": "width", 6791 + "_rhs": "700px" 6792 + }, 6793 + { 6794 + "_lhs": "height", 6795 + "_rhs": "2134px" 6796 + }, 6797 + { 6798 + "_lhs": "background-color", 6799 + "_rhs": "#ffffff" 6800 + } 6801 + ] 6802 + }, 6803 + "_style": [ 6804 + { 6805 + "_lhs": "width", 6806 + "_rhs": "38.1429%" 6807 + }, 6808 + { 6809 + "_lhs": "height", 6810 + "_rhs": "15.6045%" 6811 + }, 6812 + { 6813 + "_lhs": "left", 6814 + "_rhs": "54.4286%" 6815 + }, 6816 + { 6817 + "_lhs": "top", 6818 + "_rhs": "38.7535%" 6819 + } 6820 + ] 6821 + }, 6822 + { 6823 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 6824 + "_title": "Rectangle", 6825 + "_coords": { 6826 + "_x": 0, 6827 + "_y": 827, 6828 + "_width": 415, 6829 + "_height": 413 6830 + }, 6831 + "_content": null, 6832 + "_css": { 6833 + ".Rectangle": [ 6834 + { 6835 + "_lhs": "width", 6836 + "_rhs": "415px" 6837 + }, 6838 + { 6839 + "_lhs": "height", 6840 + "_rhs": "413px" 6841 + }, 6842 + { 6843 + "_lhs": "background-color", 6844 + "_rhs": "#ffffff" 6845 + } 6846 + ] 6847 + }, 6848 + "_style": [ 6849 + { 6850 + "_lhs": "width", 6851 + "_rhs": "38.1429%" 6852 + }, 6853 + { 6854 + "_lhs": "height", 6855 + "_rhs": "15.6045%" 6856 + }, 6857 + { 6858 + "_lhs": "left", 6859 + "_rhs": "54.4286%" 6860 + }, 6861 + { 6862 + "_lhs": "top", 6863 + "_rhs": "38.7535%" 6864 + } 6865 + ] 6866 + }, 6867 + { 6868 + "_did": "18d3ca1453ef6d2922431880e5a16f03676822773056e60d2003eacc01884085", 6869 + "_title": "Rectangle", 6870 + "_coords": { 6871 + "_x": 357, 6872 + "_y": 824, 6873 + "_width": 321, 6874 + "_height": 417 6875 + }, 6876 + "_content": null, 6877 + "_css": { 6878 + ".Rectangle": [ 6879 + { 6880 + "_lhs": "width", 6881 + "_rhs": "321px" 6882 + }, 6883 + { 6884 + "_lhs": "height", 6885 + "_rhs": "417px" 6886 + }, 6887 + { 6888 + "_lhs": "background-color", 6889 + "_rhs": "#ffffff" 6890 + } 6891 + ] 6892 + }, 6893 + "_style": [ 6894 + { 6895 + "_lhs": "width", 6896 + "_rhs": "38.1429%" 6897 + }, 6898 + { 6899 + "_lhs": "height", 6900 + "_rhs": "15.6045%" 6901 + }, 6902 + { 6903 + "_lhs": "left", 6904 + "_rhs": "54.4286%" 6905 + }, 6906 + { 6907 + "_lhs": "top", 6908 + "_rhs": "38.7535%" 6909 + } 6910 + ] 6911 + }, 6912 + { 6913 + "_did": "0935cbb740a6beade3af779b76a5d723dc28d745c2539a1c361016afd6d85f8f", 6914 + "_title": "Bitmap", 6915 + "_coords": { 6916 + "_x": 381, 6917 + "_y": 827, 6918 + "_width": 267, 6919 + "_height": 333 6920 + }, 6921 + "_content": null, 6922 + "_css": { 6923 + ".Bitmap": [ 6924 + { 6925 + "_lhs": "width", 6926 + "_rhs": "267px" 6927 + }, 6928 + { 6929 + "_lhs": "height", 6930 + "_rhs": "333px" 6931 + } 6932 + ] 6933 + }, 6934 + "_style": [ 6935 + { 6936 + "_lhs": "width", 6937 + "_rhs": "38.1429%" 6938 + }, 6939 + { 6940 + "_lhs": "height", 6941 + "_rhs": "15.6045%" 6942 + }, 6943 + { 6944 + "_lhs": "left", 6945 + "_rhs": "54.4286%" 6946 + }, 6947 + { 6948 + "_lhs": "top", 6949 + "_rhs": "38.7535%" 6950 + } 6951 + ] 6952 + }, 6953 + { 6954 + "_did": "09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982", 6955 + "_title": "Bitmap", 6956 + "_coords": { 6957 + "_x": 0, 6958 + "_y": 827, 6959 + "_width": 415, 6960 + "_height": 270 6961 + }, 6962 + "_content": null, 6963 + "_css": { 6964 + ".Bitmap": [ 6965 + { 6966 + "_lhs": "width", 6967 + "_rhs": "415px" 6968 + }, 6969 + { 6970 + "_lhs": "height", 6971 + "_rhs": "270px" 6972 + } 6973 + ] 6974 + }, 6975 + "_style": [ 6976 + { 6977 + "_lhs": "width", 6978 + "_rhs": "38.1429%" 6979 + }, 6980 + { 6981 + "_lhs": "height", 6982 + "_rhs": "15.6045%" 6983 + }, 6984 + { 6985 + "_lhs": "left", 6986 + "_rhs": "54.4286%" 6987 + }, 6988 + { 6989 + "_lhs": "top", 6990 + "_rhs": "38.7535%" 6991 + } 6992 + ] 6993 + } 6994 + ], 6995 + [ 6996 + { 6997 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 6998 + "_title": "Team page - tablet sample", 6999 + "_coords": { 7000 + "_x": 0, 7001 + "_y": 0, 7002 + "_width": 700, 7003 + "_height": 2134 7004 + }, 7005 + "_content": null, 7006 + "_css": { 7007 + ".Team-page---tablet-sample": [ 7008 + { 7009 + "_lhs": "width", 7010 + "_rhs": "700px" 7011 + }, 7012 + { 7013 + "_lhs": "height", 7014 + "_rhs": "2134px" 7015 + }, 7016 + { 7017 + "_lhs": "background-color", 7018 + "_rhs": "#ffffff" 7019 + } 7020 + ] 7021 + }, 7022 + "_style": [ 7023 + { 7024 + "_lhs": "width", 7025 + "_rhs": "45.8571%" 7026 + }, 7027 + { 7028 + "_lhs": "height", 7029 + "_rhs": "19.2596%" 7030 + }, 7031 + { 7032 + "_lhs": "left", 7033 + "_rhs": "3%" 7034 + }, 7035 + { 7036 + "_lhs": "top", 7037 + "_rhs": "18.4161%" 7038 + } 7039 + ] 7040 + }, 7041 + { 7042 + "_did": "22c411b18362ab7509ae4a47dc74f947629e5b1c8883005be203130d9b9a7fc1", 7043 + "_title": "Rectangle", 7044 + "_coords": { 7045 + "_x": 21, 7046 + "_y": 393, 7047 + "_width": 321, 7048 + "_height": 411 7049 + }, 7050 + "_content": null, 7051 + "_css": { 7052 + ".Rectangle": [ 7053 + { 7054 + "_lhs": "width", 7055 + "_rhs": "321px" 7056 + }, 7057 + { 7058 + "_lhs": "height", 7059 + "_rhs": "411px" 7060 + }, 7061 + { 7062 + "_lhs": "background-color", 7063 + "_rhs": "#ffffff" 7064 + } 7065 + ] 7066 + }, 7067 + "_style": [ 7068 + { 7069 + "_lhs": "width", 7070 + "_rhs": "45.8571%" 7071 + }, 7072 + { 7073 + "_lhs": "height", 7074 + "_rhs": "19.2596%" 7075 + }, 7076 + { 7077 + "_lhs": "left", 7078 + "_rhs": "3%" 7079 + }, 7080 + { 7081 + "_lhs": "top", 7082 + "_rhs": "18.4161%" 7083 + } 7084 + ] 7085 + } 7086 + ], 7087 + [ 7088 + { 7089 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 7090 + "_title": "Team page - tablet sample", 7091 + "_coords": { 7092 + "_x": 0, 7093 + "_y": 0, 7094 + "_width": 700, 7095 + "_height": 2134 7096 + }, 7097 + "_content": null, 7098 + "_css": { 7099 + ".Team-page---tablet-sample": [ 7100 + { 7101 + "_lhs": "width", 7102 + "_rhs": "700px" 7103 + }, 7104 + { 7105 + "_lhs": "height", 7106 + "_rhs": "2134px" 7107 + }, 7108 + { 7109 + "_lhs": "background-color", 7110 + "_rhs": "#ffffff" 7111 + } 7112 + ] 7113 + }, 7114 + "_style": [ 7115 + { 7116 + "_lhs": "width", 7117 + "_rhs": "43.8571%" 7118 + }, 7119 + { 7120 + "_lhs": "height", 7121 + "_rhs": "5.71696%" 7122 + }, 7123 + { 7124 + "_lhs": "left", 7125 + "_rhs": "4.14286%" 7126 + }, 7127 + { 7128 + "_lhs": "top", 7129 + "_rhs": "31.6307%" 7130 + } 7131 + ] 7132 + }, 7133 + { 7134 + "_did": "22c411b18362ab7509ae4a47dc74f947629e5b1c8883005be203130d9b9a7fc1", 7135 + "_title": "Rectangle", 7136 + "_coords": { 7137 + "_x": 21, 7138 + "_y": 393, 7139 + "_width": 321, 7140 + "_height": 411 7141 + }, 7142 + "_content": null, 7143 + "_css": { 7144 + ".Rectangle": [ 7145 + { 7146 + "_lhs": "width", 7147 + "_rhs": "321px" 7148 + }, 7149 + { 7150 + "_lhs": "height", 7151 + "_rhs": "411px" 7152 + }, 7153 + { 7154 + "_lhs": "background-color", 7155 + "_rhs": "#ffffff" 7156 + } 7157 + ] 7158 + }, 7159 + "_style": [ 7160 + { 7161 + "_lhs": "width", 7162 + "_rhs": "43.8571%" 7163 + }, 7164 + { 7165 + "_lhs": "height", 7166 + "_rhs": "5.71696%" 7167 + }, 7168 + { 7169 + "_lhs": "left", 7170 + "_rhs": "4.14286%" 7171 + }, 7172 + { 7173 + "_lhs": "top", 7174 + "_rhs": "31.6307%" 7175 + } 7176 + ] 7177 + } 7178 + ], 7179 + [ 7180 + { 7181 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 7182 + "_title": "Team page - tablet sample", 7183 + "_coords": { 7184 + "_x": 0, 7185 + "_y": 0, 7186 + "_width": 700, 7187 + "_height": 2134 7188 + }, 7189 + "_content": null, 7190 + "_css": { 7191 + ".Team-page---tablet-sample": [ 7192 + { 7193 + "_lhs": "width", 7194 + "_rhs": "700px" 7195 + }, 7196 + { 7197 + "_lhs": "height", 7198 + "_rhs": "2134px" 7199 + }, 7200 + { 7201 + "_lhs": "background-color", 7202 + "_rhs": "#ffffff" 7203 + } 7204 + ] 7205 + }, 7206 + "_style": [ 7207 + { 7208 + "_lhs": "width", 7209 + "_rhs": "37.8571%" 7210 + }, 7211 + { 7212 + "_lhs": "height", 7213 + "_rhs": "12.5117%" 7214 + }, 7215 + { 7216 + "_lhs": "left", 7217 + "_rhs": "7.14286%" 7218 + }, 7219 + { 7220 + "_lhs": "top", 7221 + "_rhs": "18.4161%" 7222 + } 7223 + ] 7224 + }, 7225 + { 7226 + "_did": "22c411b18362ab7509ae4a47dc74f947629e5b1c8883005be203130d9b9a7fc1", 7227 + "_title": "Rectangle", 7228 + "_coords": { 7229 + "_x": 21, 7230 + "_y": 393, 7231 + "_width": 321, 7232 + "_height": 411 7233 + }, 7234 + "_content": null, 7235 + "_css": { 7236 + ".Rectangle": [ 7237 + { 7238 + "_lhs": "width", 7239 + "_rhs": "321px" 7240 + }, 7241 + { 7242 + "_lhs": "height", 7243 + "_rhs": "411px" 7244 + }, 7245 + { 7246 + "_lhs": "background-color", 7247 + "_rhs": "#ffffff" 7248 + } 7249 + ] 7250 + }, 7251 + "_style": [ 7252 + { 7253 + "_lhs": "width", 7254 + "_rhs": "37.8571%" 7255 + }, 7256 + { 7257 + "_lhs": "height", 7258 + "_rhs": "12.5117%" 7259 + }, 7260 + { 7261 + "_lhs": "left", 7262 + "_rhs": "7.14286%" 7263 + }, 7264 + { 7265 + "_lhs": "top", 7266 + "_rhs": "18.4161%" 7267 + } 7268 + ] 7269 + }, 7270 + { 7271 + "_did": "7bdeb65f9499c02af605ed623411811e00b6eece1c0c502287878c8f57a48b16", 7272 + "_title": "Oval", 7273 + "_coords": { 7274 + "_x": 50, 7275 + "_y": 393, 7276 + "_width": 265, 7277 + "_height": 267 7278 + }, 7279 + "_content": null, 7280 + "_css": { 7281 + ".Oval": [ 7282 + { 7283 + "_lhs": "width", 7284 + "_rhs": "265px" 7285 + }, 7286 + { 7287 + "_lhs": "height", 7288 + "_rhs": "267px" 7289 + }, 7290 + { 7291 + "_lhs": "background-color", 7292 + "_rhs": "#d8d8d8" 7293 + } 7294 + ] 7295 + }, 7296 + "_style": [ 7297 + { 7298 + "_lhs": "width", 7299 + "_rhs": "37.8571%" 7300 + }, 7301 + { 7302 + "_lhs": "height", 7303 + "_rhs": "12.5117%" 7304 + }, 7305 + { 7306 + "_lhs": "left", 7307 + "_rhs": "7.14286%" 7308 + }, 7309 + { 7310 + "_lhs": "top", 7311 + "_rhs": "18.4161%" 7312 + } 7313 + ] 7314 + }, 7315 + { 7316 + "_did": "75e28ea5799e2bed3fb807f797ff93d468fb11e3d148bcabced833971a55101f", 7317 + "_title": "Bitmap", 7318 + "_coords": { 7319 + "_x": 46, 7320 + "_y": 393, 7321 + "_width": 273, 7322 + "_height": 273 7323 + }, 7324 + "_content": null, 7325 + "_css": { 7326 + ".Bitmap": [ 7327 + { 7328 + "_lhs": "width", 7329 + "_rhs": "273px" 7330 + }, 7331 + { 7332 + "_lhs": "height", 7333 + "_rhs": "273px" 7334 + } 7335 + ] 7336 + }, 7337 + "_style": [ 7338 + { 7339 + "_lhs": "width", 7340 + "_rhs": "37.8571%" 7341 + }, 7342 + { 7343 + "_lhs": "height", 7344 + "_rhs": "12.5117%" 7345 + }, 7346 + { 7347 + "_lhs": "left", 7348 + "_rhs": "7.14286%" 7349 + }, 7350 + { 7351 + "_lhs": "top", 7352 + "_rhs": "18.4161%" 7353 + } 7354 + ] 7355 + } 7356 + ], 7357 + [ 7358 + { 7359 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 7360 + "_title": "Team page - tablet sample", 7361 + "_coords": { 7362 + "_x": 0, 7363 + "_y": 0, 7364 + "_width": 700, 7365 + "_height": 2134 7366 + }, 7367 + "_content": null, 7368 + "_css": { 7369 + ".Team-page---tablet-sample": [ 7370 + { 7371 + "_lhs": "width", 7372 + "_rhs": "700px" 7373 + }, 7374 + { 7375 + "_lhs": "height", 7376 + "_rhs": "2134px" 7377 + }, 7378 + { 7379 + "_lhs": "background-color", 7380 + "_rhs": "#ffffff" 7381 + } 7382 + ] 7383 + }, 7384 + "_style": [ 7385 + { 7386 + "_lhs": "width", 7387 + "_rhs": "39%" 7388 + }, 7389 + { 7390 + "_lhs": "height", 7391 + "_rhs": "12.7929%" 7392 + }, 7393 + { 7394 + "_lhs": "left", 7395 + "_rhs": "6.57143%" 7396 + }, 7397 + { 7398 + "_lhs": "top", 7399 + "_rhs": "18.4161%" 7400 + } 7401 + ] 7402 + }, 7403 + { 7404 + "_did": "22c411b18362ab7509ae4a47dc74f947629e5b1c8883005be203130d9b9a7fc1", 7405 + "_title": "Rectangle", 7406 + "_coords": { 7407 + "_x": 21, 7408 + "_y": 393, 7409 + "_width": 321, 7410 + "_height": 411 7411 + }, 7412 + "_content": null, 7413 + "_css": { 7414 + ".Rectangle": [ 7415 + { 7416 + "_lhs": "width", 7417 + "_rhs": "321px" 7418 + }, 7419 + { 7420 + "_lhs": "height", 7421 + "_rhs": "411px" 7422 + }, 7423 + { 7424 + "_lhs": "background-color", 7425 + "_rhs": "#ffffff" 7426 + } 7427 + ] 7428 + }, 7429 + "_style": [ 7430 + { 7431 + "_lhs": "width", 7432 + "_rhs": "39%" 7433 + }, 7434 + { 7435 + "_lhs": "height", 7436 + "_rhs": "12.7929%" 7437 + }, 7438 + { 7439 + "_lhs": "left", 7440 + "_rhs": "6.57143%" 7441 + }, 7442 + { 7443 + "_lhs": "top", 7444 + "_rhs": "18.4161%" 7445 + } 7446 + ] 7447 + }, 7448 + { 7449 + "_did": "75e28ea5799e2bed3fb807f797ff93d468fb11e3d148bcabced833971a55101f", 7450 + "_title": "Bitmap", 7451 + "_coords": { 7452 + "_x": 46, 7453 + "_y": 393, 7454 + "_width": 273, 7455 + "_height": 273 7456 + }, 7457 + "_content": null, 7458 + "_css": { 7459 + ".Bitmap": [ 7460 + { 7461 + "_lhs": "width", 7462 + "_rhs": "273px" 7463 + }, 7464 + { 7465 + "_lhs": "height", 7466 + "_rhs": "273px" 7467 + } 7468 + ] 7469 + }, 7470 + "_style": [ 7471 + { 7472 + "_lhs": "width", 7473 + "_rhs": "39%" 7474 + }, 7475 + { 7476 + "_lhs": "height", 7477 + "_rhs": "12.7929%" 7478 + }, 7479 + { 7480 + "_lhs": "left", 7481 + "_rhs": "6.57143%" 7482 + }, 7483 + { 7484 + "_lhs": "top", 7485 + "_rhs": "18.4161%" 7486 + } 7487 + ] 7488 + } 7489 + ], 7490 + [ 7491 + { 7492 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 7493 + "_title": "Team page - tablet sample", 7494 + "_coords": { 7495 + "_x": 0, 7496 + "_y": 0, 7497 + "_width": 700, 7498 + "_height": 2134 7499 + }, 7500 + "_content": null, 7501 + "_css": { 7502 + ".Team-page---tablet-sample": [ 7503 + { 7504 + "_lhs": "width", 7505 + "_rhs": "700px" 7506 + }, 7507 + { 7508 + "_lhs": "height", 7509 + "_rhs": "2134px" 7510 + }, 7511 + { 7512 + "_lhs": "background-color", 7513 + "_rhs": "#ffffff" 7514 + } 7515 + ] 7516 + }, 7517 + "_style": [ 7518 + { 7519 + "_lhs": "width", 7520 + "_rhs": "45.8571%" 7521 + }, 7522 + { 7523 + "_lhs": "height", 7524 + "_rhs": "5.6701%" 7525 + }, 7526 + { 7527 + "_lhs": "left", 7528 + "_rhs": "3.14286%" 7529 + }, 7530 + { 7531 + "_lhs": "top", 7532 + "_rhs": "52.1556%" 7533 + } 7534 + ] 7535 + }, 7536 + { 7537 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 7538 + "_title": "Rectangle", 7539 + "_coords": { 7540 + "_x": 0, 7541 + "_y": 827, 7542 + "_width": 415, 7543 + "_height": 413 7544 + }, 7545 + "_content": null, 7546 + "_css": { 7547 + ".Rectangle": [ 7548 + { 7549 + "_lhs": "width", 7550 + "_rhs": "415px" 7551 + }, 7552 + { 7553 + "_lhs": "height", 7554 + "_rhs": "413px" 7555 + }, 7556 + { 7557 + "_lhs": "background-color", 7558 + "_rhs": "#ffffff" 7559 + } 7560 + ] 7561 + }, 7562 + "_style": [ 7563 + { 7564 + "_lhs": "width", 7565 + "_rhs": "45.8571%" 7566 + }, 7567 + { 7568 + "_lhs": "height", 7569 + "_rhs": "5.6701%" 7570 + }, 7571 + { 7572 + "_lhs": "left", 7573 + "_rhs": "3.14286%" 7574 + }, 7575 + { 7576 + "_lhs": "top", 7577 + "_rhs": "52.1556%" 7578 + } 7579 + ] 7580 + }, 7581 + { 7582 + "_did": "de8a8ca6f71c16b911bfb7e596fbf8a6cbf998d2930cd229f3f501f3389bcb38", 7583 + "_title": "Johnny Cash | Guitar", 7584 + "_coords": { 7585 + "_x": 22, 7586 + "_y": 1113, 7587 + "_width": 321, 7588 + "_height": 121 7589 + }, 7590 + "_content": "Johnny Cash | Guitar and Vocals\nMusical Legend\n+44 (0)7012 345 678\njohnny.cash@country.com", 7591 + "_css": { 7592 + ".Johnny-Cash-Guitar": [ 7593 + { 7594 + "_lhs": "width", 7595 + "_rhs": "321px" 7596 + }, 7597 + { 7598 + "_lhs": "height", 7599 + "_rhs": "121px" 7600 + }, 7601 + { 7602 + "_lhs": "font-family", 7603 + "_rhs": "ProximaNova" 7604 + }, 7605 + { 7606 + "_lhs": "font-size", 7607 + "_rhs": "18px" 7608 + }, 7609 + { 7610 + "_lhs": "font-weight", 7611 + "_rhs": "300" 7612 + }, 7613 + { 7614 + "_lhs": "font-style", 7615 + "_rhs": "normal" 7616 + }, 7617 + { 7618 + "_lhs": "font-stretch", 7619 + "_rhs": "normal" 7620 + }, 7621 + { 7622 + "_lhs": "line-height", 7623 + "_rhs": "1.44" 7624 + }, 7625 + { 7626 + "_lhs": "letter-spacing", 7627 + "_rhs": "normal" 7628 + }, 7629 + { 7630 + "_lhs": "text-align", 7631 + "_rhs": "center" 7632 + }, 7633 + { 7634 + "_lhs": "color", 7635 + "_rhs": "#2d2926" 7636 + }, 7637 + { 7638 + "_lhs": "}.Johnny-Cash-Guitar .text-style-1 { font-weight", 7639 + "_rhs": "bold" 7640 + }, 7641 + { 7642 + "_lhs": "}.Johnny-Cash-Guitar .text-style-2 { font-weight", 7643 + "_rhs": "normal" 7644 + }, 7645 + { 7646 + "_lhs": "color", 7647 + "_rhs": "#4298b5" 7648 + } 7649 + ] 7650 + }, 7651 + "_style": [ 7652 + { 7653 + "_lhs": "width", 7654 + "_rhs": "45.8571%" 7655 + }, 7656 + { 7657 + "_lhs": "height", 7658 + "_rhs": "5.6701%" 7659 + }, 7660 + { 7661 + "_lhs": "left", 7662 + "_rhs": "3.14286%" 7663 + }, 7664 + { 7665 + "_lhs": "top", 7666 + "_rhs": "52.1556%" 7667 + } 7668 + ] 7669 + } 7670 + ], 7671 + [ 7672 + { 7673 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 7674 + "_title": "Team page - tablet sample", 7675 + "_coords": { 7676 + "_x": 0, 7677 + "_y": 0, 7678 + "_width": 700, 7679 + "_height": 2134 7680 + }, 7681 + "_content": null, 7682 + "_css": { 7683 + ".Team-page---tablet-sample": [ 7684 + { 7685 + "_lhs": "width", 7686 + "_rhs": "700px" 7687 + }, 7688 + { 7689 + "_lhs": "height", 7690 + "_rhs": "2134px" 7691 + }, 7692 + { 7693 + "_lhs": "background-color", 7694 + "_rhs": "#ffffff" 7695 + } 7696 + ] 7697 + }, 7698 + "_style": [ 7699 + { 7700 + "_lhs": "width", 7701 + "_rhs": "37.8571%" 7702 + }, 7703 + { 7704 + "_lhs": "height", 7705 + "_rhs": "12.5117%" 7706 + }, 7707 + { 7708 + "_lhs": "left", 7709 + "_rhs": "6.71429%" 7710 + }, 7711 + { 7712 + "_lhs": "top", 7713 + "_rhs": "38.941%" 7714 + } 7715 + ] 7716 + }, 7717 + { 7718 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 7719 + "_title": "Rectangle", 7720 + "_coords": { 7721 + "_x": 0, 7722 + "_y": 827, 7723 + "_width": 415, 7724 + "_height": 413 7725 + }, 7726 + "_content": null, 7727 + "_css": { 7728 + ".Rectangle": [ 7729 + { 7730 + "_lhs": "width", 7731 + "_rhs": "415px" 7732 + }, 7733 + { 7734 + "_lhs": "height", 7735 + "_rhs": "413px" 7736 + }, 7737 + { 7738 + "_lhs": "background-color", 7739 + "_rhs": "#ffffff" 7740 + } 7741 + ] 7742 + }, 7743 + "_style": [ 7744 + { 7745 + "_lhs": "width", 7746 + "_rhs": "37.8571%" 7747 + }, 7748 + { 7749 + "_lhs": "height", 7750 + "_rhs": "12.5117%" 7751 + }, 7752 + { 7753 + "_lhs": "left", 7754 + "_rhs": "6.71429%" 7755 + }, 7756 + { 7757 + "_lhs": "top", 7758 + "_rhs": "38.941%" 7759 + } 7760 + ] 7761 + }, 7762 + { 7763 + "_did": "de4aec4295c22081bbce5356f282eeff93c1726bf275346f57718277548ab836", 7764 + "_title": "Oval", 7765 + "_coords": { 7766 + "_x": 47, 7767 + "_y": 831, 7768 + "_width": 265, 7769 + "_height": 267 7770 + }, 7771 + "_content": null, 7772 + "_css": { 7773 + ".Oval": [ 7774 + { 7775 + "_lhs": "width", 7776 + "_rhs": "265px" 7777 + }, 7778 + { 7779 + "_lhs": "height", 7780 + "_rhs": "267px" 7781 + }, 7782 + { 7783 + "_lhs": "background-color", 7784 + "_rhs": "#d8d8d8" 7785 + } 7786 + ] 7787 + }, 7788 + "_style": [ 7789 + { 7790 + "_lhs": "width", 7791 + "_rhs": "37.8571%" 7792 + }, 7793 + { 7794 + "_lhs": "height", 7795 + "_rhs": "12.5117%" 7796 + }, 7797 + { 7798 + "_lhs": "left", 7799 + "_rhs": "6.71429%" 7800 + }, 7801 + { 7802 + "_lhs": "top", 7803 + "_rhs": "38.941%" 7804 + } 7805 + ] 7806 + }, 7807 + { 7808 + "_did": "09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982", 7809 + "_title": "Bitmap", 7810 + "_coords": { 7811 + "_x": 0, 7812 + "_y": 827, 7813 + "_width": 415, 7814 + "_height": 270 7815 + }, 7816 + "_content": null, 7817 + "_css": { 7818 + ".Bitmap": [ 7819 + { 7820 + "_lhs": "width", 7821 + "_rhs": "415px" 7822 + }, 7823 + { 7824 + "_lhs": "height", 7825 + "_rhs": "270px" 7826 + } 7827 + ] 7828 + }, 7829 + "_style": [ 7830 + { 7831 + "_lhs": "width", 7832 + "_rhs": "37.8571%" 7833 + }, 7834 + { 7835 + "_lhs": "height", 7836 + "_rhs": "12.5117%" 7837 + }, 7838 + { 7839 + "_lhs": "left", 7840 + "_rhs": "6.71429%" 7841 + }, 7842 + { 7843 + "_lhs": "top", 7844 + "_rhs": "38.941%" 7845 + } 7846 + ] 7847 + } 7848 + ], 7849 + [ 7850 + { 7851 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 7852 + "_title": "Team page - tablet sample", 7853 + "_coords": { 7854 + "_x": 0, 7855 + "_y": 0, 7856 + "_width": 700, 7857 + "_height": 2134 7858 + }, 7859 + "_content": null, 7860 + "_css": { 7861 + ".Team-page---tablet-sample": [ 7862 + { 7863 + "_lhs": "width", 7864 + "_rhs": "700px" 7865 + }, 7866 + { 7867 + "_lhs": "height", 7868 + "_rhs": "2134px" 7869 + }, 7870 + { 7871 + "_lhs": "background-color", 7872 + "_rhs": "#ffffff" 7873 + } 7874 + ] 7875 + }, 7876 + "_style": [ 7877 + { 7878 + "_lhs": "width", 7879 + "_rhs": "59.2857%" 7880 + }, 7881 + { 7882 + "_lhs": "height", 7883 + "_rhs": "12.6523%" 7884 + }, 7885 + { 7886 + "_lhs": "left", 7887 + "_rhs": "0%" 7888 + }, 7889 + { 7890 + "_lhs": "top", 7891 + "_rhs": "38.7535%" 7892 + } 7893 + ] 7894 + }, 7895 + { 7896 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 7897 + "_title": "Rectangle", 7898 + "_coords": { 7899 + "_x": 0, 7900 + "_y": 827, 7901 + "_width": 415, 7902 + "_height": 413 7903 + }, 7904 + "_content": null, 7905 + "_css": { 7906 + ".Rectangle": [ 7907 + { 7908 + "_lhs": "width", 7909 + "_rhs": "415px" 7910 + }, 7911 + { 7912 + "_lhs": "height", 7913 + "_rhs": "413px" 7914 + }, 7915 + { 7916 + "_lhs": "background-color", 7917 + "_rhs": "#ffffff" 7918 + } 7919 + ] 7920 + }, 7921 + "_style": [ 7922 + { 7923 + "_lhs": "width", 7924 + "_rhs": "59.2857%" 7925 + }, 7926 + { 7927 + "_lhs": "height", 7928 + "_rhs": "12.6523%" 7929 + }, 7930 + { 7931 + "_lhs": "left", 7932 + "_rhs": "0%" 7933 + }, 7934 + { 7935 + "_lhs": "top", 7936 + "_rhs": "38.7535%" 7937 + } 7938 + ] 7939 + }, 7940 + { 7941 + "_did": "09da11385f58adba2550bc1414a6e15f2d16f31926b975df85c4b850800a8982", 7942 + "_title": "Bitmap", 7943 + "_coords": { 7944 + "_x": 0, 7945 + "_y": 827, 7946 + "_width": 415, 7947 + "_height": 270 7948 + }, 7949 + "_content": null, 7950 + "_css": { 7951 + ".Bitmap": [ 7952 + { 7953 + "_lhs": "width", 7954 + "_rhs": "415px" 7955 + }, 7956 + { 7957 + "_lhs": "height", 7958 + "_rhs": "270px" 7959 + } 7960 + ] 7961 + }, 7962 + "_style": [ 7963 + { 7964 + "_lhs": "width", 7965 + "_rhs": "59.2857%" 7966 + }, 7967 + { 7968 + "_lhs": "height", 7969 + "_rhs": "12.6523%" 7970 + }, 7971 + { 7972 + "_lhs": "left", 7973 + "_rhs": "0%" 7974 + }, 7975 + { 7976 + "_lhs": "top", 7977 + "_rhs": "38.7535%" 7978 + } 7979 + ] 7980 + } 7981 + ], 7982 + [ 7983 + { 7984 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 7985 + "_title": "Team page - tablet sample", 7986 + "_coords": { 7987 + "_x": 0, 7988 + "_y": 0, 7989 + "_width": 700, 7990 + "_height": 2134 7991 + }, 7992 + "_content": null, 7993 + "_css": { 7994 + ".Team-page---tablet-sample": [ 7995 + { 7996 + "_lhs": "width", 7997 + "_rhs": "700px" 7998 + }, 7999 + { 8000 + "_lhs": "height", 8001 + "_rhs": "2134px" 8002 + }, 8003 + { 8004 + "_lhs": "background-color", 8005 + "_rhs": "#ffffff" 8006 + } 8007 + ] 8008 + }, 8009 + "_style": [ 8010 + { 8011 + "_lhs": "width", 8012 + "_rhs": "45.8571%" 8013 + }, 8014 + { 8015 + "_lhs": "height", 8016 + "_rhs": "19.2596%" 8017 + }, 8018 + { 8019 + "_lhs": "left", 8020 + "_rhs": "51%" 8021 + }, 8022 + { 8023 + "_lhs": "top", 8024 + "_rhs": "18.4161%" 8025 + } 8026 + ] 8027 + }, 8028 + { 8029 + "_did": "e1a8d6bf014d8433dc79dd0841bf453cee43f718c4fe3fcff0ba2c1b4242b834", 8030 + "_title": "Rectangle", 8031 + "_coords": { 8032 + "_x": 357, 8033 + "_y": 393, 8034 + "_width": 321, 8035 + "_height": 411 8036 + }, 8037 + "_content": null, 8038 + "_css": { 8039 + ".Rectangle": [ 8040 + { 8041 + "_lhs": "width", 8042 + "_rhs": "321px" 8043 + }, 8044 + { 8045 + "_lhs": "height", 8046 + "_rhs": "411px" 8047 + }, 8048 + { 8049 + "_lhs": "background-color", 8050 + "_rhs": "#ffffff" 8051 + } 8052 + ] 8053 + }, 8054 + "_style": [ 8055 + { 8056 + "_lhs": "width", 8057 + "_rhs": "45.8571%" 8058 + }, 8059 + { 8060 + "_lhs": "height", 8061 + "_rhs": "19.2596%" 8062 + }, 8063 + { 8064 + "_lhs": "left", 8065 + "_rhs": "51%" 8066 + }, 8067 + { 8068 + "_lhs": "top", 8069 + "_rhs": "18.4161%" 8070 + } 8071 + ] 8072 + } 8073 + ], 8074 + [ 8075 + { 8076 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 8077 + "_title": "Team page - tablet sample", 8078 + "_coords": { 8079 + "_x": 0, 8080 + "_y": 0, 8081 + "_width": 700, 8082 + "_height": 2134 8083 + }, 8084 + "_content": null, 8085 + "_css": { 8086 + ".Team-page---tablet-sample": [ 8087 + { 8088 + "_lhs": "width", 8089 + "_rhs": "700px" 8090 + }, 8091 + { 8092 + "_lhs": "height", 8093 + "_rhs": "2134px" 8094 + }, 8095 + { 8096 + "_lhs": "background-color", 8097 + "_rhs": "#ffffff" 8098 + } 8099 + ] 8100 + }, 8101 + "_style": [ 8102 + { 8103 + "_lhs": "width", 8104 + "_rhs": "45%" 8105 + }, 8106 + { 8107 + "_lhs": "height", 8108 + "_rhs": "5.52952%" 8109 + }, 8110 + { 8111 + "_lhs": "left", 8112 + "_rhs": "51.5714%" 8113 + }, 8114 + { 8115 + "_lhs": "top", 8116 + "_rhs": "31.6307%" 8117 + } 8118 + ] 8119 + }, 8120 + { 8121 + "_did": "e1a8d6bf014d8433dc79dd0841bf453cee43f718c4fe3fcff0ba2c1b4242b834", 8122 + "_title": "Rectangle", 8123 + "_coords": { 8124 + "_x": 357, 8125 + "_y": 393, 8126 + "_width": 321, 8127 + "_height": 411 8128 + }, 8129 + "_content": null, 8130 + "_css": { 8131 + ".Rectangle": [ 8132 + { 8133 + "_lhs": "width", 8134 + "_rhs": "321px" 8135 + }, 8136 + { 8137 + "_lhs": "height", 8138 + "_rhs": "411px" 8139 + }, 8140 + { 8141 + "_lhs": "background-color", 8142 + "_rhs": "#ffffff" 8143 + } 8144 + ] 8145 + }, 8146 + "_style": [ 8147 + { 8148 + "_lhs": "width", 8149 + "_rhs": "45%" 8150 + }, 8151 + { 8152 + "_lhs": "height", 8153 + "_rhs": "5.52952%" 8154 + }, 8155 + { 8156 + "_lhs": "left", 8157 + "_rhs": "51.5714%" 8158 + }, 8159 + { 8160 + "_lhs": "top", 8161 + "_rhs": "31.6307%" 8162 + } 8163 + ] 8164 + }, 8165 + { 8166 + "_did": "2b49e6f525e54be085b83dbf122df098e1d212bee0d09dcc49cb0873df3cfc7a", 8167 + "_title": "Girish Dharmoji | Cl", 8168 + "_coords": { 8169 + "_x": 361, 8170 + "_y": 675, 8171 + "_width": 315, 8172 + "_height": 118 8173 + }, 8174 + "_content": "Girish Dharmoji | Client Partner Dir.\nCognizant Life Sciences\n+44 (0)7730592429\ngirish.dharmoji@cognizant.com", 8175 + "_css": { 8176 + ".Girish-Dharmoji-Cl": [ 8177 + { 8178 + "_lhs": "width", 8179 + "_rhs": "315px" 8180 + }, 8181 + { 8182 + "_lhs": "height", 8183 + "_rhs": "118px" 8184 + }, 8185 + { 8186 + "_lhs": "font-family", 8187 + "_rhs": "ProximaNova" 8188 + }, 8189 + { 8190 + "_lhs": "font-size", 8191 + "_rhs": "18px" 8192 + }, 8193 + { 8194 + "_lhs": "font-weight", 8195 + "_rhs": "300" 8196 + }, 8197 + { 8198 + "_lhs": "font-style", 8199 + "_rhs": "normal" 8200 + }, 8201 + { 8202 + "_lhs": "font-stretch", 8203 + "_rhs": "normal" 8204 + }, 8205 + { 8206 + "_lhs": "line-height", 8207 + "_rhs": "1.44" 8208 + }, 8209 + { 8210 + "_lhs": "letter-spacing", 8211 + "_rhs": "normal" 8212 + }, 8213 + { 8214 + "_lhs": "text-align", 8215 + "_rhs": "center" 8216 + }, 8217 + { 8218 + "_lhs": "color", 8219 + "_rhs": "#2d2926" 8220 + }, 8221 + { 8222 + "_lhs": "}.Girish-Dharmoji-Cl .text-style-1 { font-weight", 8223 + "_rhs": "bold" 8224 + }, 8225 + { 8226 + "_lhs": "}.Girish-Dharmoji-Cl .text-style-2 { font-weight", 8227 + "_rhs": "normal" 8228 + }, 8229 + { 8230 + "_lhs": "color", 8231 + "_rhs": "#4298b5" 8232 + } 8233 + ] 8234 + }, 8235 + "_style": [ 8236 + { 8237 + "_lhs": "width", 8238 + "_rhs": "45%" 8239 + }, 8240 + { 8241 + "_lhs": "height", 8242 + "_rhs": "5.52952%" 8243 + }, 8244 + { 8245 + "_lhs": "left", 8246 + "_rhs": "51.5714%" 8247 + }, 8248 + { 8249 + "_lhs": "top", 8250 + "_rhs": "31.6307%" 8251 + } 8252 + ] 8253 + } 8254 + ], 8255 + [ 8256 + { 8257 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 8258 + "_title": "Team page - tablet sample", 8259 + "_coords": { 8260 + "_x": 0, 8261 + "_y": 0, 8262 + "_width": 700, 8263 + "_height": 2134 8264 + }, 8265 + "_content": null, 8266 + "_css": { 8267 + ".Team-page---tablet-sample": [ 8268 + { 8269 + "_lhs": "width", 8270 + "_rhs": "700px" 8271 + }, 8272 + { 8273 + "_lhs": "height", 8274 + "_rhs": "2134px" 8275 + }, 8276 + { 8277 + "_lhs": "background-color", 8278 + "_rhs": "#ffffff" 8279 + } 8280 + ] 8281 + }, 8282 + "_style": [ 8283 + { 8284 + "_lhs": "width", 8285 + "_rhs": "37.8571%" 8286 + }, 8287 + { 8288 + "_lhs": "height", 8289 + "_rhs": "12.5117%" 8290 + }, 8291 + { 8292 + "_lhs": "left", 8293 + "_rhs": "55.1429%" 8294 + }, 8295 + { 8296 + "_lhs": "top", 8297 + "_rhs": "18.4161%" 8298 + } 8299 + ] 8300 + }, 8301 + { 8302 + "_did": "e1a8d6bf014d8433dc79dd0841bf453cee43f718c4fe3fcff0ba2c1b4242b834", 8303 + "_title": "Rectangle", 8304 + "_coords": { 8305 + "_x": 357, 8306 + "_y": 393, 8307 + "_width": 321, 8308 + "_height": 411 8309 + }, 8310 + "_content": null, 8311 + "_css": { 8312 + ".Rectangle": [ 8313 + { 8314 + "_lhs": "width", 8315 + "_rhs": "321px" 8316 + }, 8317 + { 8318 + "_lhs": "height", 8319 + "_rhs": "411px" 8320 + }, 8321 + { 8322 + "_lhs": "background-color", 8323 + "_rhs": "#ffffff" 8324 + } 8325 + ] 8326 + }, 8327 + "_style": [ 8328 + { 8329 + "_lhs": "width", 8330 + "_rhs": "37.8571%" 8331 + }, 8332 + { 8333 + "_lhs": "height", 8334 + "_rhs": "12.5117%" 8335 + }, 8336 + { 8337 + "_lhs": "left", 8338 + "_rhs": "55.1429%" 8339 + }, 8340 + { 8341 + "_lhs": "top", 8342 + "_rhs": "18.4161%" 8343 + } 8344 + ] 8345 + }, 8346 + { 8347 + "_did": "ed47383d4122ac6009c755ec9712fe6b01463ed42e48acfa4967f954558002a2", 8348 + "_title": "Oval", 8349 + "_coords": { 8350 + "_x": 386, 8351 + "_y": 393, 8352 + "_width": 265, 8353 + "_height": 267 8354 + }, 8355 + "_content": null, 8356 + "_css": { 8357 + ".Oval": [ 8358 + { 8359 + "_lhs": "width", 8360 + "_rhs": "265px" 8361 + }, 8362 + { 8363 + "_lhs": "height", 8364 + "_rhs": "267px" 8365 + }, 8366 + { 8367 + "_lhs": "background-color", 8368 + "_rhs": "#d8d8d8" 8369 + } 8370 + ] 8371 + }, 8372 + "_style": [ 8373 + { 8374 + "_lhs": "width", 8375 + "_rhs": "37.8571%" 8376 + }, 8377 + { 8378 + "_lhs": "height", 8379 + "_rhs": "12.5117%" 8380 + }, 8381 + { 8382 + "_lhs": "left", 8383 + "_rhs": "55.1429%" 8384 + }, 8385 + { 8386 + "_lhs": "top", 8387 + "_rhs": "18.4161%" 8388 + } 8389 + ] 8390 + }, 8391 + { 8392 + "_did": "4fe9b54be95a0553c347d3e18703847963d0abe70f24b0a7908443995d23bb61", 8393 + "_title": "Bitmap", 8394 + "_coords": { 8395 + "_x": 385, 8396 + "_y": 393, 8397 + "_width": 267, 8398 + "_height": 267 8399 + }, 8400 + "_content": null, 8401 + "_css": { 8402 + ".Bitmap": [ 8403 + { 8404 + "_lhs": "width", 8405 + "_rhs": "267px" 8406 + }, 8407 + { 8408 + "_lhs": "height", 8409 + "_rhs": "267px" 8410 + } 8411 + ] 8412 + }, 8413 + "_style": [ 8414 + { 8415 + "_lhs": "width", 8416 + "_rhs": "37.8571%" 8417 + }, 8418 + { 8419 + "_lhs": "height", 8420 + "_rhs": "12.5117%" 8421 + }, 8422 + { 8423 + "_lhs": "left", 8424 + "_rhs": "55.1429%" 8425 + }, 8426 + { 8427 + "_lhs": "top", 8428 + "_rhs": "18.4161%" 8429 + } 8430 + ] 8431 + } 8432 + ], 8433 + [ 8434 + { 8435 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 8436 + "_title": "Team page - tablet sample", 8437 + "_coords": { 8438 + "_x": 0, 8439 + "_y": 0, 8440 + "_width": 700, 8441 + "_height": 2134 8442 + }, 8443 + "_content": null, 8444 + "_css": { 8445 + ".Team-page---tablet-sample": [ 8446 + { 8447 + "_lhs": "width", 8448 + "_rhs": "700px" 8449 + }, 8450 + { 8451 + "_lhs": "height", 8452 + "_rhs": "2134px" 8453 + }, 8454 + { 8455 + "_lhs": "background-color", 8456 + "_rhs": "#ffffff" 8457 + } 8458 + ] 8459 + }, 8460 + "_style": [ 8461 + { 8462 + "_lhs": "width", 8463 + "_rhs": "38.1429%" 8464 + }, 8465 + { 8466 + "_lhs": "height", 8467 + "_rhs": "12.5117%" 8468 + }, 8469 + { 8470 + "_lhs": "left", 8471 + "_rhs": "55%" 8472 + }, 8473 + { 8474 + "_lhs": "top", 8475 + "_rhs": "18.4161%" 8476 + } 8477 + ] 8478 + }, 8479 + { 8480 + "_did": "e1a8d6bf014d8433dc79dd0841bf453cee43f718c4fe3fcff0ba2c1b4242b834", 8481 + "_title": "Rectangle", 8482 + "_coords": { 8483 + "_x": 357, 8484 + "_y": 393, 8485 + "_width": 321, 8486 + "_height": 411 8487 + }, 8488 + "_content": null, 8489 + "_css": { 8490 + ".Rectangle": [ 8491 + { 8492 + "_lhs": "width", 8493 + "_rhs": "321px" 8494 + }, 8495 + { 8496 + "_lhs": "height", 8497 + "_rhs": "411px" 8498 + }, 8499 + { 8500 + "_lhs": "background-color", 8501 + "_rhs": "#ffffff" 8502 + } 8503 + ] 8504 + }, 8505 + "_style": [ 8506 + { 8507 + "_lhs": "width", 8508 + "_rhs": "38.1429%" 8509 + }, 8510 + { 8511 + "_lhs": "height", 8512 + "_rhs": "12.5117%" 8513 + }, 8514 + { 8515 + "_lhs": "left", 8516 + "_rhs": "55%" 8517 + }, 8518 + { 8519 + "_lhs": "top", 8520 + "_rhs": "18.4161%" 8521 + } 8522 + ] 8523 + }, 8524 + { 8525 + "_did": "4fe9b54be95a0553c347d3e18703847963d0abe70f24b0a7908443995d23bb61", 8526 + "_title": "Bitmap", 8527 + "_coords": { 8528 + "_x": 385, 8529 + "_y": 393, 8530 + "_width": 267, 8531 + "_height": 267 8532 + }, 8533 + "_content": null, 8534 + "_css": { 8535 + ".Bitmap": [ 8536 + { 8537 + "_lhs": "width", 8538 + "_rhs": "267px" 8539 + }, 8540 + { 8541 + "_lhs": "height", 8542 + "_rhs": "267px" 8543 + } 8544 + ] 8545 + }, 8546 + "_style": [ 8547 + { 8548 + "_lhs": "width", 8549 + "_rhs": "38.1429%" 8550 + }, 8551 + { 8552 + "_lhs": "height", 8553 + "_rhs": "12.5117%" 8554 + }, 8555 + { 8556 + "_lhs": "left", 8557 + "_rhs": "55%" 8558 + }, 8559 + { 8560 + "_lhs": "top", 8561 + "_rhs": "18.4161%" 8562 + } 8563 + ] 8564 + } 8565 + ], 8566 + [ 8567 + { 8568 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 8569 + "_title": "Team page - tablet sample", 8570 + "_coords": { 8571 + "_x": 0, 8572 + "_y": 0, 8573 + "_width": 700, 8574 + "_height": 2134 8575 + }, 8576 + "_content": null, 8577 + "_css": { 8578 + ".Team-page---tablet-sample": [ 8579 + { 8580 + "_lhs": "width", 8581 + "_rhs": "700px" 8582 + }, 8583 + { 8584 + "_lhs": "height", 8585 + "_rhs": "2134px" 8586 + }, 8587 + { 8588 + "_lhs": "background-color", 8589 + "_rhs": "#ffffff" 8590 + } 8591 + ] 8592 + }, 8593 + "_style": [ 8594 + { 8595 + "_lhs": "width", 8596 + "_rhs": "46%" 8597 + }, 8598 + { 8599 + "_lhs": "height", 8600 + "_rhs": "5.99813%" 8601 + }, 8602 + { 8603 + "_lhs": "left", 8604 + "_rhs": "3%" 8605 + }, 8606 + { 8607 + "_lhs": "top", 8608 + "_rhs": "72.6804%" 8609 + } 8610 + ] 8611 + }, 8612 + { 8613 + "_did": "c999587813a28ac0090a5f6d2f4644dd591cf4f1ef63b57cb117f4713efd9f9d", 8614 + "_title": "Rosa Parks | Icon Mo", 8615 + "_coords": { 8616 + "_x": 21, 8617 + "_y": 1551, 8618 + "_width": 322, 8619 + "_height": 128 8620 + }, 8621 + "_content": "Rosa Parks | Icon\nMontgomery Alabama\n+44 (0)7787835663\nrosa.parks@history.com", 8622 + "_css": { 8623 + ".Rosa-Parks-Icon-Mo": [ 8624 + { 8625 + "_lhs": "width", 8626 + "_rhs": "322px" 8627 + }, 8628 + { 8629 + "_lhs": "height", 8630 + "_rhs": "128px" 8631 + }, 8632 + { 8633 + "_lhs": "font-family", 8634 + "_rhs": "ProximaNova" 8635 + }, 8636 + { 8637 + "_lhs": "font-size", 8638 + "_rhs": "18px" 8639 + }, 8640 + { 8641 + "_lhs": "font-weight", 8642 + "_rhs": "300" 8643 + }, 8644 + { 8645 + "_lhs": "font-style", 8646 + "_rhs": "normal" 8647 + }, 8648 + { 8649 + "_lhs": "font-stretch", 8650 + "_rhs": "normal" 8651 + }, 8652 + { 8653 + "_lhs": "line-height", 8654 + "_rhs": "1.44" 8655 + }, 8656 + { 8657 + "_lhs": "letter-spacing", 8658 + "_rhs": "normal" 8659 + }, 8660 + { 8661 + "_lhs": "text-align", 8662 + "_rhs": "center" 8663 + }, 8664 + { 8665 + "_lhs": "color", 8666 + "_rhs": "#2d2926" 8667 + }, 8668 + { 8669 + "_lhs": "}.Rosa-Parks-Icon-Mo .text-style-1 { font-weight", 8670 + "_rhs": "bold" 8671 + }, 8672 + { 8673 + "_lhs": "}.Rosa-Parks-Icon-Mo .text-style-2 { font-weight", 8674 + "_rhs": "normal" 8675 + }, 8676 + { 8677 + "_lhs": "color", 8678 + "_rhs": "#4298b5" 8679 + } 8680 + ] 8681 + }, 8682 + "_style": [ 8683 + { 8684 + "_lhs": "width", 8685 + "_rhs": "46%" 8686 + }, 8687 + { 8688 + "_lhs": "height", 8689 + "_rhs": "5.99813%" 8690 + }, 8691 + { 8692 + "_lhs": "left", 8693 + "_rhs": "3%" 8694 + }, 8695 + { 8696 + "_lhs": "top", 8697 + "_rhs": "72.6804%" 8698 + } 8699 + ] 8700 + }, 8701 + { 8702 + "_did": "2e308bc73b3e07f11c3998314a62bb0c9b915a87a08c7ff48768237a0e39a430", 8703 + "_title": "Bitmap", 8704 + "_coords": { 8705 + "_x": 0, 8706 + "_y": 1230, 8707 + "_width": 334, 8708 + "_height": 505 8709 + }, 8710 + "_content": null, 8711 + "_css": { 8712 + ".Bitmap": [ 8713 + { 8714 + "_lhs": "width", 8715 + "_rhs": "334px" 8716 + }, 8717 + { 8718 + "_lhs": "height", 8719 + "_rhs": "505px" 8720 + } 8721 + ] 8722 + }, 8723 + "_style": [ 8724 + { 8725 + "_lhs": "width", 8726 + "_rhs": "46%" 8727 + }, 8728 + { 8729 + "_lhs": "height", 8730 + "_rhs": "5.99813%" 8731 + }, 8732 + { 8733 + "_lhs": "left", 8734 + "_rhs": "3%" 8735 + }, 8736 + { 8737 + "_lhs": "top", 8738 + "_rhs": "72.6804%" 8739 + } 8740 + ] 8741 + } 8742 + ], 8743 + [ 8744 + { 8745 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 8746 + "_title": "Team page - tablet sample", 8747 + "_coords": { 8748 + "_x": 0, 8749 + "_y": 0, 8750 + "_width": 700, 8751 + "_height": 2134 8752 + }, 8753 + "_content": null, 8754 + "_css": { 8755 + ".Team-page---tablet-sample": [ 8756 + { 8757 + "_lhs": "width", 8758 + "_rhs": "700px" 8759 + }, 8760 + { 8761 + "_lhs": "height", 8762 + "_rhs": "2134px" 8763 + }, 8764 + { 8765 + "_lhs": "background-color", 8766 + "_rhs": "#ffffff" 8767 + } 8768 + ] 8769 + }, 8770 + "_style": [ 8771 + { 8772 + "_lhs": "width", 8773 + "_rhs": "37.8571%" 8774 + }, 8775 + { 8776 + "_lhs": "height", 8777 + "_rhs": "12.5117%" 8778 + }, 8779 + { 8780 + "_lhs": "left", 8781 + "_rhs": "6.71429%" 8782 + }, 8783 + { 8784 + "_lhs": "top", 8785 + "_rhs": "59.4658%" 8786 + } 8787 + ] 8788 + }, 8789 + { 8790 + "_did": "8d6bce5924fd49d0d36d9746eaec3e36504810658df830263250281310e9b1b5", 8791 + "_title": "Oval", 8792 + "_coords": { 8793 + "_x": 47, 8794 + "_y": 1269, 8795 + "_width": 265, 8796 + "_height": 267 8797 + }, 8798 + "_content": null, 8799 + "_css": { 8800 + ".Oval": [ 8801 + { 8802 + "_lhs": "width", 8803 + "_rhs": "265px" 8804 + }, 8805 + { 8806 + "_lhs": "height", 8807 + "_rhs": "267px" 8808 + }, 8809 + { 8810 + "_lhs": "background-color", 8811 + "_rhs": "#d8d8d8" 8812 + } 8813 + ] 8814 + }, 8815 + "_style": [ 8816 + { 8817 + "_lhs": "width", 8818 + "_rhs": "37.8571%" 8819 + }, 8820 + { 8821 + "_lhs": "height", 8822 + "_rhs": "12.5117%" 8823 + }, 8824 + { 8825 + "_lhs": "left", 8826 + "_rhs": "6.71429%" 8827 + }, 8828 + { 8829 + "_lhs": "top", 8830 + "_rhs": "59.4658%" 8831 + } 8832 + ] 8833 + }, 8834 + { 8835 + "_did": "2e308bc73b3e07f11c3998314a62bb0c9b915a87a08c7ff48768237a0e39a430", 8836 + "_title": "Bitmap", 8837 + "_coords": { 8838 + "_x": 0, 8839 + "_y": 1230, 8840 + "_width": 334, 8841 + "_height": 505 8842 + }, 8843 + "_content": null, 8844 + "_css": { 8845 + ".Bitmap": [ 8846 + { 8847 + "_lhs": "width", 8848 + "_rhs": "334px" 8849 + }, 8850 + { 8851 + "_lhs": "height", 8852 + "_rhs": "505px" 8853 + } 8854 + ] 8855 + }, 8856 + "_style": [ 8857 + { 8858 + "_lhs": "width", 8859 + "_rhs": "37.8571%" 8860 + }, 8861 + { 8862 + "_lhs": "height", 8863 + "_rhs": "12.5117%" 8864 + }, 8865 + { 8866 + "_lhs": "left", 8867 + "_rhs": "6.71429%" 8868 + }, 8869 + { 8870 + "_lhs": "top", 8871 + "_rhs": "59.4658%" 8872 + } 8873 + ] 8874 + } 8875 + ], 8876 + [ 8877 + { 8878 + "_did": "9c1bcea9899fd5fab579764b880c8a33bc39f46d008fd5e5238736be5ce2afd2", 8879 + "_title": "Team page - tablet sample", 8880 + "_coords": { 8881 + "_x": 0, 8882 + "_y": 0, 8883 + "_width": 700, 8884 + "_height": 2134 8885 + }, 8886 + "_content": null, 8887 + "_css": { 8888 + ".Team-page---tablet-sample": [ 8889 + { 8890 + "_lhs": "width", 8891 + "_rhs": "700px" 8892 + }, 8893 + { 8894 + "_lhs": "height", 8895 + "_rhs": "2134px" 8896 + }, 8897 + { 8898 + "_lhs": "background-color", 8899 + "_rhs": "#ffffff" 8900 + } 8901 + ] 8902 + }, 8903 + "_style": [ 8904 + { 8905 + "_lhs": "width", 8906 + "_rhs": "47.7143%" 8907 + }, 8908 + { 8909 + "_lhs": "height", 8910 + "_rhs": "23.6645%" 8911 + }, 8912 + { 8913 + "_lhs": "left", 8914 + "_rhs": "0%" 8915 + }, 8916 + { 8917 + "_lhs": "top", 8918 + "_rhs": "57.6382%" 8919 + } 8920 + ] 8921 + }, 8922 + { 8923 + "_did": "5b5d0b7bede321abcb8fbde2dcf13758a53d79ecad01280ebf11ebb3d4ac98ad", 8924 + "_title": "Rectangle", 8925 + "_coords": { 8926 + "_x": 0, 8927 + "_y": 827, 8928 + "_width": 415, 8929 + "_height": 413 8930 + }, 8931 + "_content": null, 8932 + "_css": { 8933 + ".Rectangle": [ 8934 + { 8935 + "_lhs": "width", 8936 + "_rhs": "415px" 8937 + }, 8938 + { 8939 + "_lhs": "height", 8940 + "_rhs": "413px" 8941 + }, 8942 + { 8943 + "_lhs": "background-color", 8944 + "_rhs": "#ffffff" 8945 + } 8946 + ] 8947 + }, 8948 + "_style": [ 8949 + { 8950 + "_lhs": "width", 8951 + "_rhs": "47.7143%" 8952 + }, 8953 + { 8954 + "_lhs": "height", 8955 + "_rhs": "23.6645%" 8956 + }, 8957 + { 8958 + "_lhs": "left", 8959 + "_rhs": "0%" 8960 + }, 8961 + { 8962 + "_lhs": "top", 8963 + "_rhs": "57.6382%" 8964 + } 8965 + ] 8966 + } 8967 + ] 8968 + ] 8969 + }