Skip to content

Instantly share code, notes, and snippets.

@so0k
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save so0k/06425d791c9afcc40ead to your computer and use it in GitHub Desktop.
Save so0k/06425d791c9afcc40ead to your computer and use it in GitHub Desktop.
Read csv, parse HTML contained in csv field & return div elements of specific class exported as new csv
Function Get-FileName {
[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | Out-Null
$OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog
$OpenFileDialog.initialDirectory = $initialDirectory
$OpenFileDialog.filter = "Comma Separated files (*.csv)| *.csv"
$OpenFileDialog.ShowDialog() | Out-Null
$OpenFileDialog.filename
}
$Input = Get-FileName
$Output = ".\Output.csv"
if (Test-Path $Output) {
echo "$Output already exists and will be overwritten (Ctlr-C to abort)"
pause
}
echo "Testing if nuget is available"
Try {
gcm nuget 2> $null
$nuget = nuget
} Catch {
#we'll use local nuget instead
$nuget = ".\nuget.exe"
if (!(Test-Path $nuget))
{
#download nuget
echo "Downloading nuget to this directory"
iwr https://www.nuget.org/nuget.exe -OutFile $nuget
}
}
echo "Installing HtmlAgilityPack version 1.4.9"
& $nuget install HtmlAgilityPack -Version 1.4.9
add-type -Path "HtmlAgilityPack.1.4.9\lib\Net40\HtmlAgilityPack.dll"
$doc = New-Object HtmlAgilityPack.HtmlDocument
echo "Parsing $Input"
ConvertFrom-Csv (gc $Input)| % {
$doc.LoadHTML($_.Description) > $null
[PSCustomObject]@{
"SKU" = $_."SKU*";
"Description" = $doc.DocumentNode.SelectNodes("//div[@class='desc']").OuterHtml -Join " "
}
} | Export-Csv $Output -NoTypeInformation
echo "Done resulting csv written to $Output"
SKU Description
A-CR-SH-BK <div class="desc"> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">The Cruzee TWO</strong><br> - the lightest balance bike on the market.<br> - anodized in brilliant damage proof colors<br> - has such a low seat, kids as young as two can reach the ground safely.<br> - is tool free and easy to adjust to exactly fit your child from 60cm to 125cm tall.</p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">Features</strong><br> ??? Weighs less than 2kg<br> ??? Brilliant anodized colours<br> ??? Fully adjustable<br> ??? Extension Cable<br> ??? Handlebar Mount - Fits up to 31.8mm<br> ??? Tool free adjustment 60cm to 125cm</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm">&nbsp;</p> <p style="margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p> </div>
A-CR-SH-BL <div class="desc"> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">The Cruzee TWO</strong><br> - the lightest balance bike on the market.<br> - anodized in brilliant damage proof colors<br> - has such a low seat, kids as young as two can reach the ground safely.<br> - is tool free and easy to adjust to exactly fit your child from 60cm to 125cm tall.</p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">Features</strong><br> ??? Weighs less than 2kg<br> ??? Brilliant anodized colours<br> ??? Fully adjustable<br> ??? Extension Cable<br> ??? Handlebar Mount - Fits up to 31.8mm<br> ??? Tool free adjustment 60cm to 125cm</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm">&nbsp;</p> <p style="margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p> </div>
A-CR-SH-GR <div class="desc"> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>The Cruzee TWO</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- the lightest balance bike on the market.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- anodized in brilliant damage proof colors </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- has such a low seat, kids as young as two can reach the ground safely.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- is tool free and easy to adjust to exactly fit your child from 60cm to 125cm tall.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>Features</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Weighs less than 2kg</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Brilliant anodized colours </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Fully adjustable </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Extension Cable</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Handlebar Mount - Fits up to 31.8mm</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Tool free adjustment 60cm to 125cm</b></span></font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm">&nbsp;</p> <p style="margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p> </div>
A-CR-SH-OG <div class="desc"> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">The Cruzee TWO</strong><br> - the lightest balance bike on the market.<br> - anodized in brilliant damage proof colors<br> - has such a low seat, kids as young as two can reach the ground safely.<br> - is tool free and easy to adjust to exactly fit your child from 60cm to 125cm tall.</p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">Features</strong><br> ??? Weighs less than 2kg<br> ??? Brilliant anodized colours<br> ??? Fully adjustable<br> ??? Extension Cable<br> ??? Handlebar Mount - Fits up to 31.8mm<br> ??? Tool free adjustment 60cm to 125cm</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm">&nbsp;</p> <p style="margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p> </div>
A-CR-SH-PK <div class="desc"> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">The Cruzee TWO</strong><br> - the lightest balance bike on the market.<br> - anodized in brilliant damage proof colors<br> - has such a low seat, kids as young as two can reach the ground safely.<br> - is tool free and easy to adjust to exactly fit your child from 60cm to 125cm tall.</p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">Features</strong><br> ??? Weighs less than 2kg<br> ??? Brilliant anodized colours<br> ??? Fully adjustable<br> ??? Extension Cable<br> ??? Handlebar Mount - Fits up to 31.8mm<br> ??? Tool free adjustment 60cm to 125cm</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm">&nbsp;</p> <p style="margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p> </div>
A-CR-SH-PU <div class="desc"> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>The Cruzee TWO</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- the lightest balance bike on the market.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- anodized in brilliant damage proof colors </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- has such a low seat, kids as young as two can reach the ground safely.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- is tool free and easy to adjust to exactly fit your child from 60cm to 125cm tall.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>Features</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Weighs less than 2kg</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Brilliant anodized colours </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Fully adjustable </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Extension Cable</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Handlebar Mount - Fits up to 31.8mm</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Tool free adjustment 60cm to 125cm</b></span></font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm">&nbsp;</p> <p style="margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p> </div>
A-CR-SH-RD <div class="desc"> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>The Cruzee TWO</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- the lightest balance bike on the market.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- anodized in brilliant damage proof colors </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- has such a low seat, kids as young as two can reach the ground safely.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>- is tool free and easy to adjust to exactly fit your child from 60cm to 125cm tall.</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>Features</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Weighs less than 2kg</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Brilliant anodized colours </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Fully adjustable </b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Extension Cable</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Handlebar Mount - Fits up to 31.8mm</b></span></font></p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);"><font color="#292828" face="verdana"><span style="font-size: 12px; line-height: 18px;"><b>??? Tool free adjustment 60cm to 125cm</b></span></font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm">&nbsp;</p> <p style="margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p> </div>
A-CR-SH-SL <div class="desc"> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">The Cruzee TWO</strong><br> - the lightest balance bike on the market.<br> - anodized in brilliant damage proof colors<br> - has such a low seat, kids as young as two can reach the ground safely.<br> - is tool free and easy to adjust to exactly fit your child from 60cm to 125cm tall.</p> <p style="margin: 0px 0px 20px; padding: 0px; border: 0px; outline: 0px; font-size: 12px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);"><strong style="margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; background-color: transparent;">Features</strong><br> ??? Weighs less than 2kg<br> ??? Brilliant anodized colours<br> ??? Fully adjustable<br> ??? Extension Cable<br> ??? Handlebar Mount - Fits up to 31.8mm<br> ??? Tool free adjustment 60cm to 125cm</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm">&nbsp;</p> <p style="margin-right: 0px; margin-bottom: 20px; margin-left: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; line-height: 18px; color: rgb(41, 40, 40); font-family: verdana; background-color: rgb(255, 255, 255);">&nbsp;</p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p> </div>
IM80004 <div class="desc"><font face="Arial, Helvetica, sans-serif">IM80004</font><table style="orphans: 2; widows: 2;" border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table style="orphans: 2; widows: 2;" border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</font><table style="orphans: 2; widows: 2;" border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table style="orphans: 2; widows: 2;" border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">Calffy Padding Rider. A ride-on cow features a sturdy wooden trike with a comfortable seat. Cushion is removable and washable. Produced from sustainable rubber wood and finished with non toxic child safe paints and laquers. (19+Mths)</font><table style="orphans: 2; widows: 2;" border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table style="orphans: 2; widows: 2;" border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">Size: 48X32X45<br></font><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG/> </o:OfficeDocumentSettings> </xml><![endif]--> <p class="MsoNormal"><span style="color:#FF3333" lang="EN-GB">PLEASE NOTE: THESE POSTCODES WILL INCUR FURTHER POSTAGE COSTS</span></p> <p class="MsoNormal"><span style="color:#FF3333" lang="EN-GB">NT<span style="mso-spacerun:yes">&nbsp;&nbsp; </span>ALL 0800-0999</span></p> <p class="MsoNormal"><span style="color:#FF3333" lang="EN-GB">QLD<span style="mso-spacerun:yes">&nbsp;&nbsp;&nbsp; </span>4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</span></p> <p class="MsoNormal"><span style="color:#FF3333" lang="EN-GB">SA<span style="mso-spacerun:yes">&nbsp;&nbsp;&nbsp;&nbsp; </span>2880-2889, 5201-5749</span></p> <p class="MsoNormal"><span style="color:#FF3333" lang="EN-GB">WA<span style="mso-spacerun:yes">&nbsp;&nbsp; </span>6215-6799</span></p> <p class="MsoNormal"><span style="color:#FF3333" lang="EN-GB">&nbsp;</span></p> <p class="MsoNormal"><span style="color:#FF3333" lang="EN-GB">PLEASE CONTACT US FOR A QUOTE</span></p> <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-AU</w:LidThemeOther> <w:LidThemeAsian>ZH-CN</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:EnableOpenTypeKerning/> <w:DontFlipMirrorIndents/> <w:OverrideTableStyleHps/> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math"/> <m:brkBin m:val="before"/> <m:brkBinSub m:val="&#45;-"/> <m:smallFrac m:val="off"/> <m:dispDef/> <m:lMargin m:val="0"/> <m:rMargin m:val="0"/> <m:defJc m:val="centerGroup"/> <m:wrapIndent m:val="1440"/> <m:intLim m:val="subSup"/> <m:naryLim m:val="undOvr"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false" DefSemiHidden="false" DefQFormat="false" DefPriority="99" LatentStyleCount="371"> <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 2"/> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 3"/> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 4"/> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 5"/> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 6"/> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 7"/> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 8"/> <w:LsdException Locked="false" Priority="9" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="heading 9"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 5"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 6"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 7"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 8"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index 9"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 1"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 2"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 3"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 4"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 5"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 6"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 7"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 8"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" Name="toc 9"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Indent"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote text"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation text"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="header"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footer"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="index heading"/> <w:LsdException Locked="false" Priority="35" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="caption"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of figures"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope address"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="envelope return"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="footnote reference"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation reference"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="line number"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="page number"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote reference"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="endnote text"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="table of authorities"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="macro"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="toa heading"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List 5"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Bullet 5"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Number 5"/> <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Closing"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Signature"/> <w:LsdException Locked="false" Priority="1" SemiHidden="true" UnhideWhenUsed="true" Name="Default Paragraph Font"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="List Continue 5"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Message Header"/> <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Salutation"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Date"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text First Indent 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Note Heading"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Body Text Indent 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Block Text"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Hyperlink"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="FollowedHyperlink"/> <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/> <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Document Map"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Plain Text"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="E-mail Signature"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Top of Form"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Bottom of Form"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal (Web)"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Acronym"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Address"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Cite"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Code"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Definition"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Keyboard"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Preformatted"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Sample"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Typewriter"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="HTML Variable"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Normal Table"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="annotation subject"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="No List"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Outline List 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Simple 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Classic 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Colorful 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Columns 5"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 5"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 6"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 7"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Grid 8"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 4"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 5"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 6"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 7"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table List 8"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table 3D effects 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Contemporary"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Elegant"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Professional"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Subtle 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 1"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 2"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Web 3"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Balloon Text"/> <w:LsdException Locked="false" Priority="39" Name="Table Grid"/> <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true" Name="Table Theme"/> <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"/> <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/> <w:LsdException Locked="false" Priority="60" Name="Light Shading"/> <w:LsdException Locked="false" Priority="61" Name="Light List"/> <w:LsdException Locked="false" Priority="62" Name="Light Grid"/> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/> <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/> <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/> <w:LsdException Locked="false" Priority="70" Name="Dark List"/> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/> <w:LsdException Locked="false" Priority="72" Name="Colorful List"/> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/> <w:LsdException Locked="false" SemiHidden="true" Name="Revision"/> <w:LsdException Locked="false" Priority="34" QFormat="true" Name="List Paragraph"/> <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/> <w:LsdException Locked="false" Priority="30" QFormat="true" Name="Intense Quote"/> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/> <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/> <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/> <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/> <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/> <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/> <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/> <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/> <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/> <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/> <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/> <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/> <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/> <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/> <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/> <w:LsdException Locked="false" Priority="19" QFormat="true" Name="Subtle Emphasis"/> <w:LsdException Locked="false" Priority="21" QFormat="true" Name="Intense Emphasis"/> <w:LsdException Locked="false" Priority="31" QFormat="true" Name="Subtle Reference"/> <w:LsdException Locked="false" Priority="32" QFormat="true" Name="Intense Reference"/> <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/> <w:LsdException Locked="false" Priority="37" SemiHidden="true" UnhideWhenUsed="true" Name="Bibliography"/> <w:LsdException Locked="false" Priority="39" SemiHidden="true" UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/> <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/> <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/> <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/> <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/> <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/> <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 1"/> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 1"/> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 1"/> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 2"/> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 2"/> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 2"/> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 3"/> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 3"/> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 3"/> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 4"/> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 4"/> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 4"/> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 5"/> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 5"/> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 5"/> <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light Accent 6"/> <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/> <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/> <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/> <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/> <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful Accent 6"/> <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful Accent 6"/> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/> <w:LsdException Locked="false" Priority="47" Name="List Table 2"/> <w:LsdException Locked="false" Priority="48" Name="List Table 3"/> <w:LsdException Locked="false" Priority="49" Name="List Table 4"/> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 1"/> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 1"/> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 1"/> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 2"/> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 2"/> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 2"/> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 3"/> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 3"/> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 3"/> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 4"/> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 4"/> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 4"/> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 5"/> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 5"/> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 5"/> <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light Accent 6"/> <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/> <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/> <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/> <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/> <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful Accent 6"/> <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful Accent 6"/> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman",serif;} </style> <![endif]--><br><table style="orphans: 2; widows: 2;" border="0" width="850"></table></div>
IM80006 <div class="desc"><font face="Arial, Helvetica, sans-serif">IM80006</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">Calffy Padding Rider. A ride-on Tiger features a sturdy wooden trike with a comfortable seat. Cushion is removable and washable. Produced from sustainable rubber wood and finished with non toxic child safe paints and laquers. (19+Mths)</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">Size: 48X32X45</font></div> <div class="desc"><font face="Arial, Helvetica, sans-serif"><br></font></div> <div class="desc"><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p><table border="0" width="850"></table></div>
IM87010 <div class="desc"><font face="Arial, Helvetica, sans-serif">IM87010</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">Wooden Quad Bike Ride On Baby Activity Walking 18Mths+</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><table border="0" width="850"></table><div><font face="Arial, Helvetica, sans-serif"><br></font>Quad Bike Ride On. A ride-on toy features a stylish wooden trike with easy-to-grip handlebars and a height-adjustable seat. (18-36+ Mths)</div><div><br></div><div><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></div><table border="0" width="850" style="font-family: Arial, Helvetica, sans-serif;"><tbody></tbody></table></div>
IM87240 <div class="desc"><font face="Arial, Helvetica, sans-serif">IM87240</font><table border="0" width="850" style="orphans: 2; widows: 2;"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850" style="orphans: 2; widows: 2;"></table><font face="Arial, Helvetica, sans-serif">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</font><table border="0" width="850" style="orphans: 2; widows: 2;"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850" style="orphans: 2; widows: 2;"></table><font face="Arial, Helvetica, sans-serif">Calffy Padding Rider. A ride-on rabbit features a sturdy wooden trike with a comfortable seat. Cushion is removable and washable. Produced from sustainable rubber wood and finished with non toxic child safe paints and laquers. (19+Mths)</font><table border="0" width="850" style="orphans: 2; widows: 2;"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850" style="orphans: 2; widows: 2;"></table><font face="Arial, Helvetica, sans-serif">Size: 48X32X45</font></div> <div class="desc"><font face="Arial, Helvetica, sans-serif"><br></font></div> <div class="desc"><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p><table border="0" width="850" style="orphans: 2; widows: 2;"></table></div>
IM87440 <div class="desc"><font face="Arial, Helvetica, sans-serif">IM87440</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">A ride on toy features a stylish wooden trike with an easy to grip handlebards and a height adjustable seat (19+Mths)</font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif"><br></font><table border="0" width="850"></table><font face="Arial, Helvetica, sans-serif">Size: 31x51x41cm</font></div> <div class="desc"><font face="Arial, Helvetica, sans-serif"><br></font></div> <div class="desc"><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p><table border="0" width="850"></table></div>
KAZPI <div class="desc"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">Skip the training wheels and teach kids to balance first using the award-winning KaZAM balance bike! KaZAM is the only run bike on the market uniquely designed with a foot rest. Children lift their feet up naturally and position them on to the foot rest maintaining proper balance and center of gravity similar to riding a traditional bicycle. It is the most realistic approach to learning coordination and balance; and ultimately teaching kids how to ride a pedaled bike.</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">KaZAM provides an alternative way to learn to ride a peddled bicycle based on the concept of balance first, pedal last. It is a training bicycle that assists children ages 3-6 to balance, increase coordination and ultimately ride a traditional bicycle for the first time with confidence. This customized kids bicycle has the steering and balancing challenges of a traditional bicycle but it has no pedals, chain or training wheels. It is uniquely designed with a foot rest area for balancing, thereby making the transition onto a peddled bicycle quicker and seamless!</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">Featuring:</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Design that teaches children to balance and increase coordination</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Step-through design features super-low stand over height and foot rest area</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Seat QR and pnuematic rubber 12" tyres</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Steel frame and spokes</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Adjustable chrome handlebars</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Soft padded grips</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Raised molded seat</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Quick-release seat adjustment</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Friction-free metal headset with bearings</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Air-inflated tyres</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? East step in; patented footrest design</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Quality bike-dependent components</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Recommended for children aged 3-6 years old.</span></div> <div class="desc"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br></span></div> <div class="desc"><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></div>
KAZVE2BL <div class="desc"><div><br></div><div><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">Skip the training wheels and teach kids to balance first using the award-winning KaZAM balance bike! KaZAM is the only run bike on the market uniquely designed with a foot rest. Children lift their feet up naturally and position them on to the foot rest maintaining proper balance and center of gravity similar to riding a traditional bicycle. It is the most realistic approach to learning coordination and balance; and ultimately teaching kids how to ride a pedaled bike.</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">KaZAM provides an alternative way to learn to ride a peddled bicycle based on the concept of balance first, pedal last. It is a training bicycle that assists children ages 3-6 to balance, increase coordination and ultimately ride a traditional bicycle for the first time with confidence. This customized kids bicycle has the steering and balancing challenges of a traditional bicycle but it has no pedals, chain or training wheels. It is uniquely designed with a foot rest area for balancing, thereby making the transition onto a peddled bicycle quicker and seamless!</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">Featuring:</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Design that teaches children to balance and increase coordination</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Step-through design features super-low stand over height and foot rest area</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Seat QR and pnuematic rubber 12" tyres</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Steel frame and spokes</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Adjustable chrome handlebars</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Soft padded grips</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Raised molded seat</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Quick-release seat adjustment</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Friction-free metal headset with bearings</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Air-inflated tyres</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? East step in; patented footrest design</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Quality bike-dependent components</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Recommended for children aged 3-6 years old.&nbsp;</span></div><div><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br></span></div><div><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></div></div>
KAZVE2GR <div class="desc"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">Skip the training wheels and teach kids to balance first using the award-winning KaZAM balance bike! KaZAM is the only run bike on the market uniquely designed with a foot rest. Children lift their feet up naturally and position them on to the foot rest maintaining proper balance and center of gravity similar to riding a traditional bicycle. It is the most realistic approach to learning coordination and balance; and ultimately teaching kids how to ride a pedaled bike.</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">KaZAM provides an alternative way to learn to ride a peddled bicycle based on the concept of balance first, pedal last. It is a training bicycle that assists children ages 3-6 to balance, increase coordination and ultimately ride a traditional bicycle for the first time with confidence. This customized kids bicycle has the steering and balancing challenges of a traditional bicycle but it has no pedals, chain or training wheels. It is uniquely designed with a foot rest area for balancing, thereby making the transition onto a peddled bicycle quicker and seamless!</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">Featuring:</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Design that teaches children to balance and increase coordination</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Step-through design features super-low stand over height and foot rest area</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Seat QR and pnuematic rubber 12" tyres</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Steel frame and spokes</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Adjustable chrome handlebars</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Soft padded grips</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Raised molded seat</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Quick-release seat adjustment</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Friction-free metal headset with bearings</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Air-inflated tyres</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? East step in; patented footrest design</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Quality bike-dependent components</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Recommended for children aged 3-6 years old.</span></div> <div class="desc"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br></span></div> <div class="desc"><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></div>
KAZVE2OR <div class="desc"><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">Skip the training wheels and teach kids to balance first using the award-winning KaZAM balance bike! KaZAM is the only run bike on the market uniquely designed with a foot rest. Children lift their feet up naturally and position them on to the foot rest maintaining proper balance and center of gravity similar to riding a traditional bicycle. It is the most realistic approach to learning coordination and balance; and ultimately teaching kids how to ride a pedaled bike.</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;"><br></span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">KaZAM provides an alternative way to learn to ride a peddled bicycle based on the concept of balance first, pedal last. It is a training bicycle that assists children ages 3-6 to balance, increase coordination and ultimately ride a traditional bicycle for the first time with confidence. This customized kids bicycle has the steering and balancing challenges of a traditional bicycle but it has no pedals, chain or training wheels. It is uniquely designed with a foot rest area for balancing, thereby making the transition onto a peddled bicycle quicker and seamless!</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;"><br></span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">Featuring:</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Design that teaches children to balance and increase coordination</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Step-through design features super-low stand over height and foot rest area</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Seat QR and pnuematic rubber 12" tyres</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Steel frame and spokes</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Adjustable chrome handlebars</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Soft padded grips</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Raised molded seat</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Quick-release seat adjustment</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Friction-free metal headset with bearings</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Air-inflated tyres</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? East step in; patented footrest design</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Quality bike-dependent components</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;">??? Recommended for children aged 3-6 years old.&nbsp;</span></font></div><div><font face="Arial, Helvetica, sans-serif"><span style="font-size: 14px; line-height: 13px;"><br></span></font></div><div><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></div></div>
KAZVE2R <div class="desc"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">Skip the training wheels and teach kids to balance first using the award-winning KaZAM balance bike! KaZAM is the only run bike on the market uniquely designed with a foot rest. Children lift their feet up naturally and position them on to the foot rest maintaining proper balance and center of gravity similar to riding a traditional bicycle. It is the most realistic approach to learning coordination and balance; and ultimately teaching kids how to ride a pedaled bike.</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">KaZAM provides an alternative way to learn to ride a peddled bicycle based on the concept of balance first, pedal last. It is a training bicycle that assists children ages 3-6 to balance, increase coordination and ultimately ride a traditional bicycle for the first time with confidence. This customized kids bicycle has the steering and balancing challenges of a traditional bicycle but it has no pedals, chain or training wheels. It is uniquely designed with a foot rest area for balancing, thereby making the transition onto a peddled bicycle quicker and seamless!</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">Featuring:</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Design that teaches children to balance and increase coordination</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Step-through design features super-low stand over height and foot rest area</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Seat QR and pnuematic rubber 12" tyres</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Steel frame and spokes</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Adjustable chrome handlebars</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Soft padded grips</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Raised molded seat</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Quick-release seat adjustment</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Friction-free metal headset with bearings</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Air-inflated tyres</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? East step in; patented footrest design</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Quality bike-dependent components</span><br style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);">??? Recommended for children aged 3-6 years old.</span></div> <div class="desc"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 13px; background-color: rgb(255, 255, 255);"><br></span></div> <div class="desc"><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></div>
KF2 <div class="desc"><div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">Kinderfeets are patented, award winning balance bikes with chalkboard finish allowing kids to decorate the bikes in their own unique style.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Made from sustainable birch wood from a replenish-able source</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- EVA airless biodegradable tires</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Adjustable, cushioned washable seat</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Foot pegs to help children position their feet properly for cruising and to prepare for pedals.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Ergonomically designed seat and handlebar position to encourage good posture and maximise comfort</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Available in 5 different chalkboard colour finishes - chalk included.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Minimal packing materials made from recycled paper and water based inks</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Recommended age 2 Years Plus</span></font></div></div></div>
KF4 <div class="desc"><div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">Kinderfeets are patented, award winning balance bikes with chalkboard finish allowing kids to decorate the bikes in their own unique style.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Made from sustainable birch wood from a replenish-able source</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- EVA airless biodegradable tires</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Adjustable, cushioned washable seat</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Foot pegs to help children position their feet properly for cruising and to prepare for pedals.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Ergonomically designed seat and handlebar position to encourage good posture and maximise comfort</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Available in 5 different chalkboard colour finishes - chalk included.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Minimal packing materials made from recycled paper and water based inks</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Recommended age 2 Years Plus</span></font></div></div></div>
KF6 <div class="desc"><div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">Kinderfeets are patented, award winning balance bikes with chalkboard finish allowing kids to decorate the bikes in their own unique style.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Made from sustainable birch wood from a replenish-able source</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- EVA airless biodegradable tires</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Adjustable, cushioned washable seat</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Foot pegs to help children position their feet properly for cruising and to prepare for pedals.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Ergonomically designed seat and handlebar position to encourage good posture and maximise comfort</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Available in 5 different chalkboard colour finishes - chalk included.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Minimal packing materials made from recycled paper and water based inks</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Recommended age 2 Years Plus</span></font></div></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p> <p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p> <p style="margin-bottom: 0cm"><br> </p> <p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></div></div>
KF7 <div class="desc"><div><span style="color: rgb(102, 102, 102); font-family: Verdana, Helvetica, sans-serif; font-size: 12px; line-height: 16.783332824707px;">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</span></div><div style="font-family: Arial, Helvetica, sans-serif;"><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">Kinderfeets are patented, award winning balance bikes with chalkboard finish allowing kids to decorate the bikes in their own unique style.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Made from sustainable birch wood from a replenish-able source</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- EVA airless biodegradable tires</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Adjustable, cushioned washable seat</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Foot pegs to help children position their feet properly for cruising and to prepare for pedals.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Ergonomically designed seat and handlebar position to encourage good posture and maximise comfort</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Available in 5 different chalkboard colour finishes - chalk included.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Minimal packing materials made from recycled paper and water based inks</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Recommended age 2 Years Plus</span></font></div></div></div>
TT10 <div class="desc"><div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">One year olds can start with the Tiny Tot as a trike. With three wheels they can easily start to learn how to use their feet to get moving. When the parent feels the kid is ready, the Tiny Tot easily converts from a trike to a 2-wheel balance bike. Kinderfeets Tiny Tots Trikes is the smallest 2-in-1 balance bike on the market. </span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Patented Dutch inspired, low, step-through frame which places children\'s feet closer to the ground so they feel safe.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Extra wide base and 7-inch tires for great driving comfort and easy balance</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Adjustable, cushioned seat. Height 9" to 11,5"</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Nontoxic safety hand grips featuring hand protection bumpers</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Easy converts from a tricycle to a 2-wheel balance bike!</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Non toxic, waterbased paint.</span></font></div><div><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- For children from 12 to 24 months</span></font></div></div></div>
TT12 <div class="desc"><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">One year olds can start with the Tiny Tot as a trike. With three wheels they can easily start to learn how to use their feet to get moving. When the parent feels the kid is ready, the Tiny Tot easily converts from a trike to a 2-wheel balance bike. Kinderfeets Tiny Tots Trikes is the smallest 2-in-1 balance bike on the market. </span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Patented Dutch inspired, low, step-through frame which places children\'s feet closer to the ground so they feel safe.</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Extra wide base and 7-inch tires for great driving comfort and easy balance</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Adjustable, cushioned seat. Height 9" to 11,5"</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Nontoxic safety hand grips featuring hand protection bumpers</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Easy converts from a tricycle to a 2-wheel balance bike!</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Non toxic, waterbased paint.</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- For children from 12 to 24 months</span></font></div></div>
TT13 <div class="desc"><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">"Artiwood proudly creates natural wooden toys for clever little girls and curious little boys"</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">One year olds can start with the Tiny Tot as a trike. With three wheels they can easily start to learn how to use their feet to get moving. When the parent feels the kid is ready, the Tiny Tot easily converts from a trike to a 2-wheel balance bike. Kinderfeets Tiny Tots Trikes is the smallest 2-in-1 balance bike on the market. </span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;"><br></span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Patented Dutch inspired, low, step-through frame which places children\'s feet closer to the ground so they feel safe.</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Extra wide base and 7-inch tires for great driving comfort and easy balance</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Adjustable, cushioned seat. Height 9" to 11,5"</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Nontoxic safety hand grips featuring hand protection bumpers</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Easy converts from a tricycle to a 2-wheel balance bike!</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- Non toxic, waterbased paint.</span></font></div><div style="font-family: Arial, Helvetica, sans-serif;"><font color="#666666" face="Verdana, Helvetica, sans-serif"><span style="font-size: 12px; line-height: 16.783332824707px;">- For children from 12 to 24 months</span></font></div></div>
XG45 <div class="desc"><h1 class="vi-is1-titleH1" style="font-size: 18px; color: rgb(51, 51, 51); margin: 0px; padding: 0px; font-family: Trebuchet, \'Trebuchet MS\';"><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Balance bikes are the new \'norm\' in childrens transition from trike to a real pedal bike.They are easy to ride, lightweight and teach balance and speed control to budding bikers.</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Super strong and lightweight all steel, \'box section\' frame and fork construction</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Embossed mini motorcycle style tank and embossed springs give Glide a motorbike design look</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Neoprene safety pad </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- 12" EVA puncture proof tyres on Mag wheels</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Sealed bearings in wheels </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Multi adjustable mini seat</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Comfortable easy to hold safety hand grips </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Hard wearing, fade and chip resistant coatings</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Assembled Dimensions (mm): Length(800) Width(285) Height(490) Seat(340) </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Product weight 2.7kg</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Max Rider weight: 25kg</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Suitable from 3 Years+</span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p><p style="margin-bottom: 0cm"><br> </p><p style="margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);"> </span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></h1></div>
XG46 <div class="desc"><h1 class="vi-is1-titleH1" style="font-size: 18px; color: rgb(51, 51, 51); margin: 0px; padding: 0px; font-family: Trebuchet, \'Trebuchet MS\';"><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Balance bikes are the new \'norm\' in childrens transition from trike to a real pedal bike.They are easy to ride, lightweight and teach balance and speed control to budding bikers.</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Super strong and lightweight all steel, \'box section\' frame and fork construction</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Embossed mini motorcycle style tank and embossed springs give Glide a motorbike design look</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Neoprene safety pad </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- 12" EVA puncture proof tyres on Mag wheels</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Sealed bearings in wheels </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Multi adjustable mini seat</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Comfortable easy to hold safety hand grips </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Hard wearing, fade and chip resistant coatings</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Assembled Dimensions (mm): Length(800) Width(285) Height(490) Seat(340) </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Product weight 2.7kg</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Max Rider weight: 25kg</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Suitable from 3 Years+</span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p><p style="margin-bottom: 0cm"><br> </p><p style="margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);"> </span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></h1></div>
XG49 <div class="desc"><h1 class="vi-is1-titleH1" style="font-size: 18px; color: rgb(51, 51, 51); margin: 0px; padding: 0px; font-family: Trebuchet, \'Trebuchet MS\';"><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Balance bikes are the new \'norm\' in childrens transition from trike to a real pedal bike.They are easy to ride, lightweight and teach balance and speed control to budding bikers.</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Super strong and lightweight all steel, \'box section\' frame and fork construction</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Embossed mini motorcycle style tank and embossed springs give Glide a motorbike design look</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Neoprene safety pad </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- 12" EVA puncture proof tyres on Mag wheels</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Sealed bearings in wheels </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Multi adjustable mini seat</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Comfortable easy to hold safety hand grips </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Hard wearing, fade and chip resistant coatings</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Assembled Dimensions (mm): Length(800) Width(285) Height(490) Seat(340) </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Product weight 2.7kg</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Max Rider weight: 25kg</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Suitable from 3 Years+</span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p><p style="margin-bottom: 0cm"><br> </p><p style="margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);"> </span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></h1></div>
XG50 <div class="desc"><h1 class="vi-is1-titleH1" style="font-size: 18px; color: rgb(51, 51, 51); margin: 0px; padding: 0px; font-family: Trebuchet, \'Trebuchet MS\';"><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Balance bikes are the new \'norm\' in childrens transition from trike to a real pedal bike.They are easy to ride, lightweight and teach balance and speed control to budding bikers.</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Super strong and lightweight all steel, \'box section\' frame and fork construction</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Embossed mini motorcycle style tank and embossed springs give Glide a motorbike design look</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Neoprene safety pad </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- 12" EVA puncture proof tyres on Mag wheels</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Sealed bearings in wheels </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Multi adjustable mini seat</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Comfortable easy to hold safety hand grips </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Hard wearing, fade and chip resistant coatings</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Assembled Dimensions (mm): Length(800) Width(285) Height(490) Seat(340) </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Product weight 2.7kg</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Max Rider weight: 25kg</span></p><p style="margin: 0px 0px 1em; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Suitable from 3 Years+</span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p><p style="margin-bottom: 0cm"><br> </p><p style="margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px; color: rgb(175, 175, 175); font-family: Arial; font-size: 12px; font-weight: normal; line-height: 18px; background-color: rgb(251, 251, 251);"> </p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></h1></div>
XG70 <div class="desc"><h1 class="vi-is1-titleH1" style="font-size: 18px; color: rgb(51, 51, 51); margin: 0px; padding: 0px; font-family: Trebuchet, \'Trebuchet MS\';"><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Eurotrike\'s all new TCV is the Totally Cool Vehicle for 2013. This balance bike ride on has super wide and stable wheels with an ergonomic sleek body and ultra cool styling. Unique spokeless wheels make this bike the real deal for cool kids learning to balance and steer on their first wheels.</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Fully moulded ergonomic integrated body</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Spokeless wheels</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Super stable, wide, rubberised tyres</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Cool black body with blue colour highlight flashes</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Assembled Dimensions (mm): Length(628) Handle bar Height(409) Seat(300) </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Product weight 2.6kg</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Max Rider weight:20kg</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Suitable from 18 Months+</span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p><p style="margin-bottom: 0cm"><br> </p><p style="margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);"> </span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></h1></div>
XG71 <div class="desc"><h1 class="vi-is1-titleH1" style="font-size: 18px; color: rgb(51, 51, 51); margin: 0px; padding: 0px; font-family: Trebuchet, \'Trebuchet MS\';"><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Eurotrike\'s all new TCV is the Totally Cool Vehicle for 2013. This balance bike ride on has super wide and stable wheels with an ergonomic sleek body and ultra cool styling. Unique spokeless wheels make this bike the real deal for cool kids learning to balance and steer on their first wheels.</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Fully moulded ergonomic integrated body</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Spokeless wheels</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Super stable, wide, rubberised tyres</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Cool black body with blue colour highlight flashes</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Assembled Dimensions (mm): Length(628) Handle bar Height(409) Seat(300) </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Product weight 2.6kg</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Max Rider weight:20kg</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Suitable from 18 Months+</span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p><p style="margin-bottom: 0cm"><br> </p><p style="margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);"> </span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></h1></div>
XG72 <div class="desc"><h1 class="vi-is1-titleH1" style="font-size: 18px; color: rgb(51, 51, 51); margin: 0px; padding: 0px; font-family: Trebuchet, \'Trebuchet MS\';"><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Eurotrike\'s all new TCV is the Totally Cool Vehicle for 2013. This balance bike ride on has super wide and stable wheels with an ergonomic sleek body and ultra cool styling. Unique spokeless wheels make this bike the real deal for cool kids learning to balance and steer on their first wheels.</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Fully moulded ergonomic integrated body</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Spokeless wheels</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Super stable, wide, rubberised tyres</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Cool black body with blue colour highlight flashes</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Assembled Dimensions (mm): Length(628) Handle bar Height(409) Seat(300) </span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Product weight 2.6kg</span><br style="margin: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">- Max Rider weight:20kg</span></p><p style="margin: 0px 0px 1em; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);">Suitable from 18 Months+</span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE NOTE : THESE POSTCODES WILL INCUR FUR THEIR POSTAGE COSTS</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">NT ALL 0800-0999</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">QLD 4225, 4454-4499, 4694-4802, 4803-4999, 9920-9998</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">SA 2880-2889, 5201-5749</font></p><p style="margin-bottom: 0cm"><font color="#ff3333">WA 6215-6799</font></p><p style="margin-bottom: 0cm"><br> </p><p style="margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding: 0px;"><span style="margin: 0px; padding: 0px; font-size: small; font-family: verdana, geneva; color: rgb(0, 0, 0);"> </span></p><p style="margin-bottom: 0cm"><font color="#ff3333">PLEASE CONTACT US FOR A QUOTE</font></p></h1></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment